-
Notifications
You must be signed in to change notification settings - Fork 340
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
Blocking pool doesn't have backpressure on OSX #126
Comments
This seems like it'll be resolved by #181. |
No, it is not solved by that PR yet:
|
@vertexclique do you have a repro perhaps? |
Yes, It was fixed in the EMA branch. I wrote tests for these cases too. Reopened the branch again so you can take a look to test called |
Longhauling blocking requests are panicking the blocking thread pool because max threads is not 10_000 for OSX. It is 4096. Current method panics.
Solution: having a variable max threads based on errors coming up from thread pool during spawning dynamic threads.
The text was updated successfully, but these errors were encountered: