Skip to content

Commit

Permalink
[HUDI-4126] Disable file splits for Bootstrap real time queries (via …
Browse files Browse the repository at this point in the history
…InputFormat) (#6219)


Co-authored-by: Udit Mehrotra <[email protected]>
Co-authored-by: Raymond Xu <[email protected]>
  • Loading branch information
3 people authored Jul 27, 2022
1 parent cdaec5a commit 51599af
Show file tree
Hide file tree
Showing 3 changed files with 129 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public boolean getBelongsToIncrementalQuery() {
}

public boolean isSplitable() {
return !toString().isEmpty();
return !toString().isEmpty() && !includeBootstrapFilePath();
}

public PathWithBootstrapFileStatus getPathWithBootstrapFileStatus() {
Expand Down
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.");
}
}
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.");
}
}

0 comments on commit 51599af

Please sign in to comment.