Hello. I’m have 3 KeyDB servers with master-master replication. Sometimes when I try to write some data to one of them, I get an error “Redis is loading the dataset in memory” from my python client. Can you, pleese, tell me what is wrong?
Code of my python client:
import redis
import random
r = redis.Redis(host='127.0.0.1', port=6379, db=0, password='mypassword')
def write_data():
data = str(random.getrandbits(128))
r.set(data, data)
if __name__ == "__main__":
while(True):
write_data()