spring-data-redis icon indicating copy to clipboard operation
spring-data-redis copied to clipboard

keyspaceEvents cannot be configured [DATAREDIS-1075]

Open spring-projects-issues opened this issue 5 years ago • 2 comments

ismael COULIBALY opened DATAREDIS-1075 and commented

Hey guys, Me and my team are facing a probleme due to the usage of Spring Data Redis 2.2.2 in a Spring Boot App. We are working on a App based on a microservice architecture. Three of our microservices put data in the same instance of Redis but inside different logical databases. Some of data we put into Redis are tagged with the annotation @TimeToLive (TTL). We also enabled the keyspaceEvents on start up [@EnableRedisRepositories(enableKeyspaceEvents = RedisKeyValueAdapter.EnableKeyspaceEvents.ON_STARTUP)].

The probleme we face is that keyspaceEvents are seen (received) by all logical databases. That make our pool of connection explode.

It seems like the management of keyspaceEvents is done right here : https://github.com/spring-projects/spring-data-redis/blob/master/src/main/java/org/springframework/data/redis/listener/KeyExpirationEventMessageListener.java In the code, we can see this : "keyevent@*:expired". The wildcard means that the keyspaceEvents are seen by every logical database.

So, all of our microservices pollute each other because each of them see the keyspaceEvents of the other.

Can you make keyspaceEvents management configurable (TTL in particular) so that a logical database only receive events that happen in his scope ?

Regards


Referenced from: pull request https://github.com/spring-projects/spring-data-redis/pull/503

1 votes, 2 watchers

spring-projects-issues avatar Dec 04 '19 17:12 spring-projects-issues

We have hit upon the same limitation as described here. I see that a PR (#503) has been submitted with additional configuration knobs, but no further work after a suggested improvement from one of the maintainers. Has any further work been done on a solution?

serac avatar Sep 08 '22 18:09 serac

Hello team, this is a critical requirement i think.

ameena007 avatar Oct 26 '22 08:10 ameena007