stevenzwu commented on issue #5803:
URL: https://github.com/apache/iceberg/issues/5803#issuecomment-1252518941
@zixiao144 maybe a dumb question. is there any snapshots after the
startSnapshotId?
also can you enable DEBUG level logging for `StreamingMonitorFunction`
class? then we can see the split discovery logs. e.g.
```
LOG.debug(
"Start discovering splits from {} (exclusive) to {} (inclusive)",
lastSnapshotId,
snapshotId);
long start = System.currentTimeMillis();
FlinkInputSplit[] splits =
FlinkSplitPlanner.planInputSplits(table, newScanContext,
workerPool);
LOG.debug(
"Discovered {} splits, time elapsed {}ms",
splits.length,
System.currentTimeMillis() - start);
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]