-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Batching #73
Batching #73
Conversation
Hey @gbrindisi ! Thanks for opening up this pull request. Can you help me understand the use case for limiting the number of eligible repos to a max count? Is this for making sure the workflow doesn't take too long? |
@zkoppert hi! when rolling out changes to a large sample of targets (such as rolling out dependabot), we might not always have the confidence to fully assess the impact from the start. In cases like this it's preferred to gradually roll out in batches so that we get the opportunity to address any unexpected outcome and correct course with limited costs. It is also a way to let developers digest the change without being too overwhelmed by it. This is what I am experimenting in an enterprise account at $DAYJOB with evergreen: I rolled out in smaller orgs and incorporated the learning (and made some pull requests, for example #69), and as I am approaching bigger organizations I need a more ergonomic way to control the rollout batches. The idea of this patch is to have evergreen rollout pull requests / issues at every schedule run to a fixed amount of repositories, and have it organically increase towards full coverage after every following run. |
Sounds great! Thanks for clarifying. Let me know if you'd like support on resolving the ci failures. |
@zkoppert hey Zack yes please I could use some help. |
I'm getting failing results locally for make test. 3 test failures.
I will take a look at the linter fixes first and come back to these. |
Signed-off-by: Zack Koppert <zkoppert@github.com>
Signed-off-by: Zack Koppert <zkoppert@github.com>
Signed-off-by: Zack Koppert <zkoppert@github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super minor changes to pass the checks! 😅 I'll cut a release shortly after merging.
Thank @gbrindisi for this awesome addition of batching!
thanks @zkoppert ! |
Pull Request
This pull request implement a configuration to enable batching the maximum amount of eligible repositories in scope for every Evergreen run.
Proposed Changes
Add a config variable that is compared to the
eligible_repositories
counter and breaks the repositories loop when the batch value is met.Readiness Checklist
Author/Contributor
make lint
and fix any issues that you have introducedmake test
and ensure you have test coverage for the lines you are introducingReviewer
bug
,documentation
,enhancement
,infrastructure
, orbreaking