DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
This KIP introduces:
(1) one new topic configuration item: remote.copy.lazy.enable
BTW: topic's remote storage feature already had some others configure items such as remote.log.delete.on.disable, remote.log.copy.disable, etc.
Considering that if we need to keep the same style. the configure name shoud be remote.log.copy.lazy.enable. thus. the broker configure will be log.remote.log.copy.lazy.enable so that it look strange. So decide to use this name.
| Code Block | ||||
|---|---|---|---|---|
| ||||
public static final String REMOTE_COPY_LAZY_ENABLE_CONFIG = "remote.copy.lazy.enable";
public static final String REMOTE_COPY_LAZY_ENABLE_DOC = "Determines whether to delay uploading segments to remote storage. " +
"When set to false (default), all non-active segments will be uploaded immediately without checking local retention constraints. " +
"When set to true, segments within local retention will not be uploaded, the upload is delayed until they expire.";
|
...