Skip to content
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

Add restore_download_snapshot_batch_size/backup_upload_snapshot_batch_size config #1409

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/admin-manual/config/fe-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -2547,25 +2547,25 @@ MasterOnly:true

default timeout of backup job

#### `backup_upload_task_num_per_be`
#### `backup_upload_snapshot_batch_size`

Default:3
Default:10

IsMutable:true

MasterOnly:true

The max number of upload tasks assigned to each be during the backup process, the default value is 3.
The max number of snapshots assigned to a upload task during the backup process, the default value is 10.

#### `restore_download_task_num_per_be`
#### `restore_download_snapshot_batch_size`

Default:3
Default:10

IsMutable:true

MasterOnly:true

The max number of download tasks assigned to each be during the restore process, the default value is 3.
The max number of snapshots assigned to a download task during the restore process, the default value is 10.

#### `max_backup_restore_job_num_per_db`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2548,25 +2548,25 @@ SmallFileMgr 中存储的最大文件数

备份作业的默认超时时间

#### `backup_upload_task_num_per_be`
#### `backup_upload_snapshot_batch_size`

默认值:3
默认值:10

是否可以动态配置:true

是否为 Master FE 节点独有的配置项:true

备份过程中,分配给每个 be 的 upload 任务最大个数,默认值为 3 个
备份过程中,一个 upload 任务上传的快照数量上限,默认值为10个

#### `restore_download_task_num_per_be`
#### `restore_download_snapshot_batch_size`

默认值:3
默认值:10

是否可以动态配置:true

是否为 Master FE 节点独有的配置项:true

恢复过程中,分配给每个 be 的 download 任务最大个数,默认值为 3 个
恢复过程中,一个 download 任务下载的快照数量上限,默认值为10个

#### `max_backup_restore_job_num_per_db`

Expand Down
Loading