-
Notifications
You must be signed in to change notification settings - Fork 310
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
ReadException "too many concurrent streams" #1987
Comments
@visox I'd like to look into this, if it's still relevant. Does the problem still occur? |
@kciesielski I stumbled on this as well.
|
@kciesielski & @visox a workaround for me was just to retry: sttpClient.send(httpRequest).retry(Schedule.fibonacci(1.second).whileOutput(60.seconds.>)) I'm guessing in a burst of too many requests this may happen, so eventually it'll succeed if we retry enough. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi i am running a service which makes lots of calls to some other service, lets say 10 calls per second.
The service runs properly but eventually there are periods when it starts to crash with
Also its a POST request with some timeout a json body and some auth headers
in sttp code i do see
and also from the stack trace one can see its an IO exception with
too many concurrent streams
Any obvious solution ?
The text was updated successfully, but these errors were encountered: