-1

I have few queries regarding Redis Cluster setup: 1.Does redis support cross site replication ? When we start redis cluster,can we decide what will be the slave of each instance. 2.I need to store around 11 billion keys,with full persistance and fault tolerance,how many master -slaves should i start with? I have a high tps requirement of both read and writes.

Pls suggest.

darshan kamat
  • 374
  • 7
  • 23

1 Answers1

0

Data is important for you and you don't want to lose any data during failover/DR scenarios.

  1. You need to create a Redis cluster.
  2. Redis cluster needs at least 3 master nodes which shares 16384 slots between each other.
  3. You need to create slave nodes as much as you want to replicate data from master nodes.(Please consider right slave number by yourself.)
efdestegul
  • 617
  • 3
  • 6