n3nash commented on a change in pull request #2542:
URL: https://github.com/apache/hudi/pull/2542#discussion_r645798650



##########
File path: 
hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/InputPathHandler.java
##########
@@ -50,20 +59,22 @@
   private final Map<HoodieTableMetaClient, List<Path>> groupedIncrementalPaths;
   private final List<Path> snapshotPaths;
   private final List<Path> nonHoodieInputPaths;
+  private final JobConf jobConf;
 
-  public InputPathHandler(Configuration conf, Path[] inputPaths, List<String> 
incrementalTables) throws IOException {
+  public InputPathHandler(Configuration conf, Path[] inputPaths, List<String> 
incrementalTables, JobConf jobConf) throws IOException {
     this.conf = conf;
     tableMetaClientMap = new HashMap<>();
     snapshotPaths = new ArrayList<>();
     nonHoodieInputPaths = new ArrayList<>();
     groupedIncrementalPaths = new HashMap<>();
+    this.jobConf = jobConf;
     parseInputPaths(inputPaths, incrementalTables);
   }
 
   /**
    * Takes in the original InputPaths and classifies each of them into 
incremental, snapshot and
    * non-hoodie InputPaths. The logic is as follows:
-   *
+   *TestGloballyConsistentTimeStampFilteringInputFormat.java

Review comment:
       Can we make this java doc friendly please ? {@link <name of class>}




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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to