-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HUDI-4126] Disable file splits for Bootstrap real time queries (via …
…InputFormat) (#6219) Co-authored-by: Udit Mehrotra <[email protected]> Co-authored-by: Raymond Xu <[email protected]>
- Loading branch information
1 parent
cdaec5a
commit 51599af
Showing
3 changed files
with
129 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...hadoop-mr/src/test/java/org/apache/hudi/hadoop/TestHoodieCopyOnWriteTableInputFormat.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* 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.hudi.hadoop; | ||
|
||
import org.apache.hadoop.conf.Configuration; | ||
import org.apache.hadoop.fs.FileSystem; | ||
import org.apache.hadoop.fs.Path; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.io.TempDir; | ||
|
||
import java.io.IOException; | ||
import java.net.URI; | ||
import java.nio.file.Files; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertFalse; | ||
|
||
public class TestHoodieCopyOnWriteTableInputFormat { | ||
|
||
@TempDir | ||
java.nio.file.Path tempDir; | ||
private FileSystem fs; | ||
|
||
@BeforeEach | ||
void setUp() throws IOException { | ||
fs = FileSystem.get(tempDir.toUri(), new Configuration()); | ||
} | ||
|
||
@AfterEach | ||
void tearDown() throws IOException { | ||
fs.close(); | ||
} | ||
|
||
@Test | ||
void pathNotSplitableForBootstrapScenario() throws IOException { | ||
URI source = Files.createTempFile(tempDir, "source", ".parquet").toUri(); | ||
URI target = Files.createTempFile(tempDir, "target", ".parquet").toUri(); | ||
PathWithBootstrapFileStatus path = new PathWithBootstrapFileStatus(new Path(target), fs.getFileStatus(new Path(source))); | ||
HoodieCopyOnWriteTableInputFormat cowInputFormat = new HoodieCopyOnWriteTableInputFormat(); | ||
assertFalse(cowInputFormat.isSplitable(fs, path), "Path for bootstrap should not be splitable."); | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
.../src/test/java/org/apache/hudi/hadoop/realtime/TestHoodieMergeOnReadTableInputFormat.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* 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.hudi.hadoop.realtime; | ||
|
||
import org.apache.hudi.common.util.Option; | ||
import org.apache.hudi.hadoop.PathWithBootstrapFileStatus; | ||
|
||
import org.apache.hadoop.conf.Configuration; | ||
import org.apache.hadoop.fs.FileSystem; | ||
import org.apache.hadoop.fs.Path; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.io.TempDir; | ||
|
||
import java.io.IOException; | ||
import java.net.URI; | ||
import java.nio.file.Files; | ||
import java.util.Collections; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertFalse; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
public class TestHoodieMergeOnReadTableInputFormat { | ||
|
||
@TempDir | ||
java.nio.file.Path tempDir; | ||
private FileSystem fs; | ||
|
||
@BeforeEach | ||
void setUp() throws IOException { | ||
fs = FileSystem.get(tempDir.toUri(), new Configuration()); | ||
} | ||
|
||
@AfterEach | ||
void tearDown() throws IOException { | ||
fs.close(); | ||
} | ||
|
||
@Test | ||
void pathNotSplitableForBootstrapScenario() throws IOException { | ||
URI source = Files.createTempFile(tempDir, "source", ".parquet").toUri(); | ||
URI target = Files.createTempFile(tempDir, "target", ".parquet").toUri(); | ||
HoodieRealtimePath rtPath = new HoodieRealtimePath(new Path("foo"), "bar", target.toString(), Collections.emptyList(), "000", false, Option.empty()); | ||
assertTrue(new HoodieMergeOnReadTableInputFormat().isSplitable(fs, rtPath)); | ||
|
||
PathWithBootstrapFileStatus path = new PathWithBootstrapFileStatus(new Path(target), fs.getFileStatus(new Path(source))); | ||
rtPath.setPathWithBootstrapFileStatus(path); | ||
assertFalse(new HoodieMergeOnReadTableInputFormat().isSplitable(fs, rtPath), "Path for bootstrap should not be splitable."); | ||
} | ||
} |