-
-
Notifications
You must be signed in to change notification settings - Fork 596
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
[question] Support for Rate Limiting Messages Sent to Clients #806
Comments
Hello @sky93 Centrifugo does not have sth like this available at the moment, and no plans to add it in the observable future. In general, would be nice to have built-in option to quickly configure – but need to consider how to integrate it with everything else in Centrifugo and distributed environment. I guess the most effective solution is reducing on the layer before Centrifugo – probably add in-memory rate limiters on your publisher side. Or add some rate limiting proxy between publisher and Centrifugo. I suppose Nginx can be such proxy - it has built-in leaky bucket limiting and I believe it's possible to configure it to take channel into account. Sth like this (did not test it):
And add But that's just an example. I guess you may find other ways to reduce number of messages published. What do you think? What is the use case btw where you have 2k messages in a single channel? |
Thank you very much for your detailed response. My use case involves handling market data, where we have multiple markets with frequent updates in price. Given the volume and frequency of data updates, your suggestion to implement an in-memory rate limiter on the publisher side or a rate limiting proxy like Nginx is particularly relevant. I will look into adapting it to our needs and test its efficacy in managing the data flow to Centrifugo. Thank you once again for your guidance. |
Does Centrifugo currently support or plan to support a feature for rate limiting the number of messages sent to clients from a specific channel? For instance, if my backend sends a high volume of messages (e.g., 2000 messages per second) to Centrifugo, I would like to limit the frequency with which these messages are forwarded to clients. Specifically, I'm interested in a feature where Centrifugo would only send the most recent message from the channel to the client every 2 seconds. This would help in managing client-side message overload without implementing additional logic in the backend. Is there a built-in mechanism in Centrifugo to achieve this, or are there any workarounds you would recommend?
Show us an example of what you mean!:
Consider a scenario where my backend service is publishing 2000 messages per second to a channel in Centrifugo. Instead of forwarding every single message to clients, which could overwhelm them, I want Centrifugo to throttle this down such that only the most recent message within a 2-second interval is sent to the clients subscribed to that channel.
Could you provide guidance on whether this functionality exists, or if there are any recommended configurations or practices within Centrifugo to handle such requirements?
The text was updated successfully, but these errors were encountered: