There might be two problems when trying to collect data from a private GitLab server with a self-signed certificate:
IN_SECURE_SKIP_VERIFY=true for the devlake containerA better approach would be adding your root CA to the devlake container:
rootCA.crt into the devlake containercommand node to install the mounted certificateHere is a example for the docker-compose installation, the idea is applicable for other kinds of installation.
devlake:
image: apache/devlake:v...
...
volumes:
...
- /path/to/your/rootCA.crt:/usr/local/share/ca-certificates/rootCA.crt
command: [ "sh", "-c", "update-ca-certificates; lake" ]
...
We have had a couple of reports suggesting MySQL InnoDB would fail with the message.
The cause of the problem is:
You are likely to see the error when dealing with a huge repository or board. For MySQL, you can solve it by increasing the innodb_buffer_pool_size to a higher value.
Here is a example for the docker-compose installation, the idea is applicable for other kinds of installation.
mysql:
image: mysql:8.....
...
# add the follow line to the mysql container
command: --innodb-buffer-pool-size=200M
Sorry for the inconvenience, please help us improve by creating an issue