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/06/21 02:59:18 UTC

[GitHub] [hudi] LinMingQiang opened a new pull request, #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   …mit refresh is enabled
   
   Signed-off-by: LinMingQiang <13...@qq.com>
   
   ## *Tips*
   - *Thank you very much for contributing to Apache Hudi.*
   - *Please review https://hudi.apache.org/contribute/how-to-contribute before opening a pull request.*
   
   ## What is the purpose of the pull request
   
   *(For example: This pull request adds quick-start document.)*
   
   ## Brief change log
   
   *(for example:)*
     - *Modify AnnotationLocation checkstyle rule in checkstyle.xml*
   
   ## Verify this pull request
   
   *(Please pick either of the following options)*
   
   This pull request is a trivial rework / code cleanup without any test coverage.
   
   *(or)*
   
   This pull request is already covered by existing tests, such as *(please describe tests)*.
   
   (or)
   
   This change added tests and can be verified as follows:
   
   *(example:)*
   
     - *Added integration tests for end-to-end.*
     - *Added HoodieClientWriteTest to verify the change.*
     - *Manually verified the change by running a job locally.*
   
   ## Committer checklist
   
    - [ ] Has a corresponding JIRA in PR title & commit
    
    - [ ] Commit message is descriptive of the change
    
    - [ ] CI is green
   
    - [ ] Necessary doc changes done or have another open PR
          
    - [ ] For large changes, please consider breaking it into sub-tasks under an umbrella JIRA.
   


-- 
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] nsivabalan commented on a diff in pull request #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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


##########
hudi-timeline-service/src/main/java/org/apache/hudi/timeline/service/RequestHandler.java:
##########
@@ -138,14 +137,31 @@ private boolean isLocalViewBehind(Context ctx) {
     String localTimelineHash = localTimeline.getTimelineHash();
     // refresh if timeline hash mismatches and if local's last known instant < client's last known instant (if config is enabled)
     if (!localTimelineHash.equals(timelineHashFromClient)
-        && (!timelineServiceConfig.refreshTimelineBasedOnLatestCommit || HoodieTimeline.compareTimestamps(localLastKnownInstant, HoodieTimeline.LESSER_THAN, lastKnownInstantFromClient))) {
+        && (!timelineServiceConfig.refreshTimelineBasedOnLatestCommit
+            || localTimelineBehind(localTimeline, lastKnownInstantFromClient, numInstantsFromClient))) {
       return true;
     }
 
     // As a safety check, even if hash is same, ensure instant is present
     return !localTimeline.containsOrBeforeTimelineStarts(lastKnownInstantFromClient);
   }
 
+  private static boolean localTimelineBehind(HoodieTimeline localTimeline, String lastKnownInstantFromClient, String numInstantsFromClient) {
+    String localLastKnownInstant = localTimeline.lastInstant().isPresent() ? localTimeline.lastInstant().get().getTimestamp()
+        : HoodieTimeline.INVALID_INSTANT_TS;
+    // Why comparing the num commits ?
+    // Assumes there are 4 commits on the timeline:
+    // timestamp(action): ts_0(commit), ts_1(commit), ts_2(clean), ts_3(commit)
+    // when ts_1 is in INFLIGHT state, ts_2 clean action is already finished,
+    // after ts_1 triggers #sync, the local timeline is refreshed as [ts_0, ts_2],
+    // when ts_1 switches state from INFLIGHT to COMPLETED, no #sync triggers.
+    // at ts_3, when the fs view snapshot is requested, the ts_3 client timeline should be [ts_0, ts_1, ts_2],
+    // if we only compare the latest commit, the local timeline is NOT behind, but the fs view is not complete
+    // because ts_1 is lost.
+    return HoodieTimeline.compareTimestamps(localLastKnownInstant, HoodieTimeline.LESSER_THAN, lastKnownInstantFromClient)
+        || localTimeline.countInstants() < Integer.parseInt(numInstantsFromClient);

Review Comment:
   should we check just "<" or "!=" to catch any mismatch ? 



-- 
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 closed pull request #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

Posted by GitBox <gi...@apache.org>.
danny0405 closed pull request #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…
URL: https://github.com/apache/hudi/pull/5917


-- 
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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f8b58b8aeda4df524bab4f131758efcda32de9d0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413) 
   
   <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 pull request #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   The failed case is flaky, which is not caused by this patch, so i would merge it then.
   Link of the track issue: https://issues.apache.org/jira/browse/HUDI-4291


-- 
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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f8b58b8aeda4df524bab4f131758efcda32de9d0 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] danny0405 commented on pull request #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   @hudi-bot run azure


-- 
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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "1161296167",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "1161455932",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "1161668959",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f8b58b8aeda4df524bab4f131758efcda32de9d0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413) 
   
   <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 pull request #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   @hudi-bot run azure


-- 
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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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


##########
hudi-timeline-service/src/main/java/org/apache/hudi/timeline/service/RequestHandler.java:
##########
@@ -138,14 +137,31 @@ private boolean isLocalViewBehind(Context ctx) {
     String localTimelineHash = localTimeline.getTimelineHash();
     // refresh if timeline hash mismatches and if local's last known instant < client's last known instant (if config is enabled)
     if (!localTimelineHash.equals(timelineHashFromClient)
-        && (!timelineServiceConfig.refreshTimelineBasedOnLatestCommit || HoodieTimeline.compareTimestamps(localLastKnownInstant, HoodieTimeline.LESSER_THAN, lastKnownInstantFromClient))) {
+        && (!timelineServiceConfig.refreshTimelineBasedOnLatestCommit
+            || localTimelineBehind(localTimeline, lastKnownInstantFromClient, numInstantsFromClient))) {
       return true;
     }
 
     // As a safety check, even if hash is same, ensure instant is present
     return !localTimeline.containsOrBeforeTimelineStarts(lastKnownInstantFromClient);
   }
 
+  private static boolean localTimelineBehind(HoodieTimeline localTimeline, String lastKnownInstantFromClient, String numInstantsFromClient) {
+    String localLastKnownInstant = localTimeline.lastInstant().isPresent() ? localTimeline.lastInstant().get().getTimestamp()
+        : HoodieTimeline.INVALID_INSTANT_TS;
+    // Why comparing the num commits ?
+    // Assumes there are 4 commits on the timeline:
+    // timestamp(action): ts_0(commit), ts_1(commit), ts_2(clean), ts_3(commit)
+    // when ts_1 is in INFLIGHT state, ts_2 clean action is already finished,
+    // after ts_1 triggers #sync, the local timeline is refreshed as [ts_0, ts_2],
+    // when ts_1 switches state from INFLIGHT to COMPLETED, no #sync triggers.
+    // at ts_3, when the fs view snapshot is requested, the ts_3 client timeline should be [ts_0, ts_1, ts_2],
+    // if we only compare the latest commit, the local timeline is NOT behind, but the fs view is not complete
+    // because ts_1 is lost.
+    return HoodieTimeline.compareTimestamps(localLastKnownInstant, HoodieTimeline.LESSER_THAN, lastKnownInstantFromClient)
+        || localTimeline.countInstants() < Integer.parseInt(numInstantsFromClient);

Review Comment:
   We can i guess, but keeping
   
   `HoodieTimeline.compareTimestamps(localLastKnownInstant, HoodieTimeline.LESSER_THAN, lastKnownInstantFromClient)`
   
   as a fast check is fine i think.



-- 
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 pull request #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   @hudi-bot run azure


-- 
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 merged pull request #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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


-- 
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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "1161296167",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "1161455932",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f8b58b8aeda4df524bab4f131758efcda32de9d0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413) 
   
   <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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "1161296167",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1161455932",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f8b58b8aeda4df524bab4f131758efcda32de9d0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413) 
   
   <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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f8b58b8aeda4df524bab4f131758efcda32de9d0 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413) 
   
   <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] LinMingQiang commented on pull request #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   > +1, nice catch ~
   
   hhhh, Thank you for your help.


-- 
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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "1161296167",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "1161455932",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1161668959",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f8b58b8aeda4df524bab4f131758efcda32de9d0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413) 
   
   <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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "1161296167",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f8b58b8aeda4df524bab4f131758efcda32de9d0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413) 
   
   <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 #5917: [HUDI-4279] Strength the remote fs view lagging check when latest com…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413",
       "triggerID" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f8b58b8aeda4df524bab4f131758efcda32de9d0",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1161296167",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f8b58b8aeda4df524bab4f131758efcda32de9d0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9413) 
   
   <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