zhangzhaohuazai commented on issue #9254:
URL: https://github.com/apache/hudi/issues/9254#issuecomment-1645180741

   mysql flink sql to hudi hive:
   ```CREATE TABLE metasource_sync_hudi01(
   id bigint ,
   name string,
   birthday TIMESTAMP(3),
   ts TIMESTAMP(3),
   `partition` VARCHAR(20),
   _hoodie_is_deleted BOOLEAN,
   primary key(id) not enforced
   )
   with(
   'connector'='hudi'
   ,'path'= 's3a://metadatahudi/metasource_sync_hudi24/'
   ,'hadoop.fs.s3a.path.style.access' = 'true'
   ,'hoodie.datasource.write.recordkey.field'= 'id'
   ,'write.precombine.field'= 'ts'
   ,'write.tasks'= '8'
   ,'write.rate.limit'= '65000'
   ,'table.type'= 'MERGE_ON_READ'
   ,'compaction.tasks'= '4'
   ,'compaction.schedule.enabled'= 'true'
   ,'compaction.async.enabled'= 'true'
   ,'compaction.trigger.strategy'= 'num_commits'
   ,'compaction.delta_commits'= '1'
   ,'changelog.enabled'= 'true'
   ,'read.streaming.enabled'= 'true'
   ,'read.streaming.check-interval'= '3'
   ,'hive_sync.enable'= 'true'
   ,'hive_sync.mode'= 'hms'
   ,'hive_sync.metastore.uris'= 'thrift://***:9083'
   ,'hive_sync.db'= 'metadata_hudi24'
   ,'hive_sync.table'= 'metadata_hudi_24'
   ,'hive_sync.support_timestamp'= 'true'
   );```


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

Reply via email to