Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ public enum CustomParameterType {
SEGMENT_INDEX_BYTES("segment.index.bytes"),
SEGMENT_JITTER_MS("segment.jitter.ms"),
SEGMENT_MS("segment.ms"),
UNCLEAN_LEADER_ELECTION_ENABLE("unclean.leader.election.enable");
UNCLEAN_LEADER_ELECTION_ENABLE("unclean.leader.election.enable"),
REMOTE_STORAGE_ENABLE("remote.storage.enable"),
LOCAL_RETENTION_MS("local.retention.ms"),
LOCAL_RETENTION_BYTES("local.retention.bytes");

private final String optionValue;

Expand Down
3 changes: 3 additions & 0 deletions kafka-ui-react-app/src/lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ export const TOPIC_CUSTOM_PARAMS: Record<string, string> = {
'segment.ms': '604800000',
'message.timestamp.difference.max.ms': '9223372036854775807',
'segment.index.bytes': '10485760',
'remote.storage.enable': 'true',
'local.retention.ms': '',
'local.retention.bytes': '',
};

export const MILLISECONDS_IN_WEEK = 604_800_000;
Expand Down