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/02/17 15:18:51 UTC

[GitHub] [hudi] stayrascal opened a new pull request #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

stayrascal opened a new pull request #4842:
URL: https://github.com/apache/hudi/pull/4842


   ## *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
   Fix ColumnarArrayData ClassCastException issue after upgrade flink to 1.14
   
   Testing by bellow example and meet ClassCastException issue during search COW table which contains `array` filed.
   ```
   CREATE TABLE cow_example_new_demo (
       id            BIGINT,
       name          STRING,
       `date`        DATE,
       int_arr       ARRAY<INT>,
       `timestamp`   TIMESTAMP(3),
       PRIMARY KEY (id) NOT ENFORCED
    ) PARTITIONED BY (name) WITH (
       'connector' = 'hudi',
       'path' = '/xxxxx/cow_example_new_demo/',
       'table.type' = 'COPY_ON_WRITE',
       'write.precombine.field' = 'timestamp',
       'write.precombine' = 'true',
       'index.bootstrap.enabled' = 'true'
   );
   
   insert into cow_example_new_demo 
   select 
       111                                 as id,
       'name'                              as name,
       TO_DATE('2022-02-02')               as `date`,
       Array[1,2]                          as int_arr,
       TIMESTAMP '2022-02-16 13:43:32.593' as `timestamp`;
   
   select * from cow_example_new_demo;
   ```
   
   Exception trace as follow:
   ```
   java.lang.ClassCastException: class org.apache.hudi.table.format.cow.data.ColumnarArrayData cannot be cast to class org.apache.flink.table.data.ColumnarArrayData (org.apache.hudi.table.format.cow.data.ColumnarArrayData is in unnamed module of loader org.apache.flink.runtime.execution.librarycache.FlinkUserCodeClassLoaders$ParentFirstClassLoader @4b489672; org.apache.flink.table.data.ColumnarArrayData is in unnamed module of loader 'app')
   	at org.apache.flink.table.runtime.typeutils.ArrayDataSerializer.copy(ArrayDataSerializer.java:90)
   	at org.apache.flink.table.runtime.typeutils.ArrayDataSerializer.copy(ArrayDataSerializer.java:47)
   	at org.apache.flink.table.runtime.typeutils.RowDataSerializer.copyRowData(RowDataSerializer.java:170)
   	at org.apache.flink.table.runtime.typeutils.RowDataSerializer.copy(RowDataSerializer.java:131)
   	at org.apache.flink.table.runtime.typeutils.RowDataSerializer.copy(RowDataSerializer.java:48)
   	at org.apache.flink.streaming.runtime.tasks.CopyingChainingOutput.pushToOperator(CopyingChainingOutput.java:80)
   	at org.apache.flink.streaming.runtime.tasks.CopyingChainingOutput.collect(CopyingChainingOutput.java:57)
   	at org.apache.flink.streaming.runtime.tasks.CopyingChainingOutput.collect(CopyingChainingOutput.java:29)
   	at org.apache.flink.streaming.api.operators.CountingOutput.collect(CountingOutput.java:56)
   	at org.apache.flink.streaming.api.operators.CountingOutput.collect(CountingOutput.java:29)
   	at org.apache.flink.streaming.api.operators.StreamSourceContexts$ManualWatermarkContext.processAndCollect(StreamSourceContexts.java:418)
   	at org.apache.flink.streaming.api.operators.StreamSourceContexts$WatermarkContext.collect(StreamSourceContexts.java:513)
   	at org.apache.flink.streaming.api.operators.StreamSourceContexts$SwitchingOnClose.collect(StreamSourceContexts.java:103)
   	at org.apache.flink.streaming.api.functions.source.InputFormatSourceFunction.run(InputFormatSourceFunction.java:92)
   	at org.apache.flink.streaming.api.operators.StreamSource.run(StreamSource.java:110)
   	at org.apache.flink.streaming.api.operators.StreamSource.run(StreamSource.java:67)
   	at org.apache.flink.streaming.runtime.tasks.SourceStreamTask$LegacySourceFunctionThread.run(SourceStreamTask.java:323)
   ```
   
   ## Brief change log
   - using Flink's `ColumnarArrayData, ColumnarMapData, ColumnarRowData` instead of customized class
   
   ## 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:
   
     - *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] danny0405 commented on pull request #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   Thanks for the contribution @stayrascal , the PR overall looks good, we need to fix the azure CI tests :)


-- 
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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113",
       "triggerID" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 849ec8b9012d3fd85b345075bb4a49ff4291fa04 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113) 
   
   <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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113",
       "triggerID" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 849ec8b9012d3fd85b345075bb4a49ff4291fa04 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113) 
   
   <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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113",
       "triggerID" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6129",
       "triggerID" : "1044690964",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 849ec8b9012d3fd85b345075bb4a49ff4291fa04 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6129) 
   
   <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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 893378c05f03be0e51c179f7bfc7c69c21086298 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102) 
   
   <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] stayrascal commented on pull request #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   @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 commented on pull request #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113",
       "triggerID" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 893378c05f03be0e51c179f7bfc7c69c21086298 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102) 
   * 849ec8b9012d3fd85b345075bb4a49ff4291fa04 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113) 
   
   <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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 893378c05f03be0e51c179f7bfc7c69c21086298 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102) 
   * 849ec8b9012d3fd85b345075bb4a49ff4291fa04 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] danny0405 merged pull request #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   


-- 
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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


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

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113",
       "triggerID" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6129",
       "triggerID" : "1044690964",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 849ec8b9012d3fd85b345075bb4a49ff4291fa04 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113) Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6129) 
   
   <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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 893378c05f03be0e51c179f7bfc7c69c21086298 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102) 
   * 849ec8b9012d3fd85b345075bb4a49ff4291fa04 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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 893378c05f03be0e51c179f7bfc7c69c21086298 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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


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

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6102",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113",
       "triggerID" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "triggerType" : "PUSH"
     }, {
       "hash" : "849ec8b9012d3fd85b345075bb4a49ff4291fa04",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6129",
       "triggerID" : "1044690964",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 849ec8b9012d3fd85b345075bb4a49ff4291fa04 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6113) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6129) 
   
   <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] stayrascal commented on pull request #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


   > 
   
   Thanks @danny0405 review this, it's seems the build issue, will try to rerun the CI.
   `[ERROR] Failed to execute goal com.dkanejs.maven.plugins:docker-compose-maven-plugin:2.0.1:up (up) on project hudi-integ-test: Execution up of goal com.dkanejs.maven.plugins:docker-compose-maven-plugin:2.0.1:up failed: `


-- 
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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


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

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "893378c05f03be0e51c179f7bfc7c69c21086298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 893378c05f03be0e51c179f7bfc7c69c21086298 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 #4842: [HUDI-3389] fix ColumnarArrayData ClassCastException issue

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


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