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 4e69d37 commit 0f1b4dfCopy full SHA for 0f1b4df
paimon-core/src/main/java/org/apache/paimon/mergetree/lookup/RemoteLookupFileManager.java
@@ -75,7 +75,7 @@ public DataFileMeta genRemoteLookupFile(DataFileMeta file) throws IOException {
75
String remoteSstName = lookupLevels.newRemoteSst(file, length);
76
Path sstFile = remoteSstPath(file, remoteSstName);
77
try (FileInputStream is = new FileInputStream(lookupFile.localFile());
78
- PositionOutputStream os = fileIO.newOutputStream(sstFile, false)) {
+ PositionOutputStream os = fileIO.newOutputStream(sstFile, true)) {
79
IOUtils.copy(is, os);
80
} catch (IOException e) {
81
throw new RuntimeException(e);
0 commit comments