Replies: 1 comment
-
I observe the same behavior in my application. It seems like the PubSub HealthCheck was trying to connect to the Redis Sentinel instead to Redis. I recreated this issue in here |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have relatively simple app which is using bloom filters. I'm creating my failover client like this, using a Redis sentinel environment:
I'm making only two types of redis calls in the whole app:
BF.INSERT ...
andBF.MEXISTS ...
The app is spitting out the following messages to
stdout
at least once a second:This issue seems related and I can make the log messages go away by setting
ReadTimeout
on the client to-1
, but that has an unwanted side effect (in that I actually want a read timeout for my bloom filter commands).As far as I'm concerned my app is not using Redis PubSub functionality, so this behaviour must be originating from either the internals of Redis Bloom or have something to do with the fact that I'm using sentinels (I don't see it when I use a standalone single instance of Redis locally). Any idea what I can do to make these messages go away?
Beta Was this translation helpful? Give feedback.
All reactions