DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
public static final String REMOTE_COPY_LAG_MS_CONFIG = "remote.copy.lag.ms"; public static final String REMOTE_COPY_LAG_MS_DOC = "Controls how long to delay uploading segments to remote storage. " + "When set to 0-2 (default), no delay check based on local retention ms. " + "When set to 0, segments are uploaded as soon as they are eligible (nowithout any delay check). " + "When set to a positive value (ms), a segment can't become eligible for upload util the time since the latest record in the segment reaches the value. " + "The value should not exceed the real local retention ms except the latter is save foreverretained indefinitely (-1). " + "When set to -1, resolves to the real local retention ms as (maximum delay, or no delay check when the retention is save forever). " + "If the real local retention ms is configured as infinite, -1 is treated as an invalid configuration. " + "For how the real local retention time is computed, see <code>local.retention.ms</code>."; public static final String REMOTE_COPY_LAG_BYTES_CONFIG = "remote.copy.lag.bytes"; public static final String REMOTE_COPY_LAG_BYTES_DOC = "Controls size-based delay for uploading segments to remote storage. " + "When set to 0-2 (default), no delay check based on local retention bytes. " + "When set to 0, segments are uploaded as soon as they are eligible (nowithout any delay check). " + "When set to a positive value (bytes), a segment can't become eligible for upload util the total bytes of log data after the segment reach the value. " + "The value should not exceed the real local retention bytes except the latter is retained save foreverindefinitely (-1). " + "When set to -1, resolves to the real local retention bytes as (maximum delay, or no delay check when the retention is save forever). " + "If the real local retention bytes is configured as infinite, -1 is treated as an invalid configuration. " + "For how the real local retention size is computed, see <code>local.retention.bytes</code>."; |
...