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

docs: remove maxScheduleCount in scheduler configuration #47

Merged
merged 1 commit into from
Jan 8, 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
9 changes: 3 additions & 6 deletions docs/reference/configuration/scheduler.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,12 @@ scheduler:
algorithm: default
# backToSourceCount is single task allows the peer to back-to-source count.
backToSourceCount: 3
# maxScheduleCount is max schedule count. If scheduling exceeds the maxScheduleCount,
# scheduler will notify peer back-to-source.
maxScheduleCount: 30
# retryBackToSourceLimit reaches the limit, then the peer back-to-source.
retryBackToSourceLimit: 5
retryBackToSourceLimit: 30
# Retry scheduling limit times.
retryLimit: 10
retryLimit: 40
# Retry scheduling interval.
retryInterval: 50ms
retryInterval: 100ms
# GC metadata configuration.
gc:
# pieceDownloadTimeout is the timeout of downloading piece.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,12 @@ scheduler:
algorithm: default
# 单个任务允许客户端回源的数量。
backToSourceCount: 3
# 单个任务最大调度次数,如果超过最大调度次数会通知其回源。
maxScheduleCount: 30
# 调度回源重试次数限制。
retryBackToSourceLimit: 5
retryBackToSourceLimit: 30
# 调度重试次数限制。
retryLimit: 10
retryLimit: 40
# 调度重试时间间隔。
retryInterval: 50ms
retryInterval: 100ms
# 数据回收策略。
gc:
# 单个 Piece 下载超时时间。
Expand Down