Whether to support rolling back data to a specified time point #2442
-
Whether to support rolling back data to a specified time point |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
@Aneuuu Thank you for starting a discussion. Could you please elaborate on the topic? As far as I know, Redis supports making snapshots and restoring the state from the snapshots. Do you mean something else? |
Beta Was this translation helpful? Give feedback.
-
You can use BGSAVE to backup all your data. Also you can set the BGSAVE scheduler |
Beta Was this translation helpful? Give feedback.
-
Seems this require something like PITR Anyway this requires capture the "binlog" and keeping the logs between version 🤔 If you want you can trying to duplicate the logs for cluster and add this feature Beside, the bgsave is also important here since keeping the cluster log is very expansive, so some syntax need to be well-design for this scenerio. |
Beta Was this translation helpful? Give feedback.
No database allows you to (globally) backtrack to any time point without any cost.
It will come with huge storage expenses.