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
Attempts to send requests concurrently may fail with:
java.lang.IllegalStateException: Failed to send request: FAIL_NON_SERIALIZED
This is because we are using the Reactor Sinks API which expect serial sending with external synchronization. The current implementation however simply retries 100 times and fails if it keeps losing out.
This needs to be improved and was also reported in #369 (comment).
The text was updated successfully, but these errors were encountered:
GraphQL over WebSocket uses a single, shared connection for all requests. GraphQL over HTTP on the other hand makes an independent HTTP request for each GraphQL request and underlying that is a connection pool. So WebSocket is more efficient but is also a little more challenging to implement.
@rstoyanchev Yes I think it's fixed
I did maven update and then restarted my service and tested 40 request per second with same socket graphql client..
Attempts to send requests concurrently may fail with:
This is because we are using the Reactor
Sinks
API which expect serial sending with external synchronization. The current implementation however simply retries 100 times and fails if it keeps losing out.This needs to be improved and was also reported in #369 (comment).
The text was updated successfully, but these errors were encountered: