-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Change recommended send_queue_limit to 500 #4867
Conversation
Recent load on mainnet has averaged 250 txn/ledger. Clients subscribed to `transactions` over web socket are being disconnected because the traffic exceeds the default `send_queue_limit` of 100. This changeset only touches the default configuration, not the default in code. Fixes XRPLF#4866
Since you're changing the config file, I suggest changing the title and commit message from "default" to "recommended". |
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.
lgtm!
ok for 2.0.1: only touches the example configuration - no code change. |
Sorry I missed this comment 😵💫. In the future, you can always do a code review and "Request changes" in order to request changes. |
Clients subscribed to `transactions` over WebSocket are being disconnected because the traffic exceeds the default `send_queue_limit` of 100. This commit changes the default configuration, not the default in code. Fix XRPLF#4866
Clients subscribed to `transactions` over WebSocket are being disconnected because the traffic exceeds the default `send_queue_limit` of 100. This commit changes the default configuration, not the default in code. Fix XRPLF#4866
Clients subscribed to `transactions` over WebSocket are being disconnected because the traffic exceeds the default `send_queue_limit` of 100. This commit changes the default configuration, not the default in code. Fix XRPLF#4866
My bad. I thought I had. |
👍 QA confirmed increasing the queue via config prevents |
Clients subscribed to `transactions` over WebSocket are being disconnected because the traffic exceeds the default `send_queue_limit` of 100. This commit changes the default configuration, not the default in code. Fix XRPLF#4866
Recent load on mainnet has averaged 250 txn/ledger. Clients subscribed to
transactions
over web socket are being disconnected because the traffic exceeds the defaultsend_queue_limit
of 100.This changeset only touches the default configuration, not the default in code.
Fixes #4866