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 2023/01/05 08:47:49 UTC

[GitHub] [hudi] SteNicholas opened a new pull request, #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

SteNicholas opened a new pull request, #7611:
URL: https://github.com/apache/hudi/pull/7611

   `AbstractStreamWriteFunction` may get the different pending instant for checkpoint among the subtasks because the `StreamWriteOperatorCoordinator` may be committing the instant of the last completed checkpoint when AbstractStreamWriteFunction invokes snapshotState. `StreamWriteOperatorCoordinator` may not recommit with partial uncommitted write metadata event when handling the last boostrap event which is empty boostrap event.
   
   ### Change Logs
   
   - `StreamWriteOperatorCoordinator#handleBootstrapEvent` gets the inflight instant to initialize for recommit.
   - `CkpMetadata#bootstrap` starts the last pending instant.
   
   ### Impact
   
   _Describe any public API or user-facing feature change or any performance impact._
   
   ### Risk level (write none, low medium or high below)
   
   _If medium or high, explain what verification was done to mitigate the risks._
   
   ### Documentation Update
   
   _Describe any necessary documentation update if there is any new feature, config, or user-facing change_
   
   - _The config description must be updated if new configs are added or the default value of the configs are changed_
   - _Any new feature or user-facing change requires updating the Hudi website. Please create a Jira ticket, attach the
     ticket number here and follow the [instruction](https://hudi.apache.org/contribute/developer-setup#website) to make
     changes to the website._
   
   ### Contributor's checklist
   
   - [ ] Read through [contributor's guide](https://hudi.apache.org/contribute/how-to-contribute)
   - [ ] Change Logs and Impact were stated clearly
   - [ ] Adequate tests were added if applicable
   - [ ] CI passed
   


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


[GitHub] [hudi] leesf merged pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
leesf merged PR #7611:
URL: https://github.com/apache/hudi/pull/7611


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


[GitHub] [hudi] leesf commented on a diff in pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
leesf commented on code in PR #7611:
URL: https://github.com/apache/hudi/pull/7611#discussion_r1062447583


##########
hudi-common/src/main/java/org/apache/hudi/common/table/timeline/TimelineUtils.java:
##########
@@ -246,4 +249,20 @@ public static HoodieCommitMetadata getCommitMetadata(
       return HoodieCommitMetadata.fromBytes(data, HoodieCommitMetadata.class);
     }
   }
+
+  /**
+   * Returns the basic commit timeline. For basic we means 'commit' for COPY_ON_WRITE
+   * and 'delta_commit' for MERGE_ON_READ.
+   */
+  public static HoodieTimeline getBasicCommitTimeline(HoodieTableMetaClient metaClient) {
+    HoodieTableType tableType = metaClient.getTableType();
+    switch (tableType) {
+      case COPY_ON_WRITE:
+        return metaClient.getActiveTimeline().getTimelineOfActions(CollectionUtils.createSet(HoodieTimeline.COMMIT_ACTION));
+      case MERGE_ON_READ:
+        return metaClient.getActiveTimeline().getTimelineOfActions(CollectionUtils.createSet(HoodieTimeline.DELTA_COMMIT_ACTION));

Review Comment:
   For MOR table, the compaction will be converted to commit_action after finished, here we exclude COMMIT_ACTION intentionally ?



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


[GitHub] [hudi] hudi-bot commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1373200741

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116",
       "triggerID" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14117",
       "triggerID" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ac296c702417461cedeef6e8974bd48c767a1b1c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ac296c702417461cedeef6e8974bd48c767a1b1c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14117) 
   * ac296c702417461cedeef6e8974bd48c767a1b1c UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


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


[GitHub] [hudi] leesf commented on a diff in pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
leesf commented on code in PR #7611:
URL: https://github.com/apache/hudi/pull/7611#discussion_r1062445691


##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/sink/meta/CkpMetadata.java:
##########
@@ -96,9 +97,11 @@ public void close() {
    *
    * <p>This expects to be called by the driver.
    */
-  public void bootstrap() throws IOException {
+  public void bootstrap(HoodieTableMetaClient metaClient) throws IOException {
     fs.delete(path, true);
     fs.mkdirs(path);
+    TimelineUtils.getBasicCommitTimeline(metaClient).filterPendingExcludingCompaction()

Review Comment:
   if there are multi flink jobs writing to hudi, the logic here would not solve the problem that one flink job may use other flink job pending instant. However, it would be solved in following PR.



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


[GitHub] [hudi] danny0405 commented on a diff in pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
danny0405 commented on code in PR #7611:
URL: https://github.com/apache/hudi/pull/7611#discussion_r1063037132


##########
hudi-common/src/main/java/org/apache/hudi/common/table/timeline/TimelineUtils.java:
##########
@@ -246,4 +249,20 @@ public static HoodieCommitMetadata getCommitMetadata(
       return HoodieCommitMetadata.fromBytes(data, HoodieCommitMetadata.class);
     }
   }
+
+  /**
+   * Returns the basic commit timeline. For basic we means 'commit' for COPY_ON_WRITE
+   * and 'delta_commit' for MERGE_ON_READ.
+   */
+  public static HoodieTimeline getBasicCommitTimeline(HoodieTableMetaClient metaClient) {
+    HoodieTableType tableType = metaClient.getTableType();
+    switch (tableType) {
+      case COPY_ON_WRITE:
+        return metaClient.getActiveTimeline().getTimelineOfActions(CollectionUtils.createSet(HoodieTimeline.COMMIT_ACTION));
+      case MERGE_ON_READ:
+        return metaClient.getActiveTimeline().getTimelineOfActions(CollectionUtils.createSet(HoodieTimeline.DELTA_COMMIT_ACTION));

Review Comment:
   We should filter pending instants for the caller.



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


[GitHub] [hudi] hudi-bot commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1371940156

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 085767edfc856c1aa3ddec24853294a0d53da157 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


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


[GitHub] [hudi] hudi-bot commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1372014452

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116",
       "triggerID" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 085767edfc856c1aa3ddec24853294a0d53da157 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


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


[GitHub] [hudi] leesf commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
leesf commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1373568277

   Merging as Flink IT passed.


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


[GitHub] [hudi] hudi-bot commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1372276237

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116",
       "triggerID" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14117",
       "triggerID" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14117) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


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


[GitHub] [hudi] danny0405 commented on a diff in pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
danny0405 commented on code in PR #7611:
URL: https://github.com/apache/hudi/pull/7611#discussion_r1063036901


##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/sink/meta/CkpMetadata.java:
##########
@@ -96,9 +97,11 @@ public void close() {
    *
    * <p>This expects to be called by the driver.
    */
-  public void bootstrap() throws IOException {
+  public void bootstrap(HoodieTableMetaClient metaClient) throws IOException {
     fs.delete(path, true);
     fs.mkdirs(path);
+    TimelineUtils.getBasicCommitTimeline(metaClient).filterPendingExcludingCompaction()

Review Comment:
   Yeah, we should use different `CkpMetadata` for different jobs, and we may not clean the metadata at all. Or a better solution is just to keep the old `CkpMetadata` messages. There is no need to clean it actually.



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


[GitHub] [hudi] SteNicholas commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
SteNicholas commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1373198127

   @danny0405, @leesf, thanks for detailed review. I have reomoved the changes of the `CkpMetadata` and will create another pull request for the `CkpMetadata`. This pull request is mainly solved the recommit problem. PTAL.


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


[GitHub] [hudi] hudi-bot commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1373551193

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116",
       "triggerID" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14117",
       "triggerID" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ac296c702417461cedeef6e8974bd48c767a1b1c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14136",
       "triggerID" : "ac296c702417461cedeef6e8974bd48c767a1b1c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ac296c702417461cedeef6e8974bd48c767a1b1c Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14136) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


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


[GitHub] [hudi] hudi-bot commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1372028678

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116",
       "triggerID" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14117",
       "triggerID" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 085767edfc856c1aa3ddec24853294a0d53da157 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116) 
   * cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14117) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


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


[GitHub] [hudi] hudi-bot commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1372021686

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116",
       "triggerID" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 085767edfc856c1aa3ddec24853294a0d53da157 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116) 
   * cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


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


[GitHub] [hudi] hudi-bot commented on pull request #7611: [HUDI-5506] StreamWriteOperatorCoordinator may not recommit with partial uncommitted write metadata event

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #7611:
URL: https://github.com/apache/hudi/pull/7611#issuecomment-1373290153

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14116",
       "triggerID" : "085767edfc856c1aa3ddec24853294a0d53da157",
       "triggerType" : "PUSH"
     }, {
       "hash" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14117",
       "triggerID" : "cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ac296c702417461cedeef6e8974bd48c767a1b1c",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14136",
       "triggerID" : "ac296c702417461cedeef6e8974bd48c767a1b1c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * cc3c0fcc21b11c36d9ae043df5e7a34f6d95cc2b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14117) 
   * ac296c702417461cedeef6e8974bd48c767a1b1c Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=14136) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


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