nsivabalan commented on code in PR #9523:
URL: https://github.com/apache/hudi/pull/9523#discussion_r1305840348


##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/table/marker/WriteMarkers.java:
##########
@@ -203,11 +203,19 @@ protected Path getMarkerPath(String partitionPath, String 
dataFileName, IOType t
   /**
    * @param context {@code HoodieEngineContext} instance.
    * @param parallelism parallelism for reading the marker files in the 
directory.
-   * @return all the data file paths of write IO type "CREATE" and "MERGE"
+   * @return all the data file or log file paths of write IO type "CREATE" and 
"MERGE"
    * @throws IOException
    */
   public abstract Set<String> createdAndMergedDataPaths(HoodieEngineContext 
context, int parallelism) throws IOException;
 
+  /**
+   * @param context {@code HoodieEngineContext} instance.
+   * @param parallelism parallelism for reading the marker files in the 
directory.
+   * @return all the log file paths of write IO type "APPEND"
+   * @throws IOException
+   */
+  public abstract Set<String> appendedLogPaths(HoodieEngineContext context, 
int parallelism) throws IOException;

Review Comment:
   may be good to name this as 
   getAppendedLogPaths()



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