Skip to content
Merged
Changes from 3 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 @@ -195,7 +195,10 @@ private void generateSnapshotCheckpoint(HttpServletRequest request,
.filter(s -> s.endsWith(ROCKSDB_SST_SUFFIX))
.distinct()
.collect(Collectors.toList()));
LOG.info("Received excluding SST {}", receivedSstList);
if (LOG.isDebugEnabled()) {
LOG.debug("Received excluding SST {}. The total excluded sst files count is {}",
receivedSstList.subList(0, Math.min(5, receivedSstList.size())), receivedSstList.size());
}
Comment thread
sadanand48 marked this conversation as resolved.
Outdated
}

Path tmpdir = null;
Expand Down Expand Up @@ -229,9 +232,10 @@ private void generateSnapshotCheckpoint(HttpServletRequest request,
long duration = Duration.between(start, end).toMillis();
LOG.info("Time taken to write the checkpoint to response output " +
"stream: {} milliseconds", duration);

LOG.info("Excluded SST {} from the latest checkpoint.",
excludedSstList);
if (LOG.isDebugEnabled()) {
LOG.debug("Excluded SST {} from the latest checkpoint. The total excluded sst files count is {}",
excludedSstList.subList(0, Math.min(5, excludedSstList.size())), excludedSstList.size());
}
Comment thread
sadanand48 marked this conversation as resolved.
Outdated
if (!excludedSstList.isEmpty()) {
dbMetrics.incNumIncrementalCheckpoint();
}
Expand Down