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
2 answers

Is redis server version 6.2.6 still single threaded?

I remember the earlier version of the Redis server was single-threaded. Is the latest stable version of Redis, 6.2.6 still single-threaded? When 2 clients call INCR command for the same key at the same timestamp, does Redis use a single thread to…
RRM
  • 2,495
  • 29
  • 46
-1
votes
1 answer

Redis Server is down twice a day why?

I install Redis Server in Ec2 instance and type is STANDALONE. Storage of my redis is more than 6Million Keys.After crossing this storage server is down frequently twice a day why how to overcome this Issue ? Thank you in advance for your help!
-1
votes
1 answer

Single node redis cluster using docker on kubernates

Is it possible to start single node/container redis cluster? I am using bitnami/redis-cluster image, When I start master using the following commmand docker run --name redis-cluster -e ALLOW_EMPTY_PASSWORD=yes -e REDIS_NODES=1 -e…
best wishes
  • 5,789
  • 1
  • 34
  • 59
-1
votes
1 answer

Redis Sentinel Error condition on socket for SYNC: Connection refused on Ec2 instance

I am trying to connect the master node to slave nodes. I have created three instances one is master node and another two instance is slave nodes when i am trying automatic failover in redis sentinel both of the slave node got this…
-1
votes
1 answer

How to use redis in windows?

I want to use redis in my nodejs application.I have installed npm package for redis. But while starting application i am getting error as Redis connection to 127.0.0.1:6379 failed - connect ECONNREFUSED 127.0.0.1:6379
Shree
  • 145
  • 4
  • 15
-1
votes
1 answer

Authorization is Redis: ACL

Since Redis supports ACL from v6.How can we achieve authorization at the key pattern? We want to implement a system in which multiple services have their own key pattern and we don't want any service can read other service's data. For…
-1
votes
1 answer

What is "AUTH" in Redis and how to use it?

What is "AUTH" in Redis and how to use and when to use it. It will be helpful if you provide a few examples.
Raghavendra
  • 519
  • 1
  • 11
  • 25
-1
votes
1 answer

Command to Redis Cluster healthcheck

Is there any windows PowerShell command to check Redis cluster healthcheck running on windows?
-1
votes
1 answer

Single Object having 2GB size(may be it more in future) to store in Redis Cache

we are planning to implement distributed Cache(Redis Cache) for our application. We have a data and stored it in map with having size around 2GB and it is a single object. Currently it is storing in Context scope similarly we have plenty of objects…
Manohar
  • 19
  • 6
-1
votes
1 answer

Max number of masters a redis cluster can support

I went through the redis cluster documentation and there it is written that there are 16384 slots in a redis cluster (cluster mode enabled). Does this mean that there can be a maximum of only 16384 master nodes in a cluster? If yes, then how do we…
Jibin Mathews
  • 606
  • 4
  • 13
-1
votes
1 answer

If the slave does not yet have a master key, Is the Redis cluster redirected to the master? in CLIENT CLUSTER && READONLY mode

I just wondering this context. In Redis Cluster, redis-cli(start cluster mode, like redis-cli -c ) request key to slave that redis-cli connection with redis in READONLY mode. If the slave have not key of master key (this means not yet sync), Then…
b_dobee
  • 19
  • 1
  • 9
-1
votes
1 answer

Can Cassandra DB or Mongo DB be used for configuring multiple DBs?

The older version of REdis supported multiple DBs, but since the latest version does not support multiple DBs, I would like to know if Cassandra or Mongo can be used ? I would require multiple DBs cause I use the same Redis Instance to support…
ys1990
  • 1
-1
votes
1 answer

Waiting for the cluster to join.... never ends redis-trib.rb Redis 3.2.9

Trying to create Redis Cluster between 3 nodes on 3 three different servers connected over LAN. Tried both - src/redis-trib.rb create 192.168.148.20:6379 192.168.131.213:6379 192.168.142.199:6379 - src/redis-trib.rb create 192.168.148.20:7000…
DKDevOps
  • 7
  • 3
-1
votes
1 answer

How to connect correct redis node when get some data use redis command in redis cluster?

As we known, redis cluster have 16384 hash slots.when redis client connect to redis cluster, how redis client to connect real save data redis node?
Ryanqy
  • 8,476
  • 4
  • 17
  • 27
-1
votes
3 answers

Redis cluster on load balancer

I have setup a redis cluster with 1 master node and 2 slave nodes with sentinel running on all 3 nodes. Prior to this setup, my application was pointing to a single node where redis instance was running. After the clustering had been set up, where…
Ashok
  • 13
  • 8
1 2 3
46
47