This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new ca47334ad5 [common] Release the input stream when FileIndexPredicate
fails to open it (#9462)
ca47334ad5 is described below
commit ca47334ad54b5edc8ee116255f9f1c81c6e16cda
Author: ZIHAN DAI <[email protected]>
AuthorDate: Sat Aug 29 22:54:10 2026 +1000
[common] Release the input stream when FileIndexPredicate fails to open it
(#9462)
---
.../paimon/fileindex/FileIndexPredicate.java | 10 ++-
.../fileindex/FileIndexPredicateCloseTest.java | 86 ++++++++++++++++++++++
2 files changed, 95 insertions(+), 1 deletion(-)
diff --git
a/paimon-common/src/main/java/org/apache/paimon/fileindex/FileIndexPredicate.java
b/paimon-common/src/main/java/org/apache/paimon/fileindex/FileIndexPredicate.java
index 1cd4a8b01c..829b2ecd9f 100644
---
a/paimon-common/src/main/java/org/apache/paimon/fileindex/FileIndexPredicate.java
+++
b/paimon-common/src/main/java/org/apache/paimon/fileindex/FileIndexPredicate.java
@@ -32,6 +32,7 @@ import org.apache.paimon.predicate.PredicateVisitor;
import org.apache.paimon.predicate.SortValue;
import org.apache.paimon.predicate.TopN;
import org.apache.paimon.types.RowType;
+import org.apache.paimon.utils.IOUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -68,7 +69,14 @@ public class FileIndexPredicate implements Closeable {
}
public FileIndexPredicate(SeekableInputStream inputStream, RowType
fileRowType) {
- this.reader = FileIndexFormat.createReader(inputStream, fileRowType);
+ try {
+ this.reader = FileIndexFormat.createReader(inputStream,
fileRowType);
+ } catch (RuntimeException e) {
+ // nothing else holds a reference to inputStream yet, so this is
the only chance to
+ // release it: createReader rejects a file whose magic or version
does not match.
+ IOUtils.closeQuietly(inputStream);
+ throw e;
+ }
}
public FileIndexResult evaluate(@Nullable Predicate predicate) {
diff --git
a/paimon-common/src/test/java/org/apache/paimon/fileindex/FileIndexPredicateCloseTest.java
b/paimon-common/src/test/java/org/apache/paimon/fileindex/FileIndexPredicateCloseTest.java
new file mode 100644
index 0000000000..98b6cf9370
--- /dev/null
+++
b/paimon-common/src/test/java/org/apache/paimon/fileindex/FileIndexPredicateCloseTest.java
@@ -0,0 +1,86 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.paimon.fileindex;
+
+import org.apache.paimon.fs.ByteArraySeekableStream;
+import org.apache.paimon.fs.SeekableInputStream;
+import org.apache.paimon.types.DataTypes;
+import org.apache.paimon.types.RowType;
+
+import org.junit.jupiter.api.Test;
+
+import java.io.IOException;
+import java.util.concurrent.atomic.AtomicInteger;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+/** Tests that {@link FileIndexPredicate} always releases the stream it is
handed. */
+public class FileIndexPredicateCloseTest {
+
+ private static final RowType ROW_TYPE = RowType.of(DataTypes.INT());
+
+ /**
+ * The reader rejects a file whose magic does not match, and at that point
nothing else holds a
+ * reference to the stream, so the constructor has to release it itself.
+ */
+ @Test
+ public void testFailedConstructionReleasesTheStream() {
+ AtomicInteger closed = new AtomicInteger();
+ byte[] notAnIndexFile = new byte[64];
+
+ assertThatThrownBy(() -> new
FileIndexPredicate(tracking(notAnIndexFile, closed), ROW_TYPE))
+ .isInstanceOf(RuntimeException.class)
+ .hasMessageContaining("not file index file");
+
+ assertThat(closed).hasValue(1);
+ }
+
+ private static SeekableInputStream tracking(byte[] bytes, AtomicInteger
closed) {
+ ByteArraySeekableStream delegate = new ByteArraySeekableStream(bytes);
+ return new SeekableInputStream() {
+
+ @Override
+ public void seek(long desired) throws IOException {
+ delegate.seek(desired);
+ }
+
+ @Override
+ public long getPos() throws IOException {
+ return delegate.getPos();
+ }
+
+ @Override
+ public int read() throws IOException {
+ return delegate.read();
+ }
+
+ @Override
+ public int read(byte[] b, int off, int len) throws IOException {
+ return delegate.read(b, off, len);
+ }
+
+ @Override
+ public void close() throws IOException {
+ closed.incrementAndGet();
+ delegate.close();
+ }
+ };
+ }
+}