PBM-1715 Parallel file processing for backups and restores#376
Open
rasika-chivate wants to merge 32 commits into
Open
PBM-1715 Parallel file processing for backups and restores#376rasika-chivate wants to merge 32 commits into
rasika-chivate wants to merge 32 commits into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates PBM physical backup/restore documentation to describe the new parallel file copy capability for filesystem/NFS-based physical backups and restores (PBM-1715), including the related config keys and CLI flag.
Changes:
- Document
backup.numParallelFiles/restore.numParallelFilesfor filesystem/NFS physical operations. - Add usage examples showing YAML configuration and
--num-parallel-filesCLI usage. - Extend reference option docs to include the new settings.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 9 comments.
| File | Description |
|---|---|
| docs/usage/restore-physical.md | Adds a new section explaining how to parallelize file copying during filesystem/NFS physical restores. |
| docs/usage/backup-physical.md | Adds a new section explaining how to parallelize file copying during filesystem/NFS physical backups, with config/CLI examples. |
| docs/reference/restore-options.md | Documents the new restore.numParallelFiles option. |
| docs/reference/backup-options.md | Documents the new backup.numParallelFiles option. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
…res' of https://github.com/percona/pbm-docs into PBM-1715-Parallel-file-processing-for-backups-and-restores
boris-ilijic
approved these changes
Jun 12, 2026
| ### restore.numParallelFiles | ||
|
|
||
| *Type*: int <br> | ||
| *Default*: 1 <br> |
Member
There was a problem hiding this comment.
To be precise, there is no default actually. If it is not specified, it's zero and that's the same as 1, which means sequentially.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Physical backup / restore from filesystem/NFS is limited by sequential single-threaded file copy.
For details, see https://perconadev.atlassian.net/browse/PBM-1715