chenbodeng719 commented on issue #5777:
URL: https://github.com/apache/hudi/issues/5777#issuecomment-1970368618

   @nsivabalan I have the same issue. The below is my flink hudi config.
   
   ```
   
           CREATE TABLE hudi_sink(
               new_uid STRING PRIMARY KEY NOT ENFORCED,
               uid STRING,
               oridata STRING,
               part INT,
               user_update_date STRING,
               update_time TIMESTAMP_LTZ(3) 
           ) PARTITIONED BY (
               `part`
           ) WITH (
               'table.type' = 'MERGE_ON_READ',
               'connector' = 'hudi',
               'path' = '%s',
               'write.operation' = 'upsert',
               'precombine.field' = 'update_time',
               'write.tasks' = '%s',
               'index.type' = 'BUCKET',
               'hoodie.bucket.index.hash.field' = 'new_uid',
               'hoodie.bucket.index.num.buckets' = '%s',
               'clean.retain_commits' = '0',
               'compaction.async.enabled' = 'false'
           )
   
   ```


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