KiteSoar commented on code in PR #17661:
URL: https://github.com/apache/hudi/pull/17661#discussion_r2649150853


##########
hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/hive/HoodieCombineHiveInputFormat.java:
##########
@@ -392,7 +393,9 @@ public InputSplit[] getSplits(JobConf job, int numSplits) 
throws IOException {
       Arrays.stream(paths).forEach(path -> {
         final HoodieStorage storage;
         try {
-          storage = new HoodieHadoopStorage(path.getFileSystem(job));
+          FileSystem fs = path.getFileSystem(job);
+          storage = HoodieStorageUtils.getStorage(
+              HadoopFSUtils.getStorageConf(fs.getConf()), new Class<?>[] 
{FileSystem.class}, fs);

Review Comment:
   done



-- 
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]

Reply via email to