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/15 05:17:13 UTC

[GitHub] [hudi] HelloGithup opened a new issue #5044: [SUPPORT]

HelloGithup opened a new issue #5044:
URL: https://github.com/apache/hudi/issues/5044


   **Environment Description**
   
   * Hudi version :
   0.10.0
   * flink version :
   1.13.5
   * Hive version :
   1.2.2
   * Hadoop version :
   2.7.3
   
   
   **Describe the problem**
   I create a table at flink sql-client,the DDL is 
   ```
   CREATE TABLE IF NOT EXISTS `olap_consultation_record_test`(
     `patient_id` string, 
     `diagnosis_consultation_corrected` ARRAY<ROW<diagnosis_code string,diagnosis_name string>>
     )
   WITH (
       'connector'='hudi',
       'table.type' = 'MERGE_ON_READ',
       'path' = 'hdfs://newfyyy/user/hive/warehouse/shuiqing_test.db/olap_consultation_record_test',
       'hoodie.datasource.write.recordkey.field'='patient_id',
       'changelog.enabled'='true'
   );
   
   ```
   I can write some data to the table, but when I want to read  date from the table, there is a problem
   
   ![image](https://user-images.githubusercontent.com/32875366/158310730-b8c36b14-b019-4fd1-a298-93b31c862cb0.png)
   
   and the source code is 
   ![image](https://user-images.githubusercontent.com/32875366/158310842-7247b818-231e-42a3-b237-5645ea0acefb.png)
   
   I want to know if hudi 0.10.0 support complex data type like ARRAY<ROW<....>>,
   if not, when it could be supported
   thank you
   
   @yanghua I'm the one asking questions on the planet of knowledge about multiset


-- 
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 closed issue #5044: [SUPPORT]flink hudi table unsupport complex data type

Posted by GitBox <gi...@apache.org>.
danny0405 closed issue #5044:
URL: https://github.com/apache/hudi/issues/5044


   


-- 
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 issue #5044: [SUPPORT]flink hudi table unsupport complex data type

Posted by GitBox <gi...@apache.org>.
danny0405 commented on issue #5044:
URL: https://github.com/apache/hudi/issues/5044#issuecomment-1068671091


   Component data type is supported in release 0.11.0, you can try the master code then.


-- 
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