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

[GitHub] [hudi] rkkalluri opened a new pull request #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

rkkalluri opened a new pull request #5205:
URL: https://github.com/apache/hudi/pull/5205


   
   
   ## What is the purpose of the pull request
   Switching from non-partitioned to partitioned key gen  is currently not throw any exception and dumping partitioned data next to the previously unpartitioned data files.
   
   The purpose of this pull request is to valid switching from non-partitioned to partitioned key gen mechanism
   
   ## Brief change log
   
     - *HoodieWriterUtils.getOriginKeyGenerator is now modified to return the default value for KEYGENERATOR_CLASS_NAME when it is not provided as a config, this will allow the validations to correctly catch the invalid key gen switch*
   
   ## Verify this pull request
   
   
   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 TestHoodieSparkSqlWriter.testNonpartitonedToDefaultKeyGen to verify the change.*
     - *Manually verified the change by running a job locally.*
   
   ## Committer checklist
   
    - [ x] 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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718) 
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 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] YannByron commented on pull request #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   LGTM. @rkkalluri 


-- 
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] rkkalluri commented on a change in pull request #5205: [HUDI-3726] Harden constraints around switching between different key generators

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



##########
File path: hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/HoodieWriterUtils.scala
##########
@@ -115,7 +116,12 @@ object HoodieWriterUtils {
   }
 
   def getOriginKeyGenerator(parameters: Map[String, String]): String = {
-    val kg = parameters.getOrElse(KEYGENERATOR_CLASS_NAME.key(), null)
+    //first check table config for key generator
+    var kg = parameters.getOrElse(HoodieTableConfig.KEY_GENERATOR_CLASS_NAME.key, null)

Review comment:
       You mean like this ?
   
   var kg = parameters.getOrElse(HoodieTableConfig.KEY_GENERATOR_CLASS_NAME.key, parameters.getOrElse(KEYGENERATOR_CLASS_NAME.key(), KEYGENERATOR_CLASS_NAME.defaultValue()))
   
   The only drawback to this is it might affect readability.




-- 
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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b 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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) 
   
   <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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7791",
       "triggerID" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 529fbf172eb89d844148c0e446b89fa9f0086711 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7791) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7791",
       "triggerID" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   * 529fbf172eb89d844148c0e446b89fa9f0086711 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7791) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b 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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   
   <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 a change in pull request #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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



##########
File path: hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/HoodieWriterUtils.scala
##########
@@ -115,7 +116,12 @@ object HoodieWriterUtils {
   }
 
   def getOriginKeyGenerator(parameters: Map[String, String]): String = {
-    val kg = parameters.getOrElse(KEYGENERATOR_CLASS_NAME.key(), null)
+    //first check table config for key generator
+    var kg = parameters.getOrElse(HoodieTableConfig.KEY_GENERATOR_CLASS_NAME.key, null)

Review comment:
       why can't we directly do getOrDefault in L120?

##########
File path: hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/HoodieWriterUtils.scala
##########
@@ -115,7 +116,12 @@ object HoodieWriterUtils {
   }
 
   def getOriginKeyGenerator(parameters: Map[String, String]): String = {
-    val kg = parameters.getOrElse(KEYGENERATOR_CLASS_NAME.key(), null)
+    //first check table config for key generator
+    var kg = parameters.getOrElse(HoodieTableConfig.KEY_GENERATOR_CLASS_NAME.key, null)

Review comment:
       kg -> keyGenClass




-- 
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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   * 529fbf172eb89d844148c0e446b89fa9f0086711 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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   
   <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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e 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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b 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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   
   <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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718) 
   
   <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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b 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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   * 529fbf172eb89d844148c0e446b89fa9f0086711 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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718) 
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   @rkkalluri can you rebase instead of merging from master? it's hard to review the diff and the commit history


-- 
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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718) 
   
   <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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718) 
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   
   <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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718) 
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7791",
       "triggerID" : "529fbf172eb89d844148c0e446b89fa9f0086711",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   * 529fbf172eb89d844148c0e446b89fa9f0086711 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7791) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   * 8c92978b61f256b275f3728002b526e246e5118d 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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b 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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) 
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b 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] rkkalluri commented on pull request #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   @hudi-bot run azure
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

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



[GitHub] [hudi] hudi-bot removed a comment on pull request #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   * 8c92978b61f256b275f3728002b526e246e5118d 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 #5205: [HUDI-3726] Switching from non-partitioned to partitioned key gen

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6c3f7300d75ccdd129b486cac62a058ad392f24e 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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 674aa9f5c8cdeb52b97e75b931ca35524a959c88 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737) 
   * 8c92978b61f256b275f3728002b526e246e5118d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776) 
   
   <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 #5205: [HUDI-3726] Harden constraints around switching between different key generators

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7718",
       "triggerID" : "6c3f7300d75ccdd129b486cac62a058ad392f24e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7737",
       "triggerID" : "674aa9f5c8cdeb52b97e75b931ca35524a959c88",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7776",
       "triggerID" : "8c92978b61f256b275f3728002b526e246e5118d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "8c92978b61f256b275f3728002b526e246e5118d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7779",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f377aa707365ba4b0c8cd327e8658fc1b71ddd3b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780",
       "triggerID" : "1086778358",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f377aa707365ba4b0c8cd327e8658fc1b71ddd3b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7780) 
   
   <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