docs: add maxScheduleCount to scheduler config (#34)
Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
parent
03ea3bfd01
commit
0e2293758c
|
@ -56,6 +56,9 @@ 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
|
||||
# Retry scheduling limit times.
|
||||
|
|
|
@ -52,6 +52,8 @@ scheduler:
|
|||
algorithm: default
|
||||
# 单个任务允许客户端回源的数量。
|
||||
backToSourceCount: 3
|
||||
# 单个任务最大调度次数,如果超过最大调度次数会通知其回源。
|
||||
maxScheduleCount: 30
|
||||
# 调度回源重试次数限制。
|
||||
retryBackToSourceLimit: 5
|
||||
# 调度重试次数限制。
|
||||
|
|
Loading…
Reference in New Issue