We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f691b4 commit da0b527Copy full SHA for da0b527
fluss-client/src/main/java/com/alibaba/fluss/client/table/scanner/log/LogFetcher.java
@@ -272,6 +272,10 @@ private void invalidTableOrPartitions(TableOrPartitions tableOrPartitions) {
272
private void handleFetchLogException(
273
int destination, TableOrPartitions tableOrPartitionsInFetchRequest, Throwable e) {
274
try {
275
+ if (isClosed) {
276
+ return;
277
+ }
278
+
279
LOG.error("Failed to fetch log from node {}", destination, e);
280
// if is invalid metadata exception, we need to clear table bucket meta
281
// to enable another round of log fetch to request new medata
0 commit comments