-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backing up the WAL #992
Comments
👋 Thanks for opening this issue! Get help or engage by:
|
In databend, we just export all of the log and the snapshot to a file and backup it. The following is the server side export implementation: Fix the above url |
@drmingdrmer Do you do this in a continuous basis for databend or is this happens after every couple of hours? |
It is a cronjob and is executed by schedule. It is not a incremental backup :( |
Hi @drmingdrmer, would you be open to incorporating that logic into openraft? This way, users wouldn't have to replicate the same work. |
Just my 2c: I don't think there is a generic way to back up logs. We'll also back up to S3, but that's just one of the options. We must support 5 different hyperscalers, all with different APIs. From |
Hi @drmingdrmer do you guys back up the WAL or the snapshot somewhere in datafuse ? I am trying to figure out how to make it easy for us to stream the WAL to S3 so that if we lose the nodes we can bootstrap the cluster without losing the source of truth of the data in the state machine
The text was updated successfully, but these errors were encountered: