RedisLabs / redis-cluster-proxy

A proxy for Redis clusters.
GNU Affero General Public License v3.0
990 stars 129 forks source link

Running multiple instances of the proxy (question) #17

Closed bsergean closed 4 years ago

bsergean commented 4 years ago

My thinking is that if one proxy dies, we want redis-client to be able to talk to another instance, and so have multiple one running at the same time (trying to have 4 now).

Is it possible to do load balancing and have multiple redis-proxy running, or is it problematic (I hope it's not !) ?

artix75 commented 4 years ago

There's no plan for a load balancer at the moment. Of course, you're free to run as many instances of the proxy as you want, by starting them on different hosts or ports.

bsergean commented 4 years ago

Got it, thanks. kubernete and friends make it very easy to load many instances so that's probably what I should do.