Skip to content

Commit

Permalink
Add better logging for indexer (#751)
Browse files Browse the repository at this point in the history
Co-authored-by: Bryan Burkholder <[email protected]>
  • Loading branch information
bryanlb and bryanlb authored Jan 22, 2024
1 parent fff30bb commit baa7262
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion kaldb/src/main/java/com/slack/kaldb/server/KaldbIndexer.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ private long indexerPreStart() throws Exception {
// Close these stores since we don't need them after preStart.
snapshotMetadataStore.close();
recoveryTaskMetadataStore.close();
LOG.info("Completed Kaldb indexer pre start.");
LOG.info(
"Completed Kaldb indexer pre start - currentEndOffsetForPartition {}, currentBeginningOffsetForPartition {}, startOffset {}",
currentEndOffsetForPartition,
currentBeginningOffsetForPartition,
startOffset);

return startOffset;
}
Expand Down

0 comments on commit baa7262

Please sign in to comment.