GreenBinary commented on issue #13235:
URL: https://github.com/apache/iceberg/issues/13235#issuecomment-3229221321
Hi @jasonrig-ppcd & @nastra
Thought this maybe helpful:
You may dictate JDBC catalog type by this create catalog script (note
there's "catalog-impl" specified in lieu of "catalog-type"):
```
"CREATE CATALOG IF NOT EXISTS ock_iceberg_metadata_catalog WITH ( "
+ " 'type'='iceberg', "
+ " 'catalog-impl'='org.apache.iceberg.jdbc.JdbcCatalog', "
+ " 'warehouse'='s3a://iceberg-bucket/data', "
+ "
'uri'='jdbc:postgresql://postgresql-service.my-ns.svc.cluster.local:5432/iceberg_metadata_catalog_db',
"
+ " 'jdbc.user'='postgres', "
+ " 'jdbc.password'='Passw0rd1', "
+ "
's3.endpoint'='http://minio-data-lake-service.my-ns.svc.cluster.local:9000', "
+ " 's3.access-key-id'='minio-custom-user', "
+ " 's3.secret-access-key'='Passw0rd1', "
+ " 's3.path-style-access'='true' "
+ ")";
```
--
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]