How can we configure the REDIS in such way that the master create.manage the RDB file and the replicas can create/manage the AOF file. This could shift the burden from the master to replicas to create/manage both the files/database.
Asked
Active
Viewed 246 times
1 Answers
0
Just set rdb in the master conf file (save) and set aof in the replica conf file (appendonly).
Then it works the way you want.

AutumnKim
- 68
- 3
-
What is the solution if they are not static, but dynamic. The master and slave are decided dynamically. There is just one config file. Is there an option in conf file which could be used for slave/master configurations. – raj Mar 09 '21 at 14:50