Re: Shared cache between Cluster nodes

2022-02-16 Thread Rui Abreu
Difficult to say without knowing many details, but Storm + external Redis cluster is a solid design for that. You can also think of something along the lines of Hazelcast distributed cache, but Redis should be fast enough. On Wed, 16 Feb 2022 at 13:55, Nadav Glickman wrote: > Hello, > > I would

Shared cache between Cluster nodes

2022-02-16 Thread Nadav Glickman
Hello, I would like to create some shared caching mechanism that will be shared between several Storm nodes (all running the same topology). What is the recommended way to achieve this? I'm currently using enums as an in memory cache but as my solution grows this is quickly becoming problematic.