Please keep in mind that this issue tracker should be used for reporting bugs or proposing improvements to the Redis server.
Generally, questions about using Redis should be directed to the community:
It is also possible that your question was already asked here, so please do a quick issues search before submitting. Lastly, if your question is about one of Redis' clients, you may to contact your client's developers for help.
That said, please feel free to replace all this with your question :)
Comment From: sundb
If you haven't used the "break change" command, you can enable AOF in 7.4 and play it back in 7.2.
Comment From: leonchen83
redis-rdb-cli-0.9.7
supports downgrade migration from Redis 7.4 / 8.0 to Redis 7.2
The steps are as follows:
$ sed -i 's/dump_rdb_version=-1/dump_rdb_version=11/g' /path/to/redis-rdb-cli/conf/redis-rdb-cli.conf
$ rmt -s redis://com.redis74:6379 -m redis://com.redis72:6379 -r
However, there is a limitation: Redis 7.4 introduced a new data structure called TTL Hash, which allows setting expiration times on individual fields. This structure does not exist in Redis7.2. During the downgrade migration, TTL Hash entries will be migrated as regular Hashes, and the per-field TTLs will be lost.