hanleiit commented on issue #13019:
URL: https://github.com/apache/hudi/issues/13019#issuecomment-2750658909

   add  
   
   ```
   'hoodie.datasource.write.recordkey.field'='oid',
   'hoodie.datasource.write.precombine.field'='ts',
   ```
   
   
   ```
   create table hudi_flink_test.hms_flink_privilege_mor_false(
   oid  string,
   region string,
   prodid string,
   applyoid string,
   operate string,
   ts TIMESTAMP(6),
   dt string,
   PRIMARY KEY(oid) NOT ENFORCED
   )
   PARTITIONED BY(`dt`)
   with(
   'connector'='hudi',
   'index.global.enabled'='false',
   'path'='hdfs://NS1/huditest/hudi_flink_test/hms_flink_privilege_mor_false',
   'table.type'='MERGE_ON_READ',
   'hoodie.datasource.write.recordkey.field'='oid',
   'hoodie.datasource.write.precombine.field'='ts',
   'hoodie.datasource.write.partitionpath.field'='dt',
   'write.bucket_assign.tasks'='2',
   'wirte.tasks'='10',
   'compaction.task'='10',
   'compaction.async.enable'='true',
   'compaction.schedule.enabled'='true',
   'compaction.trigger.strategy'='num_commits',
   'compaction.delta_commits'='10',
   'read.streaming.enabled'='true',
   'read.streaming.check-interval'='3',
   'read.streaming.skip_compaction'='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