redis-operator icon indicating copy to clipboard operation
redis-operator copied to clipboard

Redis Downtime when master is down

Open triggedpid opened this issue 10 months ago • 1 comments

.

triggedpid avatar Apr 11 '24 11:04 triggedpid

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

wkd-woo avatar Apr 12 '24 02:04 wkd-woo