You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2022/01/14 04:59:35 UTC

[GitHub] [hudi] codope commented on a change in pull request #4515: [HUDI-3158] Reduce warn logs in Spark SQL INSERT OVERWRITE

codope commented on a change in pull request #4515:
URL: https://github.com/apache/hudi/pull/4515#discussion_r784507846



##########
File path: hudi-common/src/main/java/org/apache/hudi/common/table/timeline/HoodieActiveTimeline.java
##########
@@ -156,6 +157,18 @@ public void createNewInstant(HoodieInstant instant) {
     createFileInMetaPath(instant.getFileName(), Option.empty(), false);
   }
 
+  public void createRequestedReplaceCommit(String instantTime, String actionType) {
+    try {
+      HoodieInstant instant = new HoodieInstant(State.REQUESTED, actionType, instantTime);
+      LOG.info("Creating a new instant " + instant);

Review comment:
       Is this info log necessary?




-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org