Search before asking
Paimon version
0.6-SNAPSHOT
Compute Engine
flink1.16
Minimal reproduce step
CREATE CATALOG my_catalog WITH (
'type'='paimon-generic',
'hive-conf-dir' = '/opt/Hive/hive_pkg/conf/',
'hadoop-conf-dir' = '/opt/Hadoop/hadoop_pkg/etc/hadoop/'
);
CREATE DATABASE my_catalog.paimon_test;
CREATE TABLE my_catalog.paimon_test.word_count (
word STRING PRIMARY KEY NOT ENFORCED,
cnt BIGINT
) WITH (
'connector' = 'paimon'
);
What doesn't meet your expectations?
I expected the paimon table file to be created on hdfs, but it was actually created to the local path

Anything else?
It seems that because of my configuration, it does not start with "hdfs: //"

Are you willing to submit a PR?