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/26 01:24:35 UTC

[GitHub] [hudi] xushiyan opened a new pull request #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

xushiyan opened a new pull request #4125:
URL: https://github.com/apache/hudi/pull/4125


   ## *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] hudi-bot removed a comment on pull request #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   * f164190fd9498547d1f9105d333ae36736a63d60 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] xushiyan commented on a change in pull request #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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



##########
File path: hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/TestHoodieSparkSqlWriter.scala
##########
@@ -302,9 +306,10 @@ class HoodieSparkSqlWriterSuite {
       try {
         // write to Hudi
         HoodieSparkSqlWriter.write(sqlContext, SaveMode.Append, fooTableModifier, df)
-        Assertions.fail("Should have thrown exception")
+        fail("Should have thrown exception")
       } catch {
-        case e: HoodieException => assertTrue(e.getMessage.contains("hoodie.populate.meta.fields already disabled for the table. Can't be re-enabled back"))
+        case e: HoodieException => assertTrue(e.getMessage.startsWith("Config conflict"))

Review comment:
       @nsivabalan please note that conflict config like `populate MetaFields` will be captured in `org.apache.hudi.HoodieWriterUtils#validateTableConfig`




-- 
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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b48bfc3e22632f5b4fb0f5092a26264966491691 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   * f164190fd9498547d1f9105d333ae36736a63d60 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823) 
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f164190fd9498547d1f9105d333ae36736a63d60 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823) 
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * fbb8b886d3fee950db78439e556205240d2198b2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780) 
   
   <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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828) 
   * b608d604771ceedae4721c7487215b89e5f7229f 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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   * f164190fd9498547d1f9105d333ae36736a63d60 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823) 
   
   <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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828) 
   * b608d604771ceedae4721c7487215b89e5f7229f 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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 279d463a6dd4eedda200652c850fd6c2228f3144 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793) 
   * b48bfc3e22632f5b4fb0f5092a26264966491691 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


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

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * fbb8b886d3fee950db78439e556205240d2198b2 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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b48bfc3e22632f5b4fb0f5092a26264966491691 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798) 
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   * f164190fd9498547d1f9105d333ae36736a63d60 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823) 
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


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

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 279d463a6dd4eedda200652c850fd6c2228f3144 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793) 
   * b48bfc3e22632f5b4fb0f5092a26264966491691 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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3835",
       "triggerID" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b608d604771ceedae4721c7487215b89e5f7229f Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3835) 
   
   <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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828) 
   
   <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] xushiyan commented on pull request #4125: [HUDI-2868] Fix skipped HoodieSparkSqlWriterSuite

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


   CC @YannByron 


-- 
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 merged pull request #4125: [HUDI-2868] Fix skipped HoodieSparkSqlWriterSuite

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


   


-- 
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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b48bfc3e22632f5b4fb0f5092a26264966491691 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798) 
   * a083d2d6f111315842bc37fb60420a247e7d4524 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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * fbb8b886d3fee950db78439e556205240d2198b2 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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


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

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * fbb8b886d3fee950db78439e556205240d2198b2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780) 
   * 279d463a6dd4eedda200652c850fd6c2228f3144 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * fbb8b886d3fee950db78439e556205240d2198b2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780) 
   
   <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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f164190fd9498547d1f9105d333ae36736a63d60 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823) 
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


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

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


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

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b48bfc3e22632f5b4fb0f5092a26264966491691 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   * f164190fd9498547d1f9105d333ae36736a63d60 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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   * f164190fd9498547d1f9105d333ae36736a63d60 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b48bfc3e22632f5b4fb0f5092a26264966491691 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798) 
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b48bfc3e22632f5b4fb0f5092a26264966491691 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798) 
   * a083d2d6f111315842bc37fb60420a247e7d4524 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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


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

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f164190fd9498547d1f9105d333ae36736a63d60 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823) 
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3835",
       "triggerID" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828) 
   * b608d604771ceedae4721c7487215b89e5f7229f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3835) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 279d463a6dd4eedda200652c850fd6c2228f3144 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793) 
   * b48bfc3e22632f5b4fb0f5092a26264966491691 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 279d463a6dd4eedda200652c850fd6c2228f3144 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793) 
   * b48bfc3e22632f5b4fb0f5092a26264966491691 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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a083d2d6f111315842bc37fb60420a247e7d4524 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * fbb8b886d3fee950db78439e556205240d2198b2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780) 
   * 279d463a6dd4eedda200652c850fd6c2228f3144 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793) 
   
   <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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f164190fd9498547d1f9105d333ae36736a63d60 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823) 
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828) 
   
   <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 #4125: [MINOR] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   @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 #4125: [HUDI-2868] Fix org.apache.hudi.HoodieSparkSqlWriterSuite

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3780",
       "triggerID" : "fbb8b886d3fee950db78439e556205240d2198b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3793",
       "triggerID" : "279d463a6dd4eedda200652c850fd6c2228f3144",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3798",
       "triggerID" : "b48bfc3e22632f5b4fb0f5092a26264966491691",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3811",
       "triggerID" : "a083d2d6f111315842bc37fb60420a247e7d4524",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3823",
       "triggerID" : "f164190fd9498547d1f9105d333ae36736a63d60",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828",
       "triggerID" : "7c2513f14d063474e4ac3e3b394ab809a6aee336",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3835",
       "triggerID" : "b608d604771ceedae4721c7487215b89e5f7229f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c2513f14d063474e4ac3e3b394ab809a6aee336 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3828) 
   * b608d604771ceedae4721c7487215b89e5f7229f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3835) 
   
   <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