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/03/27 12:00:22 UTC

[GitHub] [hudi] XuQianJin-Stars opened a new pull request #5145: [HUDI-2520] fix CTAS statment issue when sync to hive

XuQianJin-Stars opened a new pull request #5145:
URL: https://github.com/apache/hudi/pull/5145


   ## *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] xushiyan commented on a change in pull request #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

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



##########
File path: hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/spark/sql/hudi/command/CreateHoodieTableCommand.scala
##########
@@ -179,7 +174,9 @@ object CreateHoodieTableCommand {
     val client = HiveClientUtils.newClientForMetadata(sparkSession.sparkContext.conf,
       sparkSession.sessionState.newHadoopConf())
     // create hive table.
-    client.createTable(tableWithDataSourceProps, ignoreIfExists)
+    if (!client.tableExists(table.identifier.database.get, table.identifier.table)) {
+      client.createTable(tableWithDataSourceProps, ignoreIfExists)
+    }

Review comment:
       in this case, the `ignoreIfExists` variable is useless; it should always be like `client.createTable(tableWithDataSourceProps, true)` ? then we don't need the if condition and we can remove `ignoreIfExists`

##########
File path: hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/spark/sql/hudi/command/CreateHoodieTableCommand.scala
##########
@@ -167,10 +166,6 @@ object CreateHoodieTableCommand {
     if (!dbExists) {
       throw new NoSuchDatabaseException(dbName)
     }
-    // check table exists
-    if (sparkSession.sessionState.catalog.tableExists(table.identifier)) {
-      throw new TableAlreadyExistsException(dbName, table.identifier.table)
-    }

Review comment:
       ok got it. thanks for the illustration.




-- 
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 #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7517",
       "triggerID" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 05246d21de4705aca24d3c984b24025f0ddb62d8 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418) 
   * 89c1abb8bf59cd72baffef0c3732271a74b6a52d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7517) 
   
   <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 #5145: [HUDI-2520] fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 05246d21de4705aca24d3c984b24025f0ddb62d8 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] XuQianJin-Stars commented on a change in pull request #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

Posted by GitBox <gi...@apache.org>.
XuQianJin-Stars commented on a change in pull request #5145:
URL: https://github.com/apache/hudi/pull/5145#discussion_r837182121



##########
File path: hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/spark/sql/hudi/command/CreateHoodieTableCommand.scala
##########
@@ -167,10 +166,6 @@ object CreateHoodieTableCommand {
     if (!dbExists) {
       throw new NoSuchDatabaseException(dbName)
     }
-    // check table exists
-    if (sparkSession.sessionState.catalog.tableExists(table.identifier)) {
-      throw new TableAlreadyExistsException(dbName, table.identifier.table)
-    }

Review comment:
       > this is some behavior change: can you clarify why this is a reasonable change? above this line, we check if db exists and throw, why we don't check for table?
   
   Because the call to AtomicCreateTableAsSelectExec will execute stageCreate and the table already exists.
   <img width="821" alt="企业微信截图_8ba54b75-e42d-4391-8b61-f409b43449bc" src="https://user-images.githubusercontent.com/10494131/160564423-e3febd28-9be6-4ca6-a45e-1e9f024b9189.png">
   <img width="1066" alt="企业微信截图_92d63278-4106-44ae-b831-a938afa18404" src="https://user-images.githubusercontent.com/10494131/160564499-e06721fe-9e81-407a-8423-e88cd86bd87d.png">
   
   




-- 
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 #5145: [HUDI-2520] fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 05246d21de4705aca24d3c984b24025f0ddb62d8 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 #5145: [HUDI-2520] fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 05246d21de4705aca24d3c984b24025f0ddb62d8 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418) 
   
   <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 #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7517",
       "triggerID" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 89c1abb8bf59cd72baffef0c3732271a74b6a52d Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7517) 
   
   <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 #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

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



##########
File path: hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/spark/sql/hudi/command/CreateHoodieTableCommand.scala
##########
@@ -167,10 +166,6 @@ object CreateHoodieTableCommand {
     if (!dbExists) {
       throw new NoSuchDatabaseException(dbName)
     }
-    // check table exists
-    if (sparkSession.sessionState.catalog.tableExists(table.identifier)) {
-      throw new TableAlreadyExistsException(dbName, table.identifier.table)
-    }

Review comment:
       this is some behavior change: can you clarify why this is a reasonable change? above this line, we check if db exists and throw, why we don't check for table? 




-- 
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 #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7517",
       "triggerID" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 05246d21de4705aca24d3c984b24025f0ddb62d8 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418) 
   * 89c1abb8bf59cd72baffef0c3732271a74b6a52d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7517) 
   
   <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] XuQianJin-Stars commented on a change in pull request #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

Posted by GitBox <gi...@apache.org>.
XuQianJin-Stars commented on a change in pull request #5145:
URL: https://github.com/apache/hudi/pull/5145#discussion_r837182121



##########
File path: hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/spark/sql/hudi/command/CreateHoodieTableCommand.scala
##########
@@ -167,10 +166,6 @@ object CreateHoodieTableCommand {
     if (!dbExists) {
       throw new NoSuchDatabaseException(dbName)
     }
-    // check table exists
-    if (sparkSession.sessionState.catalog.tableExists(table.identifier)) {
-      throw new TableAlreadyExistsException(dbName, table.identifier.table)
-    }

Review comment:
       > this is some behavior change: can you clarify why this is a reasonable change? above this line, we check if db exists and throw, why we don't check for table?
   
   Because the call to `AtomicCreateTableAsSelectExec` will execute `stageCreate` and the table already exists.
   <img width="821" alt="8ba54b75-e42d-4391-8b61-f409b43449bc" src="https://user-images.githubusercontent.com/10494131/160564423-e3febd28-9be6-4ca6-a45e-1e9f024b9189.png">
   <img width="1066" alt="92d63278-4106-44ae-b831-a938afa18404" src="https://user-images.githubusercontent.com/10494131/160564499-e06721fe-9e81-407a-8423-e88cd86bd87d.png">
   
   




-- 
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 #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 05246d21de4705aca24d3c984b24025f0ddb62d8 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418) 
   
   <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 merged pull request #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

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


   


-- 
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 #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 05246d21de4705aca24d3c984b24025f0ddb62d8 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418) 
   * 89c1abb8bf59cd72baffef0c3732271a74b6a52d 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 #5145: [HUDI-2520] Fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "89c1abb8bf59cd72baffef0c3732271a74b6a52d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 05246d21de4705aca24d3c984b24025f0ddb62d8 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418) 
   * 89c1abb8bf59cd72baffef0c3732271a74b6a52d 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 #5145: [HUDI-2520] fix CTAS statment issue when sync to hive

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418",
       "triggerID" : "05246d21de4705aca24d3c984b24025f0ddb62d8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 05246d21de4705aca24d3c984b24025f0ddb62d8 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7418) 
   
   <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 #5145: [HUDI-2520] fix CTAS statment issue when sync to hive

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


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