blob: f3d7623c558038f4ddc7f39184ba11d3912e3ff7 [file] [log] [blame]
ricoline884f122024-11-01 16:28:13 +08001from __future__ import annotations
2
okozachenko093ce9e2021-04-01 22:47:39 +03003from oslo_config import cfg
ricoline884f122024-11-01 16:28:13 +08004
okozachenkoca2b37a2021-05-06 20:38:02 +03005from staffeln.common import constants
okozachenko24bfc9e2021-05-04 15:20:11 +03006from staffeln.i18n import _
7
okozachenko093ce9e2021-04-01 22:47:39 +03008conductor_group = cfg.OptGroup(
Susanta Gautam73a52bb2021-04-27 16:01:11 +05459 "conductor",
10 title="Conductor Options",
ricolin916cf012024-12-05 10:30:16 +080011 help=_("Options under this group are used " "to define Conductor's configuration."),
okozachenko093ce9e2021-04-01 22:47:39 +030012)
ricoline4c69c92024-10-25 16:30:37 +080013openstack_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)
okozachenko093ce9e2021-04-01 22:47:39 +030021
okozachenkoaf073202021-04-06 16:56:51 +030022backup_opts = [
23 cfg.IntOpt(
Susanta Gautam73a52bb2021-04-27 16:01:11 +054524 "backup_workers",
okozachenkob8f9e2e2021-04-07 20:02:42 +030025 default=1,
okozachenko1203fa747f22022-05-16 20:13:54 +100026 help=_(
27 "The maximum number of backup processes to "
28 "fork and run. Default to number of CPUs on the host."
29 ),
Susanta Gautam73a52bb2021-04-27 16:01:11 +054530 ),
okozachenko093ce9e2021-04-01 22:47:39 +030031 cfg.IntOpt(
okozachenko2d765182021-05-05 18:22:54 +030032 "backup_service_period",
ricolin07db40e2023-01-02 06:37:10 +080033 default=1800,
ricolind122a192023-01-16 22:54:23 +080034 min=60,
Michiel Piscaer98124422023-11-14 08:52:07 +010035 help=_("The time of backup period, the unit is one second."),
Susanta Gautam73a52bb2021-04-27 16:01:11 +054536 ),
ricolin7f3ae942022-11-14 08:09:08 +080037 cfg.IntOpt(
ricolin0c10d972023-01-14 07:10:30 +080038 "backup_min_interval",
ricolind122a192023-01-16 22:54:23 +080039 default=1800,
ricolin0c10d972023-01-14 07:10:30 +080040 min=0,
41 help=_(
ricolin3725fd72023-01-14 08:29:39 +080042 "The time of minimum guaranteed interval between Staffeln "
ricolind122a192023-01-16 22:54:23 +080043 "created backups, the unit is one seconds. Set to 0 if don't "
ricolin0c10d972023-01-14 07:10:30 +080044 "need to enable this feature."
45 ),
46 ),
47 cfg.IntOpt(
ricolin7f3ae942022-11-14 08:09:08 +080048 "report_period",
ricolind122a192023-01-16 22:54:23 +080049 default=86400,
50 min=600,
51 help=_("The time of report period, the unit is one seconds."),
ricolin7f3ae942022-11-14 08:09:08 +080052 ),
okozachenko32a692e2021-04-13 10:47:05 +030053 cfg.StrOpt(
okozachenkoca2b37a2021-05-06 20:38:02 +030054 "backup_cycle_timout",
okozachenko1203ef49f952022-05-16 22:27:28 +100055 regex=(
56 r"((?P<years>\d+?)y)?((?P<months>\d+?)mon)?((?P<weeks>\d+?)w)?"
ricoline884f122024-11-01 16:28:13 +080057 r"((?P<days>\d+?)d)?((?P<hours>\d+?)h)?((?P<minutes>\d+?)min)?"
58 r"((?P<seconds>\d+?)s)?"
okozachenko1203ef49f952022-05-16 22:27:28 +100059 ),
okozachenkoca2b37a2021-05-06 20:38:02 +030060 default=constants.DEFAULT_BACKUP_CYCLE_TIMEOUT,
okozachenko1203fa747f22022-05-16 20:13:54 +100061 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 ),
okozachenkoca2b37a2021-05-06 20:38:02 +030065 ),
66 cfg.StrOpt(
Susanta Gautam73a52bb2021-04-27 16:01:11 +054567 "backup_metadata_key",
ricolin916cf012024-12-05 10:30:16 +080068 help=_("The key string of metadata the VM, which requres back up, has"),
Susanta Gautam73a52bb2021-04-27 16:01:11 +054569 ),
ricolin031f06b2022-11-13 09:18:57 +080070 cfg.StrOpt(
71 "retention_metadata_key",
ricolin3c2c8932022-11-16 04:56:36 +080072 help=_(
ricoline884f122024-11-01 16:28:13 +080073 "The key string of metadata the VM, which use as backup retention "
74 "period."
ricolin3c2c8932022-11-16 04:56:36 +080075 ),
ricolin031f06b2022-11-13 09:18:57 +080076 ),
okozachenko120302950702022-10-22 03:34:16 +110077 cfg.IntOpt(
78 "full_backup_depth",
79 default=2,
ricolin7de4b0a2023-01-13 09:29:09 +080080 min=0,
okozachenko120302950702022-10-22 03:34:16 +110081 help=_("Number of incremental backups between full backups."),
82 ),
okozachenko093ce9e2021-04-01 22:47:39 +030083]
84
ricoline4c69c92024-10-25 16:30:37 +080085openstack_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
okozachenkoaf073202021-04-06 16:56:51 +0300115rotation_opts = [
okozachenko093ce9e2021-04-01 22:47:39 +0300116 cfg.IntOpt(
Susanta Gautam73a52bb2021-04-27 16:01:11 +0545117 "rotation_workers",
okozachenko32a692e2021-04-13 10:47:05 +0300118 default=1,
okozachenko1203fa747f22022-05-16 20:13:54 +1000119 help=_(
120 "The maximum number of rotation processes to "
121 "fork and run. Default to number of CPUs on the host."
122 ),
Susanta Gautam73a52bb2021-04-27 16:01:11 +0545123 ),
okozachenko32a692e2021-04-13 10:47:05 +0300124 cfg.IntOpt(
okozachenko2d765182021-05-05 18:22:54 +0300125 "retention_service_period",
ricolin75a06aa2023-01-11 18:31:16 +0800126 default=1200,
ricolind122a192023-01-16 22:54:23 +0800127 min=60,
okozachenko6d277e32021-05-05 20:23:32 +0300128 help=_("The period of the retention service, the unit is one second."),
okozachenko2d765182021-05-05 18:22:54 +0300129 ),
130 cfg.IntOpt(
131 "rotation_workers",
okozachenko093ce9e2021-04-01 22:47:39 +0300132 default=1,
okozachenko1203fa747f22022-05-16 20:13:54 +1000133 help=_(
134 "The maximum number of rotation processes to "
135 "fork and run. Default to number of CPUs on the host."
136 ),
okozachenko2d765182021-05-05 18:22:54 +0300137 ),
138 cfg.StrOpt(
139 "retention_time",
okozachenko1203ef49f952022-05-16 22:27:28 +1000140 regex=(
141 r"((?P<years>\d+?)y)?((?P<months>\d+?)mon)?((?P<weeks>\d+?)w)?"
ricoline884f122024-11-01 16:28:13 +0800142 r"((?P<days>\d+?)d)?((?P<hours>\d+?)h)?((?P<minutes>\d+?)min)?"
143 r"((?P<seconds>\d+?)s)?"
okozachenko1203ef49f952022-05-16 22:27:28 +1000144 ),
okozachenko6d277e32021-05-05 20:23:32 +0300145 default="2w3d",
okozachenko1203fa747f22022-05-16 20:13:54 +1000146 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 Gautam73a52bb2021-04-27 16:01:11 +0545150 ),
okozachenko093ce9e2021-04-01 22:47:39 +0300151]
152
ricolincf031292023-09-18 15:57:42 +0800153
154coordination_group = cfg.OptGroup(
155 "coordination",
156 title="Coordination Options",
ricoline884f122024-11-01 16:28:13 +0800157 help=_(
ricolin916cf012024-12-05 10:30:16 +0800158 "Options under this group are used to define Coordination's" "configuration."
ricoline884f122024-11-01 16:28:13 +0800159 ),
ricolincf031292023-09-18 15:57:42 +0800160)
161
162
163coordination_opts = [
ricolinb6641c32023-09-18 16:21:21 +0800164 cfg.StrOpt(
ricoline884f122024-11-01 16:28:13 +0800165 "backend_url",
166 default="",
167 help=_("lock coordination connection backend URL."),
ricolinb6641c32023-09-18 16:21:21 +0800168 ),
ricolincf031292023-09-18 15:57:42 +0800169]
170
171
okozachenkoaf073202021-04-06 16:56:51 +0300172CONDUCTOR_OPTS = (backup_opts, rotation_opts)
173
okozachenko093ce9e2021-04-01 22:47:39 +0300174
175def register_opts(conf):
176 conf.register_group(conductor_group)
okozachenkob8f9e2e2021-04-07 20:02:42 +0300177 conf.register_opts(backup_opts, group=conductor_group)
okozachenko32a692e2021-04-13 10:47:05 +0300178 conf.register_opts(rotation_opts, group=conductor_group)
ricoline4c69c92024-10-25 16:30:37 +0800179 conf.register_opts(openstack_opts, group=openstack_group)
ricolincf031292023-09-18 15:57:42 +0800180 conf.register_opts(coordination_opts, group=coordination_group)
okozachenko093ce9e2021-04-01 22:47:39 +0300181
182
183def list_opts():
ricolincf031292023-09-18 15:57:42 +0800184 return {
185 "DEFAULT": rotation_opts,
186 conductor_group: backup_opts,
ricoline4c69c92024-10-25 16:30:37 +0800187 openstack_group: openstack_opts,
ricolinb6641c32023-09-18 16:21:21 +0800188 coordination_group: coordination_opts,
ricolincf031292023-09-18 15:57:42 +0800189 }