You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by rkeely April 2, 2024
I would like to know the reason of only publishing TopologyRefreshEvent to EventRecorder as implemented here. My app subscribe to all events on event bus but does not receive any TopologyRefreshEvent so I assume the current implementation of EventRecorder does not publish to event bus but only JFR, is that correct? Could we consider dual-publishing it to event bus as well? I am happy to create a PR if this idea sounds good.
Here are my reasons why we want this:
People normally do not setup recording for JFR in production. We love out of box support without extra effort :D
For Redis cluster with large number of nodes and with large number of clients, the toll on topology refresh will be heavy for both side. As application owner, we would like to monitor the occurrence of TopologyRefreshEvent and make sure there is no un-wanted refresh. I know we can control the refresh periods but unexpected resonation from many clients could happen (e.g. when we scale out our client fleet). Currently we have to use the number connection events to infer the refresh. Being able to easily subscribe to the event could give an concrete answer.
The text was updated successfully, but these errors were encountered:
Discussed in #2809
Originally posted by rkeely April 2, 2024
I would like to know the reason of only publishing
TopologyRefreshEvent
to EventRecorder as implemented here. My app subscribe to all events on event bus but does not receive anyTopologyRefreshEvent
so I assume the current implementation of EventRecorder does not publish to event bus but only JFR, is that correct? Could we consider dual-publishing it to event bus as well? I am happy to create a PR if this idea sounds good.Here are my reasons why we want this:
The text was updated successfully, but these errors were encountered: