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
5 changes: 5 additions & 0 deletions conf/broker.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1360,6 +1360,11 @@ managedLedgerInfoCompressionThresholdInBytes=16384
# corrupted at bookkeeper and managed-cursor is stuck at that ledger.
autoSkipNonRecoverableData=false

# Whether to allow brokers to forcefully load topics by skipping ledger failures to avoid topic unavailability and
# perform auto repairs of the topics.
# It's worth noting that enabling this option means permanently losing data
managedLedgerForceRecovery=false

# Whether to recover cursors lazily when trying to recover a managed ledger backing a persistent topic.
# It can improve write availability of topics.
# The caveat is now when recovered ledger is ready to write we're not sure if all old consumers last mark
Expand Down
5 changes: 5 additions & 0 deletions conf/standalone.conf
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,11 @@ managedLedgerInfoCompressionThresholdInBytes=16384
# corrupted at bookkeeper and managed-cursor is stuck at that ledger.
autoSkipNonRecoverableData=false

# Whether to allow brokers to forcefully load topics by skipping ledger failures to avoid topic unavailability and
# perform auto repairs of the topics.
# It's worth noting that enabling this option means permanently losing data
managedLedgerForceRecovery=false

# operation timeout while updating managed-ledger metadata.
managedLedgerMetadataOperationsTimeoutSeconds=60

Expand Down