Skip to content
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

Gather metrics from all connected subscribers #50

Merged
merged 16 commits into from
Mar 4, 2024

Conversation

joedixon
Copy link
Collaborator

@joedixon joedixon commented Feb 29, 2024

This PR aims to solve an issue with gathering metrics when running Reverb on multiple servers.

In a scenario when a request is made to /connections and with Reverb running in a load balanced configuration, at the moment, only the connections for the server selected to handle that request will be counted.

To resolve this, we can use the existing Redis pub/sub implementation to ask the other servers to report their status.

When a request to any of the metrics endpoints is made, we delegate to the MetricsHandler class. When running in a multi-server setup, the handler will publish an event with type metrics which signals all subscribers to gather their results for the given metric and publish their response using the metrics-retrieved event. When the initial request is made, the total number of subscribers is stored and used to track responses. When all responses are received, the metrics are merged and returned in the HTTP response.

One big difference here is the need for promises. Due to having to wait for responses from all subscribers (or a timeout in case of any issue), there is a requirement to only return the response when the promise resolves.

@joedixon joedixon force-pushed the feat/gather-metrics branch from 62cbf54 to 39fc703 Compare February 29, 2024 14:09
@joedixon joedixon marked this pull request as ready for review March 4, 2024 13:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants