aib628 commented on issue #8848:
URL: https://github.com/apache/hudi/issues/8848#issuecomment-1651074254
>
Hi @danny0405 i had try it, and the seem problem reproduced.
```
CREATE TABLE t1(
uuid VARCHAR(20) PRIMARY KEY NOT ENFORCED,
name VARCHAR(10),
age INT,
ts TIMESTAMP(3),
`partition` VARCHAR(20)
)
PARTITIONED BY (`partition`)
WITH (
'connector' = 'hudi',
'path' = '/user/hive/warehouse/hudi.db/t1',
'hoodie.table.base.file.format' = 'PARQUET',
'hoodie.metadata.enable' = 'false',
'hive_sync.enable' = 'true',
'hive_sync.mode' = 'hms',
'hive_sync.metastore.uris' = 'thrift://hivemetastore:9083',
'table.type' = 'COPY_ON_WRITE' -- this creates a MERGE_ON_READ table, by
default is COPY_ON_WRITE
);
```
--
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]