-
Notifications
You must be signed in to change notification settings - Fork 28
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
Limit the number of inflight requests #84
Conversation
@jebeaudet can you help out to verify if this fixes the problem? For that you need to build this branch and check out if you still experience this issue #83 . The easiest way to build a binary for your arch is I limited the number of inflight requests to 64. If this is still too much, please try to find a concurrency that still works for you via the |
Sure thing! I'll test it out tomorrow and let you know. Thanks! |
Works like a charm, I don't get the warnings anymore and everything works as it should. I've tested it on my fairly large EKS setup with some
64 looks like a sweet spot for me though the differences are probably negligeable in the end. Thanks again, let me know if I can be of further help 🎉 |
Thank you for providing these numbers. I think 64 parallel requests is quite ok, so let's make that the default. |
Codecov Report
@@ Coverage Diff @@
## master #84 +/- ##
===========================================
+ Coverage 42.01% 52.40% +10.38%
===========================================
Files 9 8 -1
Lines 388 250 -138
===========================================
- Hits 163 131 -32
+ Misses 203 97 -106
Partials 22 22
Continue to review full report at Codecov.
|
Fix #83