Redis
type: redis — produces an RDB snapshot. Two modes:
- Live dump (default) — runs
redis-cli --rdb <out>against a running server. Redis triggers a background save and streams the resulting RDB to snapr. - File copy — when
pathis set, snapr simply copies the existing RDB file from disk. No server connection is made.
Prerequisites
- For mode 1:
redis-climust be installed on the snapr host and available inPATH(Debian/Ubuntu:redis-tools). - For mode 2: snapr just needs read access to the RDB file — no client tools required.
- The configured user (when ACLs are enabled) needs at least the
~* +@read +bgsave +replconf +psync +pingpermissions, or simply the predefined~* +@allrole for a dedicated backup user.
Fields
Example — live dump
Example — file copy
Notes
- Live dump triggers a save on the server side. On large datasets the snapshot fork can briefly impact memory and latency.
- The output filename is always
dump.rdbinside the job's working directory.