https://blueprints.launchpad.net/karbor/+spec/adding-more-protection-parameters-retention-period
Karbor supports the scheduled operation according the protection plan. As time goes on, checkpoints are getting more and more. For example, if we create a scheduled plan: protect resource every day, there are 7 checkpoints one week, and about 30 checkpoints one month, etc. If we don’t clean them manually, a lot of checkpoint takes up our valuable storage resources.
In this specification we will introduce protection parameters:retention period, max backup number. If the create time of the checkpoint is older than retention period, we need to delete it, and if the checkpoints number is more than max backup number, we need to delete the oldest one.
Users create a scheduledoperation, in addition to setting the scheduling period and plan, he can also set the retention period or (and) checkpoint maximum number.
Add protection parameters in scheduledoperation: max_backups and retention_duration. These parameters are used to control the number of checkpoints to prevent excessive storage of resources due to excessive checkpoints.
1. Delete checkpoints in the auto-scheduled mode: Get max_backups and retention_duration from the scheduledoperation.
When creating the checkpoint is complete, get all the available checkpoints in the plan and sort them according to created_at by desc, delete the older checkpoints that exceeds the max_backups; and delete the checkpoints that their created_at are older than the retention_duration.
karbor scheduledoperation-create 'OS volumes retention protection' retention_protect 95e45924-49f4-4c12-b06f-5ec3c6245435
"plan_id"="49dd4b84-a8f9-4592-b7d4-be1e37175af6","provider_id"="cf56bd3e-97a7-4078-b6d5-f36246333fd9","max_backups"=3,"retention_duration"=10
+----------------------+-----------------------------------------------------------+
| Property | Value |
+----------------------+-----------------------------------------------------------+
| description | None |
| enabled | True |
| id | 2c39406d-209b-4cba-88b4-2d9c0826eb39 |
| name | OS volumes retention protection |
| operation_definition | { |
| | "max_backups": "3", |
| | "plan_id": "49dd4b84-a8f9-4592-b7d4-be1e37175af6", |
| | "provider_id": "cf56bd3e-97a7-4078-b6d5-f36246333fd9", |
| | "retention_duration": "10" |
| | } |
| operation_type | retention_protect |
| trigger_id | 95e45924-49f4-4c12-b06f-5ec3c6245435 |
+----------------------+-----------------------------------------------------------+
Note 1: max_backups: For example, “max_backups=3” indicates maximum retention for 3 backups. For example, “max_backups=10” indicates maximum retention for 10 backups.
Note 2: retention_duration’s unit is day. For example, “retention_duration=10” indicates maximum retention for 10 days. For example, “retention_duration=14” indicates maximum retention for 2 weeks.
None
None
None
None
None
None
None
None
None
Primary assignee: gengchc2 <geng.changcai2@zte.com.cn>
None
Unit tests in Karbor.
None
None
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.