OT-CONTAINER-KIT / redis-operator

A golang based redis operator that will make/oversee Redis standalone/cluster/replication/sentinel mode setup on top of the Kubernetes.
https://ot-redis-operator.netlify.app/
Apache License 2.0
734 stars 207 forks source link

Redis Downtime when master is down #869

Open triggedpid opened 2 months ago

triggedpid commented 2 months ago

.

wkd-woo commented 2 months ago

check your redis configuration. I think it's appendonly yes Change the configuration to appendonly no And I recommend that you don't set up RDB save either

likes:

externalConfig:
  enabled: true
  data: |
    save ""
    stop-writes-on-bgsave-error no
    rdbcompression yes
    rdbchecksum yes
    dbfilename dump.rdb
    rdb-del-sync-files yes
    dir /data
    appendonly no