ricolin | e884f12 | 2024-11-01 16:28:13 +0800 | [diff] [blame] | 1 | from __future__ import annotations |
| 2 | |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 3 | from oslo_config import cfg |
ricolin | e884f12 | 2024-11-01 16:28:13 +0800 | [diff] [blame] | 4 | |
okozachenko | ca2b37a | 2021-05-06 20:38:02 +0300 | [diff] [blame] | 5 | from staffeln.common import constants |
okozachenko | 24bfc9e | 2021-05-04 15:20:11 +0300 | [diff] [blame] | 6 | from staffeln.i18n import _ |
| 7 | |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 8 | conductor_group = cfg.OptGroup( |
Susanta Gautam | 73a52bb | 2021-04-27 16:01:11 +0545 | [diff] [blame] | 9 | "conductor", |
| 10 | title="Conductor Options", |
ricolin | 916cf01 | 2024-12-05 10:30:16 +0800 | [diff] [blame] | 11 | help=_("Options under this group are used " "to define Conductor's configuration."), |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 12 | ) |
ricolin | e4c69c9 | 2024-10-25 16:30:37 +0800 | [diff] [blame^] | 13 | openstack_group = cfg.OptGroup( |
| 14 | "openstack", |
| 15 | title="OpenStack Options", |
| 16 | help=_( |
| 17 | "Options under this group are used " |
| 18 | "to define OpneStack related configuration." |
| 19 | ), |
| 20 | ) |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 21 | |
okozachenko | af07320 | 2021-04-06 16:56:51 +0300 | [diff] [blame] | 22 | backup_opts = [ |
| 23 | cfg.IntOpt( |
Susanta Gautam | 73a52bb | 2021-04-27 16:01:11 +0545 | [diff] [blame] | 24 | "backup_workers", |
okozachenko | b8f9e2e | 2021-04-07 20:02:42 +0300 | [diff] [blame] | 25 | default=1, |
okozachenko1203 | fa747f2 | 2022-05-16 20:13:54 +1000 | [diff] [blame] | 26 | help=_( |
| 27 | "The maximum number of backup processes to " |
| 28 | "fork and run. Default to number of CPUs on the host." |
| 29 | ), |
Susanta Gautam | 73a52bb | 2021-04-27 16:01:11 +0545 | [diff] [blame] | 30 | ), |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 31 | cfg.IntOpt( |
okozachenko | 2d76518 | 2021-05-05 18:22:54 +0300 | [diff] [blame] | 32 | "backup_service_period", |
ricolin | 07db40e | 2023-01-02 06:37:10 +0800 | [diff] [blame] | 33 | default=1800, |
ricolin | d122a19 | 2023-01-16 22:54:23 +0800 | [diff] [blame] | 34 | min=60, |
Michiel Piscaer | 9812442 | 2023-11-14 08:52:07 +0100 | [diff] [blame] | 35 | help=_("The time of backup period, the unit is one second."), |
Susanta Gautam | 73a52bb | 2021-04-27 16:01:11 +0545 | [diff] [blame] | 36 | ), |
ricolin | 7f3ae94 | 2022-11-14 08:09:08 +0800 | [diff] [blame] | 37 | cfg.IntOpt( |
ricolin | 0c10d97 | 2023-01-14 07:10:30 +0800 | [diff] [blame] | 38 | "backup_min_interval", |
ricolin | d122a19 | 2023-01-16 22:54:23 +0800 | [diff] [blame] | 39 | default=1800, |
ricolin | 0c10d97 | 2023-01-14 07:10:30 +0800 | [diff] [blame] | 40 | min=0, |
| 41 | help=_( |
ricolin | 3725fd7 | 2023-01-14 08:29:39 +0800 | [diff] [blame] | 42 | "The time of minimum guaranteed interval between Staffeln " |
ricolin | d122a19 | 2023-01-16 22:54:23 +0800 | [diff] [blame] | 43 | "created backups, the unit is one seconds. Set to 0 if don't " |
ricolin | 0c10d97 | 2023-01-14 07:10:30 +0800 | [diff] [blame] | 44 | "need to enable this feature." |
| 45 | ), |
| 46 | ), |
| 47 | cfg.IntOpt( |
ricolin | 7f3ae94 | 2022-11-14 08:09:08 +0800 | [diff] [blame] | 48 | "report_period", |
ricolin | d122a19 | 2023-01-16 22:54:23 +0800 | [diff] [blame] | 49 | default=86400, |
| 50 | min=600, |
| 51 | help=_("The time of report period, the unit is one seconds."), |
ricolin | 7f3ae94 | 2022-11-14 08:09:08 +0800 | [diff] [blame] | 52 | ), |
okozachenko | 32a692e | 2021-04-13 10:47:05 +0300 | [diff] [blame] | 53 | cfg.StrOpt( |
okozachenko | ca2b37a | 2021-05-06 20:38:02 +0300 | [diff] [blame] | 54 | "backup_cycle_timout", |
okozachenko1203 | ef49f95 | 2022-05-16 22:27:28 +1000 | [diff] [blame] | 55 | regex=( |
| 56 | r"((?P<years>\d+?)y)?((?P<months>\d+?)mon)?((?P<weeks>\d+?)w)?" |
ricolin | e884f12 | 2024-11-01 16:28:13 +0800 | [diff] [blame] | 57 | r"((?P<days>\d+?)d)?((?P<hours>\d+?)h)?((?P<minutes>\d+?)min)?" |
| 58 | r"((?P<seconds>\d+?)s)?" |
okozachenko1203 | ef49f95 | 2022-05-16 22:27:28 +1000 | [diff] [blame] | 59 | ), |
okozachenko | ca2b37a | 2021-05-06 20:38:02 +0300 | [diff] [blame] | 60 | default=constants.DEFAULT_BACKUP_CYCLE_TIMEOUT, |
okozachenko1203 | fa747f2 | 2022-05-16 20:13:54 +1000 | [diff] [blame] | 61 | help=_( |
| 62 | "The duration while the backup cycle waits backups." |
| 63 | "<YEARS>y<MONTHS>mon<WEEKS>w<DAYS>d<HOURS>h<MINUTES>min<SECONDS>s." |
| 64 | ), |
okozachenko | ca2b37a | 2021-05-06 20:38:02 +0300 | [diff] [blame] | 65 | ), |
| 66 | cfg.StrOpt( |
Susanta Gautam | 73a52bb | 2021-04-27 16:01:11 +0545 | [diff] [blame] | 67 | "backup_metadata_key", |
ricolin | 916cf01 | 2024-12-05 10:30:16 +0800 | [diff] [blame] | 68 | help=_("The key string of metadata the VM, which requres back up, has"), |
Susanta Gautam | 73a52bb | 2021-04-27 16:01:11 +0545 | [diff] [blame] | 69 | ), |
ricolin | 031f06b | 2022-11-13 09:18:57 +0800 | [diff] [blame] | 70 | cfg.StrOpt( |
| 71 | "retention_metadata_key", |
ricolin | 3c2c893 | 2022-11-16 04:56:36 +0800 | [diff] [blame] | 72 | help=_( |
ricolin | e884f12 | 2024-11-01 16:28:13 +0800 | [diff] [blame] | 73 | "The key string of metadata the VM, which use as backup retention " |
| 74 | "period." |
ricolin | 3c2c893 | 2022-11-16 04:56:36 +0800 | [diff] [blame] | 75 | ), |
ricolin | 031f06b | 2022-11-13 09:18:57 +0800 | [diff] [blame] | 76 | ), |
okozachenko1203 | 0295070 | 2022-10-22 03:34:16 +1100 | [diff] [blame] | 77 | cfg.IntOpt( |
| 78 | "full_backup_depth", |
| 79 | default=2, |
ricolin | 7de4b0a | 2023-01-13 09:29:09 +0800 | [diff] [blame] | 80 | min=0, |
okozachenko1203 | 0295070 | 2022-10-22 03:34:16 +1100 | [diff] [blame] | 81 | help=_("Number of incremental backups between full backups."), |
| 82 | ), |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 83 | ] |
| 84 | |
ricolin | e4c69c9 | 2024-10-25 16:30:37 +0800 | [diff] [blame^] | 85 | openstack_opts = [ |
| 86 | cfg.IntOpt( |
| 87 | "retry_timeout", |
| 88 | default=300, |
| 89 | min=1, |
| 90 | help=_( |
| 91 | "The timeout for retry OpenStackSDK HTTP exceptions, " |
| 92 | "the unit is one second." |
| 93 | ), |
| 94 | ), |
| 95 | cfg.IntOpt( |
| 96 | "max_retry_interval", |
| 97 | default=30, |
| 98 | min=0, |
| 99 | help=_( |
| 100 | "Max time interval for retry OpenStackSDK HTTP exceptions, " |
| 101 | "the unit is one second." |
| 102 | ), |
| 103 | ), |
| 104 | cfg.ListOpt( |
| 105 | "skip_retry_codes", |
| 106 | default=["404"], |
| 107 | help=_( |
| 108 | "A list of HTTP codes " |
| 109 | "to skip retry on for OpenStackSDK HTTP " |
| 110 | "exception." |
| 111 | ), |
| 112 | ), |
| 113 | ] |
| 114 | |
okozachenko | af07320 | 2021-04-06 16:56:51 +0300 | [diff] [blame] | 115 | rotation_opts = [ |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 116 | cfg.IntOpt( |
Susanta Gautam | 73a52bb | 2021-04-27 16:01:11 +0545 | [diff] [blame] | 117 | "rotation_workers", |
okozachenko | 32a692e | 2021-04-13 10:47:05 +0300 | [diff] [blame] | 118 | default=1, |
okozachenko1203 | fa747f2 | 2022-05-16 20:13:54 +1000 | [diff] [blame] | 119 | help=_( |
| 120 | "The maximum number of rotation processes to " |
| 121 | "fork and run. Default to number of CPUs on the host." |
| 122 | ), |
Susanta Gautam | 73a52bb | 2021-04-27 16:01:11 +0545 | [diff] [blame] | 123 | ), |
okozachenko | 32a692e | 2021-04-13 10:47:05 +0300 | [diff] [blame] | 124 | cfg.IntOpt( |
okozachenko | 2d76518 | 2021-05-05 18:22:54 +0300 | [diff] [blame] | 125 | "retention_service_period", |
ricolin | 75a06aa | 2023-01-11 18:31:16 +0800 | [diff] [blame] | 126 | default=1200, |
ricolin | d122a19 | 2023-01-16 22:54:23 +0800 | [diff] [blame] | 127 | min=60, |
okozachenko | 6d277e3 | 2021-05-05 20:23:32 +0300 | [diff] [blame] | 128 | help=_("The period of the retention service, the unit is one second."), |
okozachenko | 2d76518 | 2021-05-05 18:22:54 +0300 | [diff] [blame] | 129 | ), |
| 130 | cfg.IntOpt( |
| 131 | "rotation_workers", |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 132 | default=1, |
okozachenko1203 | fa747f2 | 2022-05-16 20:13:54 +1000 | [diff] [blame] | 133 | help=_( |
| 134 | "The maximum number of rotation processes to " |
| 135 | "fork and run. Default to number of CPUs on the host." |
| 136 | ), |
okozachenko | 2d76518 | 2021-05-05 18:22:54 +0300 | [diff] [blame] | 137 | ), |
| 138 | cfg.StrOpt( |
| 139 | "retention_time", |
okozachenko1203 | ef49f95 | 2022-05-16 22:27:28 +1000 | [diff] [blame] | 140 | regex=( |
| 141 | r"((?P<years>\d+?)y)?((?P<months>\d+?)mon)?((?P<weeks>\d+?)w)?" |
ricolin | e884f12 | 2024-11-01 16:28:13 +0800 | [diff] [blame] | 142 | r"((?P<days>\d+?)d)?((?P<hours>\d+?)h)?((?P<minutes>\d+?)min)?" |
| 143 | r"((?P<seconds>\d+?)s)?" |
okozachenko1203 | ef49f95 | 2022-05-16 22:27:28 +1000 | [diff] [blame] | 144 | ), |
okozachenko | 6d277e3 | 2021-05-05 20:23:32 +0300 | [diff] [blame] | 145 | default="2w3d", |
okozachenko1203 | fa747f2 | 2022-05-16 20:13:54 +1000 | [diff] [blame] | 146 | help=_( |
| 147 | "The time of retention period, the for mat is " |
| 148 | "<YEARS>y<MONTHS>mon<WEEKS>w<DAYS>d<HOURS>h<MINUTES>min<SECONDS>s." |
| 149 | ), |
Susanta Gautam | 73a52bb | 2021-04-27 16:01:11 +0545 | [diff] [blame] | 150 | ), |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 151 | ] |
| 152 | |
ricolin | cf03129 | 2023-09-18 15:57:42 +0800 | [diff] [blame] | 153 | |
| 154 | coordination_group = cfg.OptGroup( |
| 155 | "coordination", |
| 156 | title="Coordination Options", |
ricolin | e884f12 | 2024-11-01 16:28:13 +0800 | [diff] [blame] | 157 | help=_( |
ricolin | 916cf01 | 2024-12-05 10:30:16 +0800 | [diff] [blame] | 158 | "Options under this group are used to define Coordination's" "configuration." |
ricolin | e884f12 | 2024-11-01 16:28:13 +0800 | [diff] [blame] | 159 | ), |
ricolin | cf03129 | 2023-09-18 15:57:42 +0800 | [diff] [blame] | 160 | ) |
| 161 | |
| 162 | |
| 163 | coordination_opts = [ |
ricolin | b6641c3 | 2023-09-18 16:21:21 +0800 | [diff] [blame] | 164 | cfg.StrOpt( |
ricolin | e884f12 | 2024-11-01 16:28:13 +0800 | [diff] [blame] | 165 | "backend_url", |
| 166 | default="", |
| 167 | help=_("lock coordination connection backend URL."), |
ricolin | b6641c3 | 2023-09-18 16:21:21 +0800 | [diff] [blame] | 168 | ), |
ricolin | cf03129 | 2023-09-18 15:57:42 +0800 | [diff] [blame] | 169 | ] |
| 170 | |
| 171 | |
okozachenko | af07320 | 2021-04-06 16:56:51 +0300 | [diff] [blame] | 172 | CONDUCTOR_OPTS = (backup_opts, rotation_opts) |
| 173 | |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 174 | |
| 175 | def register_opts(conf): |
| 176 | conf.register_group(conductor_group) |
okozachenko | b8f9e2e | 2021-04-07 20:02:42 +0300 | [diff] [blame] | 177 | conf.register_opts(backup_opts, group=conductor_group) |
okozachenko | 32a692e | 2021-04-13 10:47:05 +0300 | [diff] [blame] | 178 | conf.register_opts(rotation_opts, group=conductor_group) |
ricolin | e4c69c9 | 2024-10-25 16:30:37 +0800 | [diff] [blame^] | 179 | conf.register_opts(openstack_opts, group=openstack_group) |
ricolin | cf03129 | 2023-09-18 15:57:42 +0800 | [diff] [blame] | 180 | conf.register_opts(coordination_opts, group=coordination_group) |
okozachenko | 093ce9e | 2021-04-01 22:47:39 +0300 | [diff] [blame] | 181 | |
| 182 | |
| 183 | def list_opts(): |
ricolin | cf03129 | 2023-09-18 15:57:42 +0800 | [diff] [blame] | 184 | return { |
| 185 | "DEFAULT": rotation_opts, |
| 186 | conductor_group: backup_opts, |
ricolin | e4c69c9 | 2024-10-25 16:30:37 +0800 | [diff] [blame^] | 187 | openstack_group: openstack_opts, |
ricolin | b6641c3 | 2023-09-18 16:21:21 +0800 | [diff] [blame] | 188 | coordination_group: coordination_opts, |
ricolin | cf03129 | 2023-09-18 15:57:42 +0800 | [diff] [blame] | 189 | } |