1
0

[HUDI-2864] Fix README and scripts with current limitations of hive sync (#4129)

* Fix README with current limitations of hive sync

* Fix README with current limitations of hive sync

* Fix dep issue

* Fix Copy on Write flow

Co-authored-by: Rajesh Mahindra <rmahindra@Rajeshs-MacBook-Pro.local>
This commit is contained in:
rmahindra123
2021-11-26 15:09:32 -08:00
committed by GitHub
parent 8402cac407
commit 9028e6e1e4
8 changed files with 128 additions and 91 deletions

View File

@@ -18,17 +18,17 @@
package org.apache.hudi.table;
import java.util.Properties;
import org.apache.hudi.common.config.TypedProperties;
public abstract class FileIdPrefixProvider {
private final Properties props;
private final TypedProperties props;
public FileIdPrefixProvider(Properties props) {
public FileIdPrefixProvider(TypedProperties props) {
this.props = props;
}
public Properties getProps() {
public TypedProperties getProps() {
return props;
}

View File

@@ -18,13 +18,12 @@
package org.apache.hudi.table;
import org.apache.hudi.common.config.TypedProperties;
import org.apache.hudi.common.fs.FSUtils;
import java.util.Properties;
public class RandomFileIdPrefixProvider extends FileIdPrefixProvider {
public RandomFileIdPrefixProvider(Properties props) {
public RandomFileIdPrefixProvider(TypedProperties props) {
super(props);
}