3 个回答
有的,例如:
CREATE TABLE users (
id string,
user_id string,
user_name string,
user_age string
)
STORED BY 'org.apache.iceberg.mr.hive.HiveIcebergStorageHandler'
LOCATION 'hdfs://192.168.31.254:9000/lakehouse/icebergdb/users/'
TBLPROPERTIES (
'iceberg.catalog'='location_based_users',
'write.metadata.delete-after-commit.enabled'= 'true',
'write.metadata.previous-versions-max' = '3'
);
发布于:10个月前 (02-27) IP属地:未知
这个语句在hive cli端执行就可以在hdfs上看到Iceberg的数据目录了。
发布于:10个月前 (02-27) IP属地:未知
我来回答
您需要 登录 后回答此问题!