starrocks-br 0.5.0__py3-none-any.whl → 0.5.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- starrocks_br/__init__.py +14 -0
- starrocks_br/cli.py +57 -20
- starrocks_br/concurrency.py +16 -9
- starrocks_br/config.py +25 -7
- starrocks_br/db.py +14 -0
- starrocks_br/error_handler.py +56 -0
- starrocks_br/exceptions.py +31 -0
- starrocks_br/executor.py +20 -4
- starrocks_br/health.py +15 -0
- starrocks_br/history.py +14 -0
- starrocks_br/labels.py +14 -0
- starrocks_br/logger.py +14 -0
- starrocks_br/planner.py +17 -7
- starrocks_br/repository.py +14 -0
- starrocks_br/restore.py +14 -0
- starrocks_br/schema.py +14 -0
- starrocks_br/timezone.py +14 -0
- starrocks_br/utils.py +15 -0
- {starrocks_br-0.5.0.dist-info → starrocks_br-0.5.2.dist-info}/METADATA +20 -18
- starrocks_br-0.5.2.dist-info/RECORD +24 -0
- starrocks_br-0.5.2.dist-info/licenses/LICENSE +201 -0
- starrocks_br-0.5.0.dist-info/RECORD +0 -23
- {starrocks_br-0.5.0.dist-info → starrocks_br-0.5.2.dist-info}/WHEEL +0 -0
- {starrocks_br-0.5.0.dist-info → starrocks_br-0.5.2.dist-info}/entry_points.txt +0 -0
- {starrocks_br-0.5.0.dist-info → starrocks_br-0.5.2.dist-info}/top_level.txt +0 -0
starrocks_br/__init__.py
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
__all__ = ["cli", "config"]
|
starrocks_br/cli.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
import os
|
|
2
16
|
import sys
|
|
3
17
|
|
|
@@ -125,11 +139,14 @@ def init(config):
|
|
|
125
139
|
" starrocks-br backup incremental --group my_daily_incremental --config config.yaml"
|
|
126
140
|
)
|
|
127
141
|
|
|
128
|
-
except
|
|
129
|
-
|
|
142
|
+
except exceptions.ConfigFileNotFoundError as e:
|
|
143
|
+
error_handler.handle_config_file_not_found_error(e)
|
|
130
144
|
sys.exit(1)
|
|
131
|
-
except
|
|
132
|
-
|
|
145
|
+
except exceptions.ConfigValidationError as e:
|
|
146
|
+
error_handler.handle_config_validation_error(e, config)
|
|
147
|
+
sys.exit(1)
|
|
148
|
+
except FileNotFoundError as e:
|
|
149
|
+
error_handler.handle_config_file_not_found_error(exceptions.ConfigFileNotFoundError(str(e)))
|
|
133
150
|
sys.exit(1)
|
|
134
151
|
except Exception as e:
|
|
135
152
|
logger.error(f"Failed to initialize schema: {e}")
|
|
@@ -275,14 +292,26 @@ def backup_incremental(config, baseline_backup, group, name):
|
|
|
275
292
|
logger.error(f"{result['error_message']}")
|
|
276
293
|
sys.exit(1)
|
|
277
294
|
|
|
295
|
+
except exceptions.ConcurrencyConflictError as e:
|
|
296
|
+
error_handler.handle_concurrency_conflict_error(e, config)
|
|
297
|
+
sys.exit(1)
|
|
298
|
+
except exceptions.BackupLabelNotFoundError as e:
|
|
299
|
+
error_handler.handle_backup_label_not_found_error(e, config)
|
|
300
|
+
sys.exit(1)
|
|
301
|
+
except exceptions.NoFullBackupFoundError as e:
|
|
302
|
+
error_handler.handle_no_full_backup_found_error(e, config, group)
|
|
303
|
+
sys.exit(1)
|
|
304
|
+
except exceptions.ConfigFileNotFoundError as e:
|
|
305
|
+
error_handler.handle_config_file_not_found_error(e)
|
|
306
|
+
sys.exit(1)
|
|
307
|
+
except exceptions.ConfigValidationError as e:
|
|
308
|
+
error_handler.handle_config_validation_error(e, config)
|
|
309
|
+
sys.exit(1)
|
|
278
310
|
except FileNotFoundError as e:
|
|
279
|
-
|
|
311
|
+
error_handler.handle_config_file_not_found_error(exceptions.ConfigFileNotFoundError(str(e)))
|
|
280
312
|
sys.exit(1)
|
|
281
313
|
except ValueError as e:
|
|
282
|
-
logger.error(f"
|
|
283
|
-
sys.exit(1)
|
|
284
|
-
except RuntimeError as e:
|
|
285
|
-
logger.error(f"{e}")
|
|
314
|
+
logger.error(f"Error: {e}")
|
|
286
315
|
sys.exit(1)
|
|
287
316
|
except Exception as e:
|
|
288
317
|
logger.error(f"Unexpected error: {e}")
|
|
@@ -394,15 +423,23 @@ def backup_full(config, group, name):
|
|
|
394
423
|
logger.error(f"{result['error_message']}")
|
|
395
424
|
sys.exit(1)
|
|
396
425
|
|
|
397
|
-
except
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
426
|
+
except exceptions.ConcurrencyConflictError as e:
|
|
427
|
+
error_handler.handle_concurrency_conflict_error(e, config)
|
|
428
|
+
sys.exit(1)
|
|
429
|
+
except exceptions.ConfigFileNotFoundError as e:
|
|
430
|
+
error_handler.handle_config_file_not_found_error(e)
|
|
431
|
+
sys.exit(1)
|
|
432
|
+
except exceptions.ConfigValidationError as e:
|
|
433
|
+
error_handler.handle_config_validation_error(e, config)
|
|
434
|
+
sys.exit(1)
|
|
435
|
+
except FileNotFoundError as e:
|
|
436
|
+
error_handler.handle_config_file_not_found_error(exceptions.ConfigFileNotFoundError(str(e)))
|
|
437
|
+
sys.exit(1)
|
|
438
|
+
except ValueError as e:
|
|
439
|
+
logger.error(f"Error: {e}")
|
|
440
|
+
sys.exit(1)
|
|
441
|
+
except Exception as e:
|
|
442
|
+
logger.error(f"Unexpected error: {e}")
|
|
406
443
|
sys.exit(1)
|
|
407
444
|
|
|
408
445
|
|
|
@@ -559,8 +596,8 @@ def restore_command(config, target_label, group, table, rename_suffix, yes):
|
|
|
559
596
|
exceptions.ConfigValidationError(str(e)), config
|
|
560
597
|
)
|
|
561
598
|
sys.exit(1)
|
|
562
|
-
except
|
|
563
|
-
|
|
599
|
+
except exceptions.ConcurrencyConflictError as e:
|
|
600
|
+
error_handler.handle_concurrency_conflict_error(e, config)
|
|
564
601
|
sys.exit(1)
|
|
565
602
|
except Exception as e:
|
|
566
603
|
logger.error(f"Unexpected error: {e}")
|
starrocks_br/concurrency.py
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
from typing import Literal
|
|
2
16
|
|
|
3
|
-
from . import logger, utils
|
|
17
|
+
from . import exceptions, logger, utils
|
|
4
18
|
|
|
5
19
|
|
|
6
20
|
def reserve_job_slot(db, scope: str, label: str) -> None:
|
|
@@ -46,14 +60,7 @@ def _can_heal_stale_job(scope: str, label: str, db) -> bool:
|
|
|
46
60
|
|
|
47
61
|
def _raise_concurrency_conflict(scope: str, active_jobs: list[tuple[str, str, str]]) -> None:
|
|
48
62
|
"""Raise a concurrency conflict error with helpful message."""
|
|
49
|
-
|
|
50
|
-
active_labels = [job[1] for job in active_jobs]
|
|
51
|
-
|
|
52
|
-
raise RuntimeError(
|
|
53
|
-
f"Concurrency conflict: Another '{scope}' job is already ACTIVE: {', '.join(active_job_strings)}. "
|
|
54
|
-
f"Wait for it to complete or cancel it via: UPDATE ops.run_status SET state='CANCELLED' "
|
|
55
|
-
f"WHERE label='{active_labels[0]}' AND state='ACTIVE'"
|
|
56
|
-
)
|
|
63
|
+
raise exceptions.ConcurrencyConflictError(scope, active_jobs)
|
|
57
64
|
|
|
58
65
|
|
|
59
66
|
def _insert_new_job(db, scope: str, label: str) -> None:
|
starrocks_br/config.py
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
from typing import Any
|
|
2
16
|
|
|
3
17
|
import yaml
|
|
4
18
|
|
|
19
|
+
from . import exceptions
|
|
20
|
+
|
|
5
21
|
|
|
6
22
|
def load_config(config_path: str) -> dict[str, Any]:
|
|
7
23
|
"""Load and parse YAML configuration file.
|
|
@@ -20,7 +36,7 @@ def load_config(config_path: str) -> dict[str, Any]:
|
|
|
20
36
|
config = yaml.safe_load(f)
|
|
21
37
|
|
|
22
38
|
if not isinstance(config, dict):
|
|
23
|
-
raise
|
|
39
|
+
raise exceptions.ConfigValidationError("Config must be a dictionary")
|
|
24
40
|
|
|
25
41
|
return config
|
|
26
42
|
|
|
@@ -32,13 +48,13 @@ def validate_config(config: dict[str, Any]) -> None:
|
|
|
32
48
|
config: Configuration dictionary
|
|
33
49
|
|
|
34
50
|
Raises:
|
|
35
|
-
|
|
51
|
+
ConfigValidationError: If required fields are missing
|
|
36
52
|
"""
|
|
37
53
|
required_fields = ["host", "port", "user", "database", "repository"]
|
|
38
54
|
|
|
39
55
|
for field in required_fields:
|
|
40
56
|
if field not in config:
|
|
41
|
-
raise
|
|
57
|
+
raise exceptions.ConfigValidationError(f"Missing required config field: {field}")
|
|
42
58
|
|
|
43
59
|
_validate_tls_section(config.get("tls"))
|
|
44
60
|
|
|
@@ -48,17 +64,19 @@ def _validate_tls_section(tls_config) -> None:
|
|
|
48
64
|
return
|
|
49
65
|
|
|
50
66
|
if not isinstance(tls_config, dict):
|
|
51
|
-
raise
|
|
67
|
+
raise exceptions.ConfigValidationError("TLS configuration must be a dictionary")
|
|
52
68
|
|
|
53
69
|
enabled = bool(tls_config.get("enabled", False))
|
|
54
70
|
|
|
55
71
|
if enabled and not tls_config.get("ca_cert"):
|
|
56
|
-
raise
|
|
72
|
+
raise exceptions.ConfigValidationError(
|
|
73
|
+
"TLS configuration requires 'ca_cert' when 'enabled' is true"
|
|
74
|
+
)
|
|
57
75
|
|
|
58
76
|
if "verify_server_cert" in tls_config and not isinstance(
|
|
59
77
|
tls_config["verify_server_cert"], bool
|
|
60
78
|
):
|
|
61
|
-
raise
|
|
79
|
+
raise exceptions.ConfigValidationError(
|
|
62
80
|
"TLS configuration field 'verify_server_cert' must be a boolean if provided"
|
|
63
81
|
)
|
|
64
82
|
|
|
@@ -67,6 +85,6 @@ def _validate_tls_section(tls_config) -> None:
|
|
|
67
85
|
if not isinstance(tls_versions, list) or not all(
|
|
68
86
|
isinstance(version, str) for version in tls_versions
|
|
69
87
|
):
|
|
70
|
-
raise
|
|
88
|
+
raise exceptions.ConfigValidationError(
|
|
71
89
|
"TLS configuration field 'tls_versions' must be a list of strings if provided"
|
|
72
90
|
)
|
starrocks_br/db.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
from typing import Any
|
|
2
16
|
|
|
3
17
|
import mysql.connector
|
starrocks_br/error_handler.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
import click
|
|
2
16
|
|
|
3
17
|
from . import exceptions
|
|
@@ -263,3 +277,45 @@ def handle_restore_operation_cancelled_error() -> None:
|
|
|
263
277
|
],
|
|
264
278
|
help_links=["starrocks-br restore --help"],
|
|
265
279
|
)
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
def handle_concurrency_conflict_error(
|
|
283
|
+
exc: exceptions.ConcurrencyConflictError, config: str = None
|
|
284
|
+
) -> None:
|
|
285
|
+
active_job_strings = [f"{job[0]}:{job[1]}" for job in exc.active_jobs]
|
|
286
|
+
first_label = exc.active_labels[0] if exc.active_labels else "unknown"
|
|
287
|
+
|
|
288
|
+
display_structured_error(
|
|
289
|
+
title="CONCURRENCY CONFLICT",
|
|
290
|
+
reason=f"Another '{exc.scope}' job is already running.\nOnly one job of the same type can run at a time to prevent conflicts.",
|
|
291
|
+
what_to_do=[
|
|
292
|
+
f"Wait for the active job to complete: {', '.join(active_job_strings)}",
|
|
293
|
+
f"Check the job status in ops.run_status:\n SELECT * FROM ops.run_status WHERE label = '{first_label}' AND state = 'ACTIVE';",
|
|
294
|
+
f"If the job is stuck, cancel it manually:\n UPDATE ops.run_status SET state = 'CANCELLED' WHERE label = '{first_label}' AND state = 'ACTIVE';",
|
|
295
|
+
"Verify the job is not actually running in StarRocks before cancelling it",
|
|
296
|
+
],
|
|
297
|
+
inputs={
|
|
298
|
+
"--config": config,
|
|
299
|
+
"Scope": exc.scope,
|
|
300
|
+
"Active jobs": ", ".join(active_job_strings),
|
|
301
|
+
},
|
|
302
|
+
help_links=["Check ops.run_status table for job status"],
|
|
303
|
+
)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
def handle_no_full_backup_found_error(
|
|
307
|
+
exc: exceptions.NoFullBackupFoundError, config: str = None, group: str = None
|
|
308
|
+
) -> None:
|
|
309
|
+
display_structured_error(
|
|
310
|
+
title="NO FULL BACKUP FOUND",
|
|
311
|
+
reason=f"No successful full backup was found for database '{exc.database}'.\nIncremental backups require a baseline full backup to compare against.",
|
|
312
|
+
what_to_do=[
|
|
313
|
+
"Run a full backup first:\n starrocks-br backup full --config "
|
|
314
|
+
+ (config if config else "<config.yaml>")
|
|
315
|
+
+ f" --group {group if group else '<group_name>'}",
|
|
316
|
+
f"Verify no full backups exist for this database:\n SELECT label, backup_type, status, finished_at FROM ops.backup_history WHERE backup_type = 'full' AND label LIKE '{exc.database}_%' ORDER BY finished_at DESC;",
|
|
317
|
+
"After the full backup completes successfully, retry the incremental backup",
|
|
318
|
+
],
|
|
319
|
+
inputs={"Database": exc.database, "--config": config, "--group": group},
|
|
320
|
+
help_links=["starrocks-br backup full --help"],
|
|
321
|
+
)
|
starrocks_br/exceptions.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
class StarRocksBRError(Exception):
|
|
2
17
|
pass
|
|
3
18
|
|
|
@@ -91,3 +106,19 @@ class NoTablesFoundError(StarRocksBRError):
|
|
|
91
106
|
class RestoreOperationCancelledError(StarRocksBRError):
|
|
92
107
|
def __init__(self):
|
|
93
108
|
super().__init__("Restore operation cancelled by user")
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
class ConcurrencyConflictError(StarRocksBRError):
|
|
112
|
+
def __init__(self, scope: str, active_jobs: list[tuple[str, str, str]]):
|
|
113
|
+
self.scope = scope
|
|
114
|
+
self.active_jobs = active_jobs
|
|
115
|
+
self.active_labels = [job[1] for job in active_jobs]
|
|
116
|
+
super().__init__(
|
|
117
|
+
f"Concurrency conflict: Another '{scope}' job is already active: {', '.join(f'{job[0]}:{job[1]}' for job in active_jobs)}"
|
|
118
|
+
)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
class NoFullBackupFoundError(StarRocksBRError):
|
|
122
|
+
def __init__(self, database: str):
|
|
123
|
+
self.database = database
|
|
124
|
+
super().__init__(f"No successful full backup found for database '{database}'")
|
starrocks_br/executor.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
import re
|
|
2
16
|
import time
|
|
3
17
|
from typing import Literal
|
|
@@ -297,12 +311,11 @@ def _extract_label_from_command(backup_command: str) -> str:
|
|
|
297
311
|
parts = line.split()
|
|
298
312
|
for i, part in enumerate(parts):
|
|
299
313
|
if part == "SNAPSHOT" and i + 1 < len(parts):
|
|
300
|
-
return parts[i + 1]
|
|
314
|
+
return parts[i + 1].strip("`")
|
|
301
315
|
elif line.startswith("BACKUP SNAPSHOT"):
|
|
302
|
-
# Legacy syntax
|
|
303
316
|
parts = line.split()
|
|
304
317
|
if len(parts) >= 3:
|
|
305
|
-
return parts[2]
|
|
318
|
+
return parts[2].strip("`")
|
|
306
319
|
|
|
307
320
|
return "unknown_backup"
|
|
308
321
|
|
|
@@ -311,6 +324,9 @@ def _extract_database_from_command(backup_command: str) -> str:
|
|
|
311
324
|
"""Extract the database name from a backup command.
|
|
312
325
|
|
|
313
326
|
Parses: BACKUP DATABASE db_name SNAPSHOT label ...
|
|
327
|
+
|
|
328
|
+
Strips backticks from identifiers since they are only used for
|
|
329
|
+
SQL quoting purposes.
|
|
314
330
|
"""
|
|
315
331
|
lines = backup_command.strip().split("\n")
|
|
316
332
|
|
|
@@ -319,6 +335,6 @@ def _extract_database_from_command(backup_command: str) -> str:
|
|
|
319
335
|
if line.startswith("BACKUP DATABASE"):
|
|
320
336
|
parts = line.split()
|
|
321
337
|
if len(parts) >= 3:
|
|
322
|
-
return parts[2]
|
|
338
|
+
return parts[2].strip("`")
|
|
323
339
|
|
|
324
340
|
return "unknown_database"
|
starrocks_br/health.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
def check_cluster_health(db) -> tuple[bool, str]:
|
|
2
17
|
"""Check FE/BE health via SHOW FRONTENDS/BACKENDS.
|
|
3
18
|
|
starrocks_br/history.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
from . import logger
|
|
2
16
|
|
|
3
17
|
|
starrocks_br/labels.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
from datetime import datetime
|
|
2
16
|
from typing import Literal
|
|
3
17
|
|
starrocks_br/logger.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
import logging
|
|
2
16
|
import threading
|
|
3
17
|
|
starrocks_br/planner.py
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
import datetime
|
|
2
16
|
import hashlib
|
|
3
17
|
|
|
4
|
-
from starrocks_br import logger, timezone, utils
|
|
18
|
+
from starrocks_br import exceptions, logger, timezone, utils
|
|
5
19
|
|
|
6
20
|
|
|
7
21
|
def find_latest_full_backup(db, database: str) -> dict[str, str] | None:
|
|
@@ -83,16 +97,12 @@ def find_recent_partitions(
|
|
|
83
97
|
"""
|
|
84
98
|
baseline_rows = db.query(baseline_query)
|
|
85
99
|
if not baseline_rows:
|
|
86
|
-
raise
|
|
87
|
-
f"Baseline backup '{baseline_backup_label}' not found or not successful"
|
|
88
|
-
)
|
|
100
|
+
raise exceptions.BackupLabelNotFoundError(baseline_backup_label)
|
|
89
101
|
baseline_time_raw = baseline_rows[0][0]
|
|
90
102
|
else:
|
|
91
103
|
latest_backup = find_latest_full_backup(db, database)
|
|
92
104
|
if not latest_backup:
|
|
93
|
-
raise
|
|
94
|
-
f"No successful full backup found for database '{database}'. Run a full database backup first."
|
|
95
|
-
)
|
|
105
|
+
raise exceptions.NoFullBackupFoundError(database)
|
|
96
106
|
baseline_time_raw = latest_backup["finished_at"]
|
|
97
107
|
|
|
98
108
|
if isinstance(baseline_time_raw, datetime.datetime):
|
starrocks_br/repository.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
from __future__ import annotations
|
|
2
16
|
|
|
3
17
|
|
starrocks_br/restore.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
import datetime
|
|
2
16
|
import time
|
|
3
17
|
|
starrocks_br/schema.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
from . import logger
|
|
2
16
|
|
|
3
17
|
|
starrocks_br/timezone.py
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
import datetime
|
|
2
16
|
from zoneinfo import ZoneInfo
|
|
3
17
|
|
starrocks_br/utils.py
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# Copyright 2025 deep-bi
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
def quote_identifier(identifier):
|
|
2
17
|
"""
|
|
3
18
|
Quote a SQL identifier (database, table, or column name) with backticks.
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: starrocks-br
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: StarRocks Backup and Restore automation tool
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
|
+
License-File: LICENSE
|
|
7
8
|
Requires-Dist: click<9,>=8.1.7
|
|
8
9
|
Requires-Dist: PyYAML<7,>=6.0.1
|
|
9
10
|
Requires-Dist: mysql-connector-python<10,>=9.0.0
|
|
@@ -13,6 +14,7 @@ Requires-Dist: pytest-mock<4,>=3.14.0; extra == "dev"
|
|
|
13
14
|
Requires-Dist: pytest-cov<6,>=5.0.0; extra == "dev"
|
|
14
15
|
Requires-Dist: ruff<1,>=0.8.0; extra == "dev"
|
|
15
16
|
Requires-Dist: pre-commit<5,>=4.0.0; extra == "dev"
|
|
17
|
+
Dynamic: license-file
|
|
16
18
|
|
|
17
19
|
# StarRocks Backup & Restore
|
|
18
20
|
|
|
@@ -22,14 +24,19 @@ Full and incremental backup automation for StarRocks shared-nothing clusters.
|
|
|
22
24
|
|
|
23
25
|
📋 **[Release Notes & Changelog](CHANGELOG.md)**
|
|
24
26
|
|
|
25
|
-
##
|
|
27
|
+
## Documentation
|
|
26
28
|
|
|
27
|
-
- [Why This Tool?](#why-this-tool)
|
|
28
|
-
- [
|
|
29
|
-
- [
|
|
30
|
-
- [
|
|
31
|
-
- [
|
|
32
|
-
- [
|
|
29
|
+
- [Why This Tool?](#why-this-tool) (this page)
|
|
30
|
+
- [Installation](#installation) (this page)
|
|
31
|
+
- [Configuration](#configuration) (this page)
|
|
32
|
+
- [Basic Usage](#basic-usage) (this page)
|
|
33
|
+
- [How It Works](#how-it-works) (this page)
|
|
34
|
+
- **[Getting Started](docs/getting-started.md)** - Step-by-step tutorial
|
|
35
|
+
- **[Core Concepts](docs/core-concepts.md)** - Understand inventory groups, backup types, and restore chains
|
|
36
|
+
- **[Installation Guide](docs/installation.md)** - All installation methods
|
|
37
|
+
- **[Configuration Reference](docs/configuration.md)** - Config file reference and TLS setup
|
|
38
|
+
- **[Commands Reference](docs/commands.md)** - Detailed command reference
|
|
39
|
+
- **[Scheduling & Monitoring](docs/scheduling.md)** - Automate backups and monitor status
|
|
33
40
|
|
|
34
41
|
## Why This Tool?
|
|
35
42
|
|
|
@@ -55,15 +62,6 @@ This tool adds **incremental backup capabilities** to StarRocks by leveraging na
|
|
|
55
62
|
|
|
56
63
|
In short: this tool transforms StarRocks's basic backup/restore commands into a **production-ready incremental backup solution**.
|
|
57
64
|
|
|
58
|
-
## Documentation
|
|
59
|
-
|
|
60
|
-
- **[Getting Started](docs/getting-started.md)** - Step-by-step tutorial
|
|
61
|
-
- **[Core Concepts](docs/core-concepts.md)** - Understand inventory groups, backup types, and restore chains
|
|
62
|
-
- **[Installation](docs/installation.md)** - All installation methods
|
|
63
|
-
- **[Configuration](docs/configuration.md)** - Config file reference and TLS setup
|
|
64
|
-
- **[Commands](docs/commands.md)** - Detailed command reference
|
|
65
|
-
- **[Scheduling & Monitoring](docs/scheduling.md)** - Automate backups and monitor status
|
|
66
|
-
|
|
67
65
|
## Installation
|
|
68
66
|
|
|
69
67
|
### Option 1: PyPI
|
|
@@ -76,7 +74,7 @@ pip install starrocks-br
|
|
|
76
74
|
|
|
77
75
|
### Option 2: Standalone Executable
|
|
78
76
|
|
|
79
|
-
Download from [releases](https://github.com/deep-bi/starrocks-
|
|
77
|
+
Download from [releases](https://github.com/deep-bi/starrocks-backup-and-restore/releases/latest):
|
|
80
78
|
|
|
81
79
|
```bash
|
|
82
80
|
# Linux
|
|
@@ -151,3 +149,7 @@ Read [Core Concepts](docs/core-concepts.md) for detailed explanations.
|
|
|
151
149
|
## Contributing
|
|
152
150
|
|
|
153
151
|
We welcome contributions! See issues for areas that need help or create a new issue to report a bug or request a feature.
|
|
152
|
+
|
|
153
|
+
## License
|
|
154
|
+
|
|
155
|
+
This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
starrocks_br/__init__.py,sha256=SeQqVuym4h6mvf4ar0UpBs_qDWbP0XOYH65Qj7WT4HI,600
|
|
2
|
+
starrocks_br/cli.py,sha256=9DQzFDYwqDVfoQSNamHBtQrwBKH99agsIFWrCs096wM,23496
|
|
3
|
+
starrocks_br/concurrency.py,sha256=aLHLjXy8ccmtfOXUuL-HJx_xQYIR0lpQE4TI4LI9y1k,6130
|
|
4
|
+
starrocks_br/config.py,sha256=6A4BdHC7OT6RQSpK_cZ_8e8M6oHIMJwu6jKDa4ZtHRg,2822
|
|
5
|
+
starrocks_br/db.py,sha256=abGG12e4JN4ydrz1ZdahKvOkk9CKbkGbkLnRxjUMFA8,5518
|
|
6
|
+
starrocks_br/error_handler.py,sha256=vHNaEiLkTVBkhcrNJyjboaqikpxeTMA0ZsNsE01ysB8,13657
|
|
7
|
+
starrocks_br/exceptions.py,sha256=Z9zoiCdSjKAxYKIKf0rwYjTlkoCichIz7WwoFIfnmi8,4482
|
|
8
|
+
starrocks_br/executor.py,sha256=aQA6lQuUc0TGy9CqqpAi9f7JDJsdwatmI-TvETuFTPs,12016
|
|
9
|
+
starrocks_br/health.py,sha256=4CEX6nFKN1Vdc2cP_b89IVFZq6eaHKGMrs-FFDC4T9Q,1594
|
|
10
|
+
starrocks_br/history.py,sha256=FM8uwqjIuDbKYJSf1XKr1Sila98a6uz1CESD2MsVjtI,3536
|
|
11
|
+
starrocks_br/labels.py,sha256=93AROzHxTa5eCEVZlqJi9Jjv7w-YpYTANqTu-n3ujP8,2234
|
|
12
|
+
starrocks_br/logger.py,sha256=a44M_VDhVqnaU5sxqJ0tVoXBdY4tAmWG5P3DRNOdbWE,2004
|
|
13
|
+
starrocks_br/planner.py,sha256=zJwOx16y3Chn_WEmPgKdJ_Zfy-8Hfnp_w212qdrfxao,11326
|
|
14
|
+
starrocks_br/repository.py,sha256=jYzu2EMR7RPp86c6PkuHTA-cld6qX-Jj0yTD-lryZR0,1823
|
|
15
|
+
starrocks_br/restore.py,sha256=B9m6bFONyUiUGTYnb6ac3CUpW-Ev-S820-q-LD7R5Po,20677
|
|
16
|
+
starrocks_br/schema.py,sha256=KayDhOL3NQq_ShwCvGrTxbFkvX7BaBybfEAe2Dxuuu0,6771
|
|
17
|
+
starrocks_br/timezone.py,sha256=DLoOJ2-Z65a__PEcZS1eYauVIbRJNWOOX5lpfdHfqGc,4150
|
|
18
|
+
starrocks_br/utils.py,sha256=bmEZpD_CQ1_7hy51ZkRG7KKYOglhqW3EZYsWwFPUPow,2749
|
|
19
|
+
starrocks_br-0.5.2.dist-info/licenses/LICENSE,sha256=HV8aogcPFdRayUZanMcDj73f-B3qg2YstudemA_Qi5U,11369
|
|
20
|
+
starrocks_br-0.5.2.dist-info/METADATA,sha256=Np4XYVJQmW3hkIkpbfCeOvTZmFHLLYLzUqUV9ShHU6A,5931
|
|
21
|
+
starrocks_br-0.5.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
22
|
+
starrocks_br-0.5.2.dist-info/entry_points.txt,sha256=AKUt01G2MAlh85s1Q9kNQDOUio14kaTnT3dmg9gjdNg,54
|
|
23
|
+
starrocks_br-0.5.2.dist-info/top_level.txt,sha256=CU1tGVo0kjulhDr761Sndg-oTeRKsisDnWm8UG95aBE,13
|
|
24
|
+
starrocks_br-0.5.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2025 StarRocks Backup & Restore Contributors
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
starrocks_br/__init__.py,sha256=i1m0FIl2IAXaVyNoya0ZNAx3WfhIp9I6VLhTz06qNFY,28
|
|
2
|
-
starrocks_br/cli.py,sha256=fMtTLGFgEfM1HkXX5y0IVmTC6yCcGLfYnoA8G-qPWCs,21686
|
|
3
|
-
starrocks_br/concurrency.py,sha256=N0LD4VHTAFNhD4YslrkOCDSx5cnR5rCEkNH9MkODxv8,5903
|
|
4
|
-
starrocks_br/config.py,sha256=APqOZcJuUzYmGNHoJRlsu4l3sWl_4SS1kRLKjKm2Oag,2059
|
|
5
|
-
starrocks_br/db.py,sha256=47ynDQ9kdykJRj_nrHxX020b9njozzQxiZBI9lFdS7A,4946
|
|
6
|
-
starrocks_br/error_handler.py,sha256=qqN3Ht2YCHMzvnP_snPIPJuZPKxvgrHSt2qlVfItBY8,10830
|
|
7
|
-
starrocks_br/exceptions.py,sha256=vStzFWxDpO6krg1l-_6IxrXNKI8jc0aYSs7GiVsDze8,3273
|
|
8
|
-
starrocks_br/executor.py,sha256=YE12jiU-4tru2D7BAe8Y0Fom72LHjGz04obN4FcAWhA,11345
|
|
9
|
-
starrocks_br/health.py,sha256=rmkgNYf6kk3VDZx-PmnAG3lzmtvnJcUPG7Ppb6BA7IU,1021
|
|
10
|
-
starrocks_br/history.py,sha256=ewXMVUHJvpWjvPndYUdz9xPh24HDPiUAuJgIALuWays,2964
|
|
11
|
-
starrocks_br/labels.py,sha256=07UFd8BMyyV2MQwf7NaLviuu37lMLOOFX3DCbf_XqOE,1662
|
|
12
|
-
starrocks_br/logger.py,sha256=8F7ZnqCOVFJDt6-rZevh94udGbhZhDLrBw8W3RZbM-4,1432
|
|
13
|
-
starrocks_br/planner.py,sha256=wbOTKZvuWAFaGWXcciKOIveLzfYWsnGXK1ZI4lr7MVU,10892
|
|
14
|
-
starrocks_br/repository.py,sha256=gZgT0mAjs-AAdESXPF8Syv0bE8m5njya5leTageElQ8,1251
|
|
15
|
-
starrocks_br/restore.py,sha256=7_VcrGt0KVqhWe9f3JgQYDMNuM6_EjBqCi63BiSa2WY,20105
|
|
16
|
-
starrocks_br/schema.py,sha256=FSJjcz4q3SU_rHLptsSzrlm-o0dcvIu6LbpT-Z5GyZA,6199
|
|
17
|
-
starrocks_br/timezone.py,sha256=WlB_gkgI4AjQzqHVA1eG9CY_9QiX5cYpVKjQLvSrd4Y,3578
|
|
18
|
-
starrocks_br/utils.py,sha256=LF3uBdaNMeslE4UHl_wwv4QErCS48ISxpPqYX8dbrc8,2176
|
|
19
|
-
starrocks_br-0.5.0.dist-info/METADATA,sha256=kfTP9BWHOUoF7gvh8tgH2TufIRmWQasVGZgXw4GH5Ec,5728
|
|
20
|
-
starrocks_br-0.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
21
|
-
starrocks_br-0.5.0.dist-info/entry_points.txt,sha256=AKUt01G2MAlh85s1Q9kNQDOUio14kaTnT3dmg9gjdNg,54
|
|
22
|
-
starrocks_br-0.5.0.dist-info/top_level.txt,sha256=CU1tGVo0kjulhDr761Sndg-oTeRKsisDnWm8UG95aBE,13
|
|
23
|
-
starrocks_br-0.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|