doris 2.1.6查询hudi表报错

Viewed 33

查询普通parquet表没问题,查询hudi表就会报错,hudi版本是0.10.1,报错日志:

ERROR 1105 (HY000): errCode = 2, detailMessage = Unexpected exception: hoodie.properties file seems invalid. Please check for left over `.updated` files if any, manually copy it to hoodie.properties and retry

创建catalog语句:

CREATE CATALOG `hive` PROPERTIES (
"use_path_style" = "true",
"type" = "hms",
"s3.secret_key" = "*XXX",
"s3.region" = "xxx",
"s3.endpoint" = "xxxx",
"s3.access_key" = "xxx",
"metadata_refresh_interval_sec" = "600",
"ipc.client.fallback-to-simple-auth-allowed" = "true",
"hive.metastore.uris" = "thrift://xxx:9083",
"fs.s3.impl.disable.cache" = "true",
"fs.hdfs.impl.disable.cache" = "true"
);
2 Answers

hudi版本建议>= 0.11.0 ,目前社区主要QA测试到0.11.0。