-
Notifications
You must be signed in to change notification settings - Fork 7
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
Parallel FREEZE TABLE #164
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
4c3acbf
Freeze and backup thread pools
kirillgarbar faecbed
Remove freezed data for one table
kirillgarbar 8807c86
Freeze workers option in config
kirillgarbar 1e86b09
More flexibility of data generation for tests
kirillgarbar 6b7182b
Parallel freeze test
kirillgarbar c45b386
Move executors to subclass
kirillgarbar ec20451
Partition by prefix to fix dedup tests
kirillgarbar 8b795ae
Fix codespell
kirillgarbar 4f8bfec
Fix for old python
kirillgarbar 7554870
Remove backup executor and backup in the main thread
kirillgarbar 06cb097
Fix black
kirillgarbar 95bc77b
Fix race condition with shadow/increment.txt
kirillgarbar 0214f1e
Parallel backup
kirillgarbar 6933163
Fix unit test - can't pickle lock
kirillgarbar d0a25c9
Revert "Fix unit test - can't pickle lock"
kirillgarbar 827a66d
Revert "Parallel backup"
kirillgarbar 93da739
Backup tables after all tables are frozen
kirillgarbar b7a4358
Move thread pool related logic to separate class
kirillgarbar 6d1076a
Move all freeze related logic to TableFreezer
kirillgarbar c70ad1f
Small fixes
kirillgarbar 190539c
Fix exception suppression in TableFreezer's __exit__
kirillgarbar 59fdf82
Fix mypy
kirillgarbar 2f12cb7
Fix black
kirillgarbar 87f9d30
Move freeze logic to the method
kirillgarbar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ | |
from ch_backup.exceptions import ClickhouseBackupError | ||
from ch_backup.util import ( | ||
chown_dir_contents, | ||
chown_file, | ||
escape, | ||
list_dir_files, | ||
retry, | ||
|
@@ -474,15 +475,32 @@ def system_unfreeze(self, backup_name: str) -> None: | |
query_sql = SYSTEM_UNFREEZE_SQL.format(backup_name=backup_name) | ||
self._ch_client.query(query_sql, timeout=self._unfreeze_timeout) | ||
|
||
def remove_freezed_data(self) -> None: | ||
def remove_freezed_data( | ||
self, backup_name: Optional[str] = None, table: Optional[Table] = None | ||
) -> None: | ||
""" | ||
Remove all freezed partitions from all local disks. | ||
""" | ||
for disk in self._disks.values(): | ||
if disk.type == "local": | ||
shadow_path = os.path.join(disk.path, "shadow") | ||
logging.debug("Removing shadow data: {}", shadow_path) | ||
self._remove_shadow_data(shadow_path) | ||
if not (backup_name is None) == (table is None): | ||
raise RuntimeError( | ||
"Both backup_name and table should be None or not None at the same time" | ||
) | ||
|
||
if backup_name and table: | ||
for table_data_path, disk in table.paths_with_disks: | ||
if disk.type == "local": | ||
table_relative_path = os.path.relpath(table_data_path, disk.path) | ||
shadow_path = os.path.join( | ||
disk.path, "shadow", backup_name, table_relative_path | ||
) | ||
logging.debug("Removing shadow data: {}", shadow_path) | ||
self._remove_shadow_data(shadow_path) | ||
else: | ||
for disk in self._disks.values(): | ||
if disk.type == "local": | ||
shadow_path = os.path.join(disk.path, "shadow") | ||
logging.debug("Removing shadow data: {}", shadow_path) | ||
self._remove_shadow_data(shadow_path) | ||
|
||
def remove_freezed_part(self, part: FrozenPart) -> None: | ||
""" | ||
|
@@ -776,6 +794,27 @@ def chown_dir(self, dir_path: str) -> None: | |
need_recursion, | ||
) | ||
|
||
def create_shadow_increment(self) -> None: | ||
""" | ||
Create shadow/increment.txt to fix race condition with parallel freeze. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there some issue or comment in the code of CH about this to mention here ? |
||
Must be used before freezing more than one table at once. | ||
https://github.com/ClickHouse/ClickHouse/blob/597a72fd9afd88984abc10b284624c6b4d08368b/src/Common/Increment.h#L20 | ||
""" | ||
default_shadow_path = Path(self._root_data_path) / "shadow" | ||
increment_path = default_shadow_path / "increment.txt" | ||
if os.path.exists(increment_path): | ||
return | ||
if not os.path.exists(default_shadow_path): | ||
os.mkdir(default_shadow_path) | ||
self.chown_dir(str(default_shadow_path)) | ||
with open(increment_path, "w", encoding="utf-8") as file: | ||
file.write("0") | ||
chown_file( | ||
self._ch_ctl_config["user"], | ||
self._ch_ctl_config["group"], | ||
str(increment_path), | ||
) | ||
|
||
@retry(OSError) | ||
def _remove_shadow_data(self, path: str) -> None: | ||
if path.find("/shadow") == -1: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Let's introduce a new object with backup_name and table as members. Or add checking and throwing an exception when only one from the pair is provided.