dosubot[bot] commented on issue #8175: URL: https://github.com/apache/incubator-devlake/issues/8175#issuecomment-2449767219
<!-- Greeting --> @roberioguedelho Olá! Como posso ajudar você hoje? 😊 <!-- Answer --> The issue you're experiencing with data collection not occurring on schedule for multiple projects with the same schedule might be related to a known limitation in the system. The code uses an `errgroup` with a concurrency limit set by `g.SetLimit(maxConcurrency)`, where `maxConcurrency` is defined as 10. This means that the system is designed to handle a maximum of 10 concurrent operations at a time, which could be affecting the scheduling of data collection for your 61 projects <sup>[[1]](https://github.com/apache/incubator-devlake/blob/main/backend/plugins/azuredevops_go/api/remote_helper.go)</sup>. To address this, you might consider adjusting the concurrency limit if possible, or staggering the schedules to reduce the number of projects being processed simultaneously. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
