[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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user