-
Notifications
You must be signed in to change notification settings - Fork 5
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
Implement slow consumer detection in Nats.js #125
Comments
@alphara this is a good idea. The javascript clients are more prone to this type of problem as they have a single thread to process inbound/outbound and user code. |
@alphara trying to study how to reflect this - effectively if you are using callbacks, the messages are in the execution path of the socket read - the data read from the socket is parsed, and as parsed, it invokes subscriptions - there's no buffering here, on the particular data read from the network gets processed. If you are using iterators, that is a different story, because function that feeds messages into an iterator, buffer, so at that point it is possible to determine if there are messages pending. The subscription's |
…hat when specified will check the depth of the iterator and report when the subscription is running slow. fix #125 Signed-off-by: Alberto Ricart <alberto@synadia.com>
…t when specified will check the depth of the iterator and report when the subscription is running slow. fix #125 Signed-off-by: Alberto Ricart <alberto@synadia.com>
We often experience slow consumers in our real-time system based on NATS. It is useful if the service would be able to detect itself as a slow consumer.
According to nats_admin/slow_consumers, there is a way to detect slow consumers with the NATS client on Go. The same feature is not implemented for the NATS client on Node.js.
Could you implement slow consumer detection in the Nats.js?
The text was updated successfully, but these errors were encountered: