Created
September 23, 2024 10:56
-
-
Save arkadius/2cf3893876d09ed4c610ff0429603c36 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE CATALOG nessie_catalog WITH ( | |
'type'='iceberg', | |
'catalog-impl'='org.apache.iceberg.nessie.NessieCatalog', | |
'io-impl'='org.apache.iceberg.aws.s3.S3FileIO', | |
'uri'='http://nessie:19120/api/v2', | |
'warehouse' = 's3://warehouse', | |
's3.endpoint'='http://minio:9000' | |
); | |
USE CATALOG nessie_catalog; | |
CREATE database `default`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment