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 2021/11/30 15:15:33 UTC

[GitHub] [hudi] nsivabalan opened a new pull request #4166: [MINOR] Adding verbose output for metadata validate files command

nsivabalan opened a new pull request #4166:
URL: https://github.com/apache/hudi/pull/4166


   ## What is the purpose of the pull request
   
   If not for verbose, validateFiles command will list only non-matching files between fs based listing and metadata based listing
   
   ## 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] hudi-bot commented on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a14277e707c099478099e1f63d0d46e0d7295c68 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140) 
   * 8dfd3ac96717870a8be8310fea1272a33fc7d7a4 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] yihua commented on a change in pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
yihua commented on a change in pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#discussion_r760447080



##########
File path: hudi-cli/src/main/java/org/apache/hudi/cli/commands/MetadataCommand.java
##########
@@ -297,12 +297,20 @@ public String validateFiles(
         row[0] = partition;
         FileStatus fsFileStatus = fileStatusMap.get(file);
         FileStatus metaFileStatus = metadataFileStatusMap.get(file);
+        boolean isFsFileExists = fsFileStatus != null;
+        boolean isMetadataFileExists = metaFileStatus != null;

Review comment:
       nit: `doesXXXExist` instead of `isXXXExists`?




-- 
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 removed a comment on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-982790122


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897) 
   
   <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 #4166: [MINOR] Adding verbose output for metadata validate files command

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a14277e707c099478099e1f63d0d46e0d7295c68 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140) 
   
   <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 #4166: [MINOR] Adding verbose output for metadata validate files command

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897) 
   * a14277e707c099478099e1f63d0d46e0d7295c68 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140) 
   
   <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] nsivabalan commented on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
nsivabalan commented on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-990319235


   @yihua : you can review the patch. 


-- 
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 removed a comment on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-990406408


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a14277e707c099478099e1f63d0d46e0d7295c68 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140) 
   
   <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 #4166: [MINOR] Adding verbose output for metadata validate files command

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4164",
       "triggerID" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a14277e707c099478099e1f63d0d46e0d7295c68 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140) 
   * 8dfd3ac96717870a8be8310fea1272a33fc7d7a4 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4164) 
   
   <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 removed a comment on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-991050227


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a14277e707c099478099e1f63d0d46e0d7295c68 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140) 
   * 8dfd3ac96717870a8be8310fea1272a33fc7d7a4 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 removed a comment on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-982733754


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d 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 #4166: [MINOR] Adding verbose output for metadata validate files command

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d 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] yihua merged pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
yihua merged pull request #4166:
URL: https://github.com/apache/hudi/pull/4166


   


-- 
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 #4166: [MINOR] Adding verbose output for metadata validate files command

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897) 
   
   <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 #4166: [MINOR] Adding verbose output for metadata validate files command

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4164",
       "triggerID" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8dfd3ac96717870a8be8310fea1272a33fc7d7a4 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4164) 
   
   <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] nsivabalan commented on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
nsivabalan commented on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-991047647


   @hudi-bot azure run


-- 
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 removed a comment on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-990327144


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897) 
   * a14277e707c099478099e1f63d0d46e0d7295c68 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140) 
   
   <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 removed a comment on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-982736367


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897) 
   
   <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 #4166: [MINOR] Adding verbose output for metadata validate files command

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897) 
   * a14277e707c099478099e1f63d0d46e0d7295c68 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 removed a comment on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-990323595


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897) 
   * a14277e707c099478099e1f63d0d46e0d7295c68 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 removed a comment on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
hudi-bot removed a comment on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-991052624


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140",
       "triggerID" : "a14277e707c099478099e1f63d0d46e0d7295c68",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4164",
       "triggerID" : "8dfd3ac96717870a8be8310fea1272a33fc7d7a4",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a14277e707c099478099e1f63d0d46e0d7295c68 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4140) 
   * 8dfd3ac96717870a8be8310fea1272a33fc7d7a4 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4164) 
   
   <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 #4166: [MINOR] Adding verbose output for metadata validate files command

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897",
       "triggerID" : "16b2c140aeaf0708e451a8e42a1d9ff859f8f68d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16b2c140aeaf0708e451a8e42a1d9ff859f8f68d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3897) 
   
   <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] nsivabalan commented on pull request #4166: [MINOR] Adding verbose output for metadata validate files command

Posted by GitBox <gi...@apache.org>.
nsivabalan commented on pull request #4166:
URL: https://github.com/apache/hudi/pull/4166#issuecomment-983122581


   @rmahindra123 : can you review this


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