ykPrograWorld opened a new issue, #5774: URL: https://github.com/apache/hudi/issues/5774
**_Tips before filing an issue_** - Have you gone through our [FAQs](https://hudi.apache.org/learn/faq/)? - Join the mailing list to engage in conversations and get faster support at [email protected]. - If you have triaged this as a bug, then file an [issue](https://issues.apache.org/jira/projects/HUDI/issues) directly. **Describe the problem you faced** Using flink sql to read kafka data to hudi fails **To Reproduce** Steps to reproduce the behavior: 1.kafka table sql: CREATE TABLE t3_kafka_sour( uuid STRING, name STRING ) WITH ( 'connector' = 'kafka', 'topic' = 't3', 'properties.bootstrap.servers' = 'localhost:9092', 'properties.group.id' = 't3', 'scan.startup.mode' = 'earliest-offset', 'format' = 'json', 'json.fail-on-missing-field' = 'false', 'json.ignore-parse-errors' = 'true' ); 2.hudi table sql: CREATE TABLE test6( uuid STRING PRIMARY KEY NOT ENFORCED, name STRING, part STRING) PARTITIONED BY(part) WITH ( 'connector' = 'hudi', 'path'='hdfs:///user/data/hudi/test6', 'table.typ'='COPY_ON_WRITE', 'hoodie.datasource.write.recordkey.field'='uuid', 'write.tasks'='1', 'write.rate.limit'='2000', 'compaction.tasks'='1', 'compaction.async.enabled'='true', 'compaction.trigger.strategy'='time_elapsed', 'compaction.delta_commits'='1', 'changelog.enabled'= 'true', 'compaction.timeout.seconds'='1200', 'hoodie.compact.inline.max.delta.seconds'='1' ); 3. INSERT INTO test6 SELECT *,CAST(CURRENT_DATE AS STRING) AS part FROM t3_kafka_sour; **Expected behavior** A clear and concise description of what you expected to happen. **Environment Description** * Hudi version : * Spark version : * Hive version : * Hadoop version : * Storage (HDFS/S3/GCS..) : * Running on Docker? (yes/no) : **Additional context** Add any other context about the problem here. **Stacktrace** ```Add the stacktrace of the error.``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
