Questions tagged [redis-cluster]

Redis Cluster provides a way to run a Redis installation where data is automatically sharded across multiple Redis nodes.

Redis Cluster provides a way to run a Redis installation where data is automatically sharded across multiple Redis nodes.

Redis Cluster also provides some degree of availability during partitions, that is in practical terms the ability to continue the operations when some nodes fail or are not able to communicate. However the cluster stops to operate in the event of larger failures (for example when the majority of masters are unavailable).

So in practical terms, what you get with Redis Cluster?

  • The ability to automatically split your dataset among multiple nodes.

  • The ability to continue operations when a subset of the nodes are experiencing failures or are unable to communicate with the rest of the cluster.

Refer:

http://redis.io/topics/cluster-tutorial

694 questions
-1
votes
1 answer

If I cut a network cable and split a ReDiS cluster's masters from that cluster's ReDiS slaves, what do I do if the number of masters doubles?

More specifically, let us say that I trip on a network cable and split a ReDiS cluster's masters from that cluster's ReDiS slaves. If the number of masters doubles, can I just make my client only write to the "first" masters from before the…
-1
votes
1 answer

redis cluster give client 127.0.0.1 ip

and after cluster started. each node show's it's ip:port as 127.0.0.1:3000x and the client is on another machine. certainly can't reach 127.0.0.1:3000x is there any configuration to ask the redis nodes use a subnet ip instead of 127.0.0.1? I didn't…
C19
  • 738
  • 2
  • 7
  • 16
1 2 3
46
47