Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
askwang committed Sep 14, 2024
1 parent 2c45ac0 commit cadc311
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ private void compactAwareBucketTable(
.collect(Collectors.toList());

if (partitionBuckets.isEmpty()) {
LOG.info("Partition bucket is empty, no compact job to execute.");
return;
}

Expand Down Expand Up @@ -360,7 +361,7 @@ private void compactUnAwareBucketTable(
.collect(Collectors.toList());
}
if (compactionTasks.isEmpty()) {
System.out.println("compaction task is empty.");
LOG.info("Task plan is empty, no compact job to execute.");
return;
}

Expand Down

0 comments on commit cadc311

Please sign in to comment.