Configure database persistence
All data is stored and managed exclusively in either RAM or RAM + flash Memory (Redis on Flash) and therefore, is at risk of being lost upon a process or server failure. As Redis Enterprise Software is not just a caching solution, but also a full-fledged database, persistence to disk is critical. Therefore, Redis Enterprise Software supports persisting data to disk on a per-database basis and in multiple ways.
Persistence can be configured either during database creation or by editing an existing database’s configuration. While the persistence model can be changed dynamically, just know that it can take time for your database to switch from one persistence model to the other. It depends on what you are switching from and to, but also on the size of your database.
Configure persistence for your database
- In databases, either:
- Click Add (+) to create a new database.
- Click on the database that you want to configure and at the bottom of the page click edit.
- Navigate to Persistence
- Select your database persistence option
- Select save or update
Data persistence options
There are six options for persistence in Redis Enterprise Software:
Options | Description |
---|---|
None | Data is not persisted to disk at all. |
Append Only File (AoF) on every write | Data is fsynced to disk with every write. |
Append Only File (AoF) one second | Data is fsynced to disk every second. |
Snapshot every 1 hour | A snapshot of the database is created every hour. |
Snapshot every 6 hours | A snapshot of the database is created every 6 hours. |
Snapshot every 12 hours | A snapshot of the database is created every 12 hours. |
Selecting a persistence strategy
When selecting your persistence strategy, you should take into account your tolerance for data loss and performance needs. There will always be tradeoffs between the two. The fsync() system call syncs data from file buffers to disk. You can configure how often Redis performs an fsync() to most effectively make tradeoffs between performance and durability for your use case. Redis supports three fsync policies: every write, every second, and disabled.
Redis also allows snapshots through RDB files for persistence. Within Redis Enterprise, you can configure both snapshots and fsync policies.
For any high availability needs, replication may also be used to further reduce any risk of data loss and is highly recommended.
For use cases where data loss has a high cost:
- Append-only file (AOF) - Fsync every write - Redis Enterprise sets the open-source Redis directive
appendfsyncalways
. With this policy, Redis will wait for the write and the fsync to complete prior to sending an acknowledgement to the client that the data has written. This introduces the performance overhead of the fsync in addition to the execution of the command. The fsync policy always favors durability over performance and should be used when there is a high cost for data loss.
For use cases where data loss is tolerable only limitedly:
- Append-only file (AOF) - Fsync every 1 sec - Redis will fsync any newly written data every second. This policy balances performance and durability and should be used when minimal data loss is acceptable in the event of a failure. This is the default Redis policy. This policy could result in between 1 and 2 seconds worth of data loss but on average this will be closer to one second.
For use cases where data loss is tolerable or recoverable for extended periods of time:
- Snapshot, every 1 hour - Sets a full backup every 1 hour.
- Snapshot, every 6 hour - Sets a full backup every 6 hours.
- Snapshot, every 12 hour - Sets a full backup every 12 hours.
- None - Does not backup or persist data at all.
Append-only file (AOF) vs snapshot (RDB)
Now that you know the available options, to assist in making a decision on which option is right for your use case, here is a table about the two:
Append-only File (AOF) | Snapshot (RDB) |
---|---|
More resource intensive | Less resource intensive |
Provides better durability (recover the latest point in time) | Less durable |
Slower time to recover (Larger files) | Faster recovery time |
More disk space required (files tend to grow large and require compaction) | Requires less resource (I/O once every several hours and no compaction required) |
Active-Active data persistence
Active-Active databases support AOF persistence only. Snapshot persistence is not supported for Active-Active databases.
If an Active-Active database is using snapshot persistence, use crdb-cli
to switch to AOF persistence:
crdb-cli crdb update --crdb-guid <CRDB_GUID> --default-db-config \
'{"data_persistence": "aof", "aof_policy":"appendfsync-every-sec"}'
Redis on Flash data persistence
If you are enabling data persistence for databases running on Redis Enterprise Flash, by default both master and replica shards are configured to write to disk. This is unlike a standard Redis Enterprise Software database where only the replica shards persist to disk. This master and replica dual data persistence with replication is done to better protect the database against node failures. Flash-based databases are expected to hold larger datasets and repair times for shards can be longer under node failures. Having dual-persistence provides better protection against failures under these longer repair times.
However, the dual data persistence with replication adds some processor and network overhead, especially in the case of cloud configurations with persistent storage that is network attached (e.g. EBS-backed volumes in AWS).
There may be times where performance is critical for your use case and
you don’t want to risk data persistence adding latency. If that is the
case, you can disable data-persistence on the master shards using the
following rladmin
command:
rladmin tune db <database_ID_or_name> master_persistence disabled