Implement server side connection limit #1550
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change implements a configurable limit on the number of simultaneous HTTP connections allowed by a query server. This should allow us to efficiently filter out requests during periods of high load so that the burden is pushed back onto clients, and the server continues operating within normal limits. This in turn will allow us to turn off or scale back the AWS rate limiter.
This PR:
RateLimitListener
from the new version of tide disco to limit server load to a configurable number of requestsThis PR does not:
Key places to review:
sequencer/src/api/options.rs
Things tested
Set up local demo to use a fairly aggressive limit of 25 simultaneous requests. Ran
just demo-native
and the logs of the load generators, nasty-client, and sequencers were all happy.