Cross Data Center Redis Cluster

We are trying to configure a redis cluster in an environment with multiple data warehouses, with one cluster installation in one data center and another cluster in another data center, in this case there is a way to configure cross-centralized cluster replication using redis cluster? Has anyone configured a redis cluster this way or are there any better ways to do this?

+4
source share
1 answer

As far as I saw, only Dynomite seems to solve this problem.

Otherwise, we need to implement our own customization similar to this:

DataCenter1:

[multiple redis clients]===>[localProxy-DC1]====> TWEMPROXY-DC1 ===> [Multiple Redis Single Instances with Sentinel]    

DataCenter-2:

[localProxy-DC1] ====replicates commands async===> TWEMPROXY-DC2 ====> [Multiple Redis Single Instances with Sentinel]
0
source

Source: https://habr.com/ru/post/1675739/


All Articles