cgerx commented on issue #42863:
URL: https://github.com/apache/doris/issues/42863#issuecomment-2444641539
Same error on hudi 0.14
My table DDL is
```sql
CREATE TABLE table1(
uuid VARCHAR(20) PRIMARY KEY NOT ENFORCED,
`partition` VARCHAR(20)
)
PARTITIONED BY (`partition`)
with(
'connector'='hudi',
'path' = 'hdfs://hadoop1:8020/data/hive/warehouse/hudi_ods.db/table1',
'table.type'='MERGE_ON_READ',
'hive_sync.enable'='true',
'hive_sync.table'='table1',
'hive_sync.db'='hive_ods',
'hive_sync.mode' = 'hms',
'hive_sync.metastore.uris' = 'thrift://hadoop1:9083'
);
```
My catalog:
```shell
MySQL [(none)]> show catalog hudi;
+--------------------------------------------+-------------------------------+
| Key | Value
|
+--------------------------------------------+-------------------------------+
| use_meta_cache | true
|
| type | hms
|
| ipc.client.fallback-to-simple-auth-allowed | true
|
| hive.metastore.uris | thrift://hadoop1:9083
|
| hadoop.username | root
|
| create_time | 2024-10-29 13:45:30.494582511
|
+--------------------------------------------+-------------------------------+
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]