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/05/17 14:14:11 UTC

[GitHub] [hudi] KnightChess opened a new pull request, #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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

   ## What is the purpose of the pull request
   
   after alter table drop partition, will not add schema to Instance.
   
   now, if use delete sql, will get latest instant to get schema, it's ""
   
   ## Brief change log
   before:
   ```json
   "extraMetadata" : {
       "schema" : ""
     }
   ```
   after:
   ```json
   "extraMetadata" : {
       "schema" : "{\"type\":\"record\",\"name\":\"delete_error_test_record\",\"namespace\":\"hoodie.delete_error_test\",\"fields\":[{\"name\":\"_hoodie_commit_time\",\"type\":[\"null\",\"string\"],\"doc\":\"\",\"default\":null},{\"name\":\"_hoodie_commit_seqno\",\"type\":[\"null\",\"string\"],\"doc\":\"\",\"default\":null},{\"name\":\"_hoodie_record_key\",\"type\":[\"null\",\"string\"],\"doc\":\"\",\"default\":null},{\"name\":\"_hoodie_partition_path\",\"type\":[\"null\",\"string\"],\"doc\":\"\",\"default\":null},{\"name\":\"_hoodie_file_name\",\"type\":[\"null\",\"string\"],\"doc\":\"\",\"default\":null},{\"name\":\"id\",\"type\":[\"null\",\"int\"],\"default\":null},{\"name\":\"age\",\"type\":[\"null\",\"int\"],\"default\":null},{\"name\":\"name\",\"type\":[\"null\",\"string\"],\"default\":null},{\"name\":\"dt\",\"type\":[\"null\",\"string\"],\"default\":null}]}"
     }
   ```
   
   ## Verify this pull request
   
   *(Please pick either of the following options)*
   
   This pull request is a trivial rework / code cleanup without any test coverage.
   
   *(or)*
   
   This pull request is already covered by existing tests, such as *(please describe tests)*.
   
   (or)
   
   This change added tests and can be verified as follows:
   
   *(example:)*
   
     - *Added integration tests for end-to-end.*
     - *Added HoodieClientWriteTest to verify the change.*
     - *Manually verified the change by running a job locally.*
   
   ## Committer checklist
   
    - [ ] Has a corresponding JIRA in PR title & commit
    
    - [ ] Commit message is descriptive of the change
    
    - [ ] CI is green
   
    - [ ] Necessary doc changes done or have another open PR
          
    - [ ] For large changes, please consider breaking it into sub-tasks under an umbrella JIRA.
   


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

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

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


[GitHub] [hudi] nsivabalan commented on pull request #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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

   thanks for the fix! 


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

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

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


[GitHub] [hudi] nsivabalan commented on a diff in pull request #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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


##########
hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/HoodieSparkSqlWriter.scala:
##########
@@ -225,8 +225,11 @@ object HoodieSparkSqlWriter {
               genericRecords.map(gr => keyGenerator.getKey(gr).getPartitionPath).toJavaRDD().distinct().collect()
             }
             // Create a HoodieWriteClient & issue the delete.
+            val tableMetaClient = HoodieTableMetaClient.builder
+              .setConf(sparkContext.hadoopConfiguration).setBasePath(basePath.toString).build()
+            val schemaStr = new TableSchemaResolver(tableMetaClient).getTableAvroSchema.toString

Review Comment:
   can we also fix L197. 



-- 
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 #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716",
       "triggerID" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9491",
       "triggerID" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 2518f0cfccf4aa307fe47f740a9919d38bcd083f Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716) 
   * 69987dbc31f5fd1fddeb614f299b71d1b800758c Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9491) 
   
   <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 #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716",
       "triggerID" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 2518f0cfccf4aa307fe47f740a9919d38bcd083f Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716) 
   * 69987dbc31f5fd1fddeb614f299b71d1b800758c 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 #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 2518f0cfccf4aa307fe47f740a9919d38bcd083f 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 #5610: [HUDI-4113] Fix cannot parse schema when use spark delete sql

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716",
       "triggerID" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9491",
       "triggerID" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5a591f8145df56a30e04b308dabdf0e61a597567",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=13512",
       "triggerID" : "5a591f8145df56a30e04b308dabdf0e61a597567",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 69987dbc31f5fd1fddeb614f299b71d1b800758c Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9491) 
   * 5a591f8145df56a30e04b308dabdf0e61a597567 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=13512) 
   
   <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] KnightChess commented on a diff in pull request #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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


##########
hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/HoodieSparkSqlWriter.scala:
##########
@@ -225,8 +225,11 @@ object HoodieSparkSqlWriter {
               genericRecords.map(gr => keyGenerator.getKey(gr).getPartitionPath).toJavaRDD().distinct().collect()
             }
             // Create a HoodieWriteClient & issue the delete.
+            val tableMetaClient = HoodieTableMetaClient.builder
+              .setConf(sparkContext.hadoopConfiguration).setBasePath(basePath.toString).build()
+            val schemaStr = new TableSchemaResolver(tableMetaClient).getTableAvroSchema.toString

Review Comment:
   for delete op, there has special logic in https://github.com/apache/hudi/blob/master/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/BaseHoodieWriteClient.java#L1437 



##########
hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/HoodieSparkSqlWriter.scala:
##########
@@ -225,8 +225,11 @@ object HoodieSparkSqlWriter {
               genericRecords.map(gr => keyGenerator.getKey(gr).getPartitionPath).toJavaRDD().distinct().collect()
             }
             // Create a HoodieWriteClient & issue the delete.
+            val tableMetaClient = HoodieTableMetaClient.builder
+              .setConf(sparkContext.hadoopConfiguration).setBasePath(basePath.toString).build()
+            val schemaStr = new TableSchemaResolver(tableMetaClient).getTableAvroSchema.toString

Review Comment:
   for delete op, there has special logic in https://github.com/apache/hudi/blob/master/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/BaseHoodieWriteClient.java#L1437 
   



-- 
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 #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716",
       "triggerID" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 2518f0cfccf4aa307fe47f740a9919d38bcd083f Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716) 
   
   <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 #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716",
       "triggerID" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 2518f0cfccf4aa307fe47f740a9919d38bcd083f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716) 
   
   <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] codope merged pull request #5610: [HUDI-4113] Fix cannot parse schema when use spark delete sql

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


-- 
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 #5610: [HUDI-4113] Fix cannot parse schema when use spark delete sql

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716",
       "triggerID" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9491",
       "triggerID" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5a591f8145df56a30e04b308dabdf0e61a597567",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5a591f8145df56a30e04b308dabdf0e61a597567",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 69987dbc31f5fd1fddeb614f299b71d1b800758c Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9491) 
   * 5a591f8145df56a30e04b308dabdf0e61a597567 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 #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8716",
       "triggerID" : "2518f0cfccf4aa307fe47f740a9919d38bcd083f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9491",
       "triggerID" : "69987dbc31f5fd1fddeb614f299b71d1b800758c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 69987dbc31f5fd1fddeb614f299b71d1b800758c Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=9491) 
   
   <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] KnightChess commented on a diff in pull request #5610: [HUDI-4113] fix cannot parse schema when use spark delete sql

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


##########
hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/HoodieSparkSqlWriter.scala:
##########
@@ -225,8 +225,11 @@ object HoodieSparkSqlWriter {
               genericRecords.map(gr => keyGenerator.getKey(gr).getPartitionPath).toJavaRDD().distinct().collect()
             }
             // Create a HoodieWriteClient & issue the delete.
+            val tableMetaClient = HoodieTableMetaClient.builder
+              .setConf(sparkContext.hadoopConfiguration).setBasePath(basePath.toString).build()
+            val schemaStr = new TableSchemaResolver(tableMetaClient).getTableAvroSchema.toString

Review Comment:
   for delete op, there has special logic in https://github.com/apache/hudi/blob/master/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/BaseHoodieWriteClient.java#L1437 
   
   will use last instant schema



-- 
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 #5610: [HUDI-4113] Fix cannot parse schema when use spark delete sql

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

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