George Leonard
09/10/2024, 1:23 PMCREATE CATALOG c_paimon1 WITH (
'type' = 'paimon'
,'warehouse' = '<s3://paimon/>'
,'catalog-type' = 'hive'
,'hive-conf-dir' = './conf'
,'table-default.file.format' = 'parquet'
);
I also have to set environment variables in my compose file inside the jobmanager and taskmanager blocks.
environment:
- AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
was hoping this would negate that, but not...
CREATE CATALOG c_paimon WITH (
'type' = 'paimon'
,'warehouse' = '<s3://paimon/>'
,'catalog-type' = 'hive'
,'hive-conf-dir' = './conf'
,'table-default.file.format' = 'parquet'
,'fs.s3a.endpoint' = '<http://minio:9000>'
,'fs.s3a.access-key' = 'admin'
,'fs.s3a.secret-key' = 'password'
);
how would be a better setup/solution.
i tried mapping a complete flink-conf.yaml into /opt/flink/conf/ but it seems to be over written by the container at startup.
please advise.