The industry standard for this task is a Python package called redis-rdb-tools . It parses the binary RDB file and allows you to export it to JSON, diff formats, or .
Use the rdb command with the CSV formatter flag: rdb --command json /path/to/dump.rdb > data.csv convert rdb file to csv
rdb --command json -c /path/to/dump.rdb > output.csv The industry standard for this task is a
Note: For complex Redis types (hashes, lists, sets, sorted sets), the CSV will contain one row per sub‑key or element. convert rdb file to csv
catcherwong/rdb-tools: An analysis tool of the Redis ... - GitHub