You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had searched in the issues and found no similar issues.
What happened
Data collection is not occurring on schedule for some projects when I have multiple projects with the same schedule.
What do you expect to happen
Data collection is triggered for all projects with the same schedule.
How to reproduce
The problem is occurring with 61 projects with the same schedule, I don't know the exact number of projects for the bug to occur, for a small amount it doesn't occur.
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 [1].
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.
Yes, you can change the value of maxConcurrency by setting the MAX_CONCURRENCY environment variable. This allows you to adjust the concurrency limit to better suit your needs. Make sure to restart the application after making this change for it to take effect.
Search before asking
What happened
Data collection is not occurring on schedule for some projects when I have multiple projects with the same schedule.
What do you expect to happen
Data collection is triggered for all projects with the same schedule.
How to reproduce
The problem is occurring with 61 projects with the same schedule, I don't know the exact number of projects for the bug to occur, for a small amount it doesn't occur.
Anything else
The bug occurs in all schedules
Version
v1.0.0
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: