-
Notifications
You must be signed in to change notification settings - Fork 53
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
cassandra.yaml: incremental_backups #394
Comments
Have you thought this through about how the incremental backups will work end to end? Will it create periodic incremental snapshots? @vargup Do you think just changing that yaml parameter is enough for enabling incremental backups? |
AFAIK, only yaml change is not sufficient for incremental backup. At Cassandra, taking snapshot or backup is just copying SSTables to a different folder location at same machine. Where as framework, is designed to upload those snapshots to S3 or Azure. For incremental backup, load of code churning is required, as it need to support restore as well. |
If you set this env to True, it will allow you to use incremental backups. |
Just a note to myself.
Will make |
Those backups will be created locally on that host, and if that satisfies you requirement, then great. |
I was wondering if it would be possible to add:
environment variable which would control
incremental_backups
fromcassandra.yaml
?The text was updated successfully, but these errors were encountered: