Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ public List<TieringSplit> generateTableSplits(TableInfo tableInfo) throws Except
LakeSnapshot lakeSnapshotInfo;
try {
lakeSnapshotInfo = flussAdmin.getLatestLakeSnapshot(tableInfo.getTablePath()).get();
LOG.info("Last committed lake table snapshot info is:{}", lakeSnapshotInfo);
LOG.info(
"Last committed lake table snapshot: snapshotId={}, numBucketOffsets={}",
lakeSnapshotInfo.getSnapshotId(),
lakeSnapshotInfo.getTableBucketsOffset().size());
LOG.debug("Last committed lake table snapshot detail: {}", lakeSnapshotInfo);
} catch (Exception e) {
Throwable t = ExceptionUtils.stripExecutionException(e);
if (t instanceof LakeTableSnapshotNotExistException) {
Expand Down
Loading