Open
Bug 1299981
Opened 9 years ago
Updated 3 years ago
Determine and implement a backoff policy for clients
Categories
(Core :: DOM: Push Subscriptions, task, P3)
Core
DOM: Push Subscriptions
Tracking
()
NEW
People
(Reporter: lina, Unassigned)
Details
(Whiteboard: [btpp-backlog])
This has come up before, but we decided it wasn't worth the extra complexity then. We currently only do exponential backoff for reconnects; let's spend some time thinking about other ways to reduce the strain on an overloaded connection node.
Some ideas from today's meetup:
* We could wait a random amount of time before connecting at startup (between 0 and 5 minutes, for example), to avoid thundering herds when machines restart or wake up from sleep at the same time.
* For `register` and `unregister` responses, the server could send a 500-class status code with a "retry-after" field. This would indicate that the client should keep its connection open (reconnecting would make the problem worse!), and queue or reject requests until the server is less busy. H2 would give this to us for free.
Updated•8 years ago
|
Priority: -- → P3
Updated•5 years ago
|
Type: defect → task
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•