提交 49f03b80 编写于 作者: F fjy

fix default value for max segments to merge

上级 cd78b916
......@@ -53,7 +53,7 @@ Issuing a GET request at the same URL will return the spec that is currently in
|--------|-----------|-------|
|`millisToWaitBeforeDeleting`|How long does the coordinator need to be active before it can start deleting segments.|90000 (15 mins)|
|`mergeBytesLimit`|The maximum number of bytes to merge (for segments).|100000000L|
|`mergeSegmentsLimit`|The maximum number of segments that can be in a single merge [task](Tasks.html).|Integer.MAX_VALUE|
|`mergeSegmentsLimit`|The maximum number of segments that can be in a single merge [task](Tasks.html).|100|
|`maxSegmentsToMove`|The maximum number of segments that can be moved at any given time.|5|
|`replicantLifetime`|The maximum number of coordinator runs for a segment to be replicated before we start alerting.|15|
|`replicationThrottleLimit`|The maximum number of segments that can be replicated at one time.|10|
......
......@@ -120,7 +120,7 @@ public class CoordinatorDynamicConfig
public Builder()
{
this(15 * 60 * 1000L, 100000000L, Integer.MAX_VALUE, 5, 15, 10, 1, false);
this(15 * 60 * 1000L, 100000000L, 100, 5, 15, 10, 1, false);
}
private Builder(
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册