-
Notifications
You must be signed in to change notification settings - Fork 292
CA-409710: Modify the default backup parameters #6440
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
CA-409710: Modify the default backup parameters #6440
Conversation
9c41a7e
to
97f1b79
Compare
97f1b79
to
1b24182
Compare
The backup VDI is created by this script. So another solution is to create a larger VDI or to decide dynamically how many generations to keep. |
Is it possible to make the backup disk larger? 500 MB seems to be quite small. Perhaps double the disk instead of half the back up file limit? |
The number of generations kept is only the default and there is an option to override this. So what this change does is changing the default. But like I said above, we could also change the size of the VDI. The script already emits an alert when it is running low on space.
A change here obviously would only take effect when no VDI already exists.
|
1b24182
to
d50d5ac
Compare
d50d5ac
to
070f514
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would have used "GiB" but GB works, too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, as long as reducing the number of histories does not cause some violations of requirements
The current default count of metadata backup files is 25. This number is too many. For the customer in XSI-1873, the backup disk is 500 MB, and each backup file is about 35 MB. So it can't keep 25 backup files. A quick solution is to modify the backup parameters, including: 1. Reduce the default count of metadata backup files to 12. 2. Increase the backup VDI size to 1 GiB so it can keep more backup files. Signed-off-by: Bengang Yuan <[email protected]>
070f514
to
862732d
Compare
The current default count of metadata backup files is 25. This number is too
many. For the customer in XSI-1873, the backup disk is 500 MB, and each backup
file is about 35 MB. So it can't keep 25 backup files.
A quick solution is to modify the backup parameters, including: