jonvex commented on code in PR #11171:
URL: https://github.com/apache/hudi/pull/11171#discussion_r1596185798
##########
hudi-hadoop-common/src/main/java/org/apache/hudi/io/storage/HoodieHBaseAvroHFileReader.java:
##########
@@ -95,16 +96,29 @@ public HoodieHBaseAvroHFileReader(StorageConfiguration<?>
storageConf, StoragePa
this(path, HoodieStorageUtils.getStorage(path, storageConf), storageConf,
cacheConfig, Option.empty());
}
+ public HoodieHBaseAvroHFileReader(StorageConfiguration<?> storageConf,
StoragePath path, Option<Schema> schemaOpt) throws IOException {
+ this(storageConf, path, new
CacheConfig(storageConf.unwrapAs(Configuration.class)), new
HoodieHadoopStorage(path, storageConf), schemaOpt);
+ }
+
public HoodieHBaseAvroHFileReader(StorageConfiguration<?> storageConf,
StoragePath path, CacheConfig cacheConfig,
HoodieStorage storage, Option<Schema>
schemaOpt) throws IOException {
this(path, storage, storageConf, cacheConfig, schemaOpt);
}
+ public HoodieHBaseAvroHFileReader(StorageConfiguration<?> storageConf,
StoragePath path, HoodieStorage storage,
Review Comment:
reduced
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]