meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
git:gitlab:ci:issues [2023/11/28 10:18] niziakgit:gitlab:ci:issues [2026/04/10 19:38] (current) niziak
Line 1: Line 1:
 ====== CI Issues ====== ====== CI Issues ======
 +
 +===== 413 Request Entity Too Large =====
 +
 +<code>
 +ERROR: Uploading artifacts as "archive" to coordinator... 413 Request Entity Too Large  correlation_id=234f5fd4a4f64a159d472ed978acdd68 id=1309185 responseStatus=413 Request Entity Too Large status=413 token=eyJraWQiO
 +FATAL: too large 
 +</code>
 +
 +In Gitlab there are 2 instance settings:
 +  * ''Maximum artifacts size (MB)''
 +  * ''Maximum artifacts archive size (bytes)'': [[https://gitlab.com/gitlab-org/gitlab/-/work_items/594232]]: This setting controls the maximum size of artifact files when they're extracted and read for inclusion in CI/CD configurations (specifically for dynamic child pipelines). It does NOT control the size of the artifact archive itself during upload.
 +
 +
 +
 +
 +===== Connection closed by remote host =====
 +
 +On 22 CPU machine, when Buildroot is in parallel download mode (''BR2_PER_PACKAGE_DIRECTORIES=y''):
 +
 +<code>
 +kex_exchange_identification: Connection closed by remote host
 +Connection closed by 192.168.64.240 port 22
 +</code>
 +
 +In Gitlab server logs:
 +<code>
 +gitlab sshd[1800758]: error: beginning MaxStartups throttling
 +gitlab sshd[1800758]: drop connection #10 from [192.168.65.128]:37112 on [192.168.64.240]:22 past MaxStartups
 +</code>
 +
 +Solution: [[https://docs.gitlab.com/topics/git/troubleshooting_git/#ssh_exchange_identification-error|ssh_exchange_identification]]
 +
  
 ===== remote: You are not allowed to download code from this project. ===== ===== remote: You are not allowed to download code from this project. =====