You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/guides/51-access-data-lake/02-iceberg.md
+28-28Lines changed: 28 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
---
2
2
title: Apache Iceberg™
3
3
---
4
+
4
5
import FunctionDescription from '@site/src/components/FunctionDescription';
5
6
6
7
<FunctionDescriptiondescription="Introduced or updated: v1.2.668"/>
@@ -137,9 +138,9 @@ Started web server at 127.0.0.1:8080
137
138
```sql
138
139
CREATE CATALOG iceberg TYPE = ICEBERG CONNECTION = (
139
140
TYPE ='rest'
140
-
ADDRESS ='http://host.docker.internal:8181'
141
+
ADDRESS ='http://host.docker.internal:8181'
141
142
warehouse ='s3://warehouse/wh/'
142
-
"s3.endpoint"='http://host.docker.internal:9000'
143
+
"s3.endpoint"='http://host.docker.internal:9000'
143
144
"s3.access-key-id"='admin'
144
145
"s3.secret-access-key"='password'
145
146
"s3.region"='us-east-1'
@@ -207,21 +208,21 @@ ORDER BY
207
208
208
209
This table maps data types between Apache Iceberg™ and Databend. Please note that Databend does not currently support Iceberg data types that are not listed in the table.
|`<catalog_name>`| Yes | The name of the catalog you want to create. |
258
+
|`TYPE`| Yes | Specifies the catalog type. For Apache Iceberg™, set to `ICEBERG`. |
259
+
|`CONNECTION`| Yes | The connection parameters for the Iceberg catalog. |
260
+
|`TYPE` (inside `CONNECTION`) | Yes | The connection type. For Iceberg, it is typically set to `rest` for REST-based connection. |
261
+
|`ADDRESS`| Yes | The address or URL of the Iceberg service (e.g., `http://127.0.0.1:8181`). |
262
+
|`WAREHOUSE`| Yes | The location of the Iceberg warehouse, usually an S3 bucket or compatible object storage system. |
262
263
|`<connection_parameter>`| Yes | Connection parameters to establish connections with external storage. The required parameters vary based on the specific storage service and authentication methods. See the table below for a full list of the available parameters. |
0 commit comments