wuzhanpeng commented on a change in pull request #7111:
URL: https://github.com/apache/pulsar/pull/7111#discussion_r433025228
##########
File path:
managed-ledger/src/main/java/org/apache/bookkeeper/mledger/impl/ManagedLedgerImpl.java
##########
@@ -1391,6 +1392,38 @@ synchronized void ledgerClosed(final LedgerHandle lh) {
}
}
+ synchronized void createLedgerAfterClosed() {
+ STATE_UPDATER.set(this, State.CreatingLedger);
+ this.lastLedgerCreationInitiationTimestamp = System.nanoTime();
+ mbean.startDataLedgerCreateOp();
+ asyncCreateLedger(bookKeeper, config, digestType, this,
Collections.emptyMap());
+ }
+
+ @Override
+ public void rollCurrentLedgerIfFull() {
+ log.info("[{}] Start checking if current ledger is full", name);
+ if (currentLedgerEntries > 0 && currentLedgerIsFull()) {
+ STATE_UPDATER.set(this, State.ClosingLedger);
+ currentLedger.asyncClose(new AsyncCallback.CloseCallback() {
+ @Override
+ public void closeComplete(int rc, LedgerHandle lh, Object o) {
+ checkArgument(currentLedger.getId() == lh.getId(),
"ledgerId %s doesn't match with acked ledgerId %s",
+ currentLedger.getId(),
+ lh.getId());
+
+ if (rc == BKException.Code.OK) {
+ log.debug("Successfuly closed ledger {}", lh.getId());
+ } else {
+ log.warn("Error when closing ledger {}. Status={}",
lh.getId(), BKException.getMessage(rc));
+ }
+
+ ledgerClosed(lh);
+ createLedgerAfterClosed();
Review comment:
Yes in current code logic we can stay in `closed` state until the next
entry comes in, however if we choose for waiting, the last created topic ledger
will be never removed beacause the trimming stratege will not remove the
current ledger. In such scenario, we will maintain a lot of useless data if the
topic is no longer being used. Moreover, it may cause disk problem if we keep a
lot mount of discarded topics in the cluster.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]