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
| s3.endpoint |https://10.0.19.25/| Configure an alternative endpoint of the S3 service for the FileIO to access. This could be used to use S3FileIO with any s3-compatible object storage service that has a different endpoint, or access a private S3 endpoint in a virtual private cloud. |
@@ -91,17 +93,25 @@ For the FileIO there are several configuration options available:
91
93
| s3.proxy-uri |http://my.proxy.com:8080| Configure the proxy server to be used by the FileIO. |
| adlfs.connection-string | AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqF...;BlobEndpoint=http://localhost/| A [connection string](https://learn.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string). This could be used to use FileIO with any adlfs-compatible object storage service that has a different endpoint (like [azurite](https://github.com/azure/azurite)). |
@@ -112,8 +122,12 @@ For the FileIO there are several configuration options available:
112
122
| adlfs.client-id | ad667be4-b811-11ed-afa1-0242ac120002 | The client-id |
113
123
| adlfs.client-secret | oCA3R6P\*ka#oa1Sms2J74z... | The client-secret |
| uri | https://rest-catalog/ws | URI identifying the REST Server |
@@ -156,6 +174,8 @@ catalog:
156
174
| rest.signing-name | execute-api | The service signing name to use when SigV4 signing a request |
157
175
| rest.authorization-url | https://auth-service/cc | Authentication URL to use for client credentials authentication (default: uri + 'v1/oauth/tokens') |
158
176
177
+
<!-- markdown-link-check-enable-->
178
+
159
179
### Headers in RESTCatalog
160
180
161
181
To configure custom headers in RESTCatalog, include them in the catalog properties with the prefix `header.`. This
Copy file name to clipboardExpand all lines: mkdocs/docs/index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ You either need to install `s3fs`, `adlfs`, `gcsfs`, or `pyarrow` to be able to
61
61
62
62
## Connecting to a catalog
63
63
64
-
Iceberg leverages the [catalog to have one centralized place to organize the tables](https://iceberg.apache.org/catalog/). This can be a traditional Hive catalog to store your Iceberg tables next to the rest, a vendor solution like the AWS Glue catalog, or an implementation of Icebergs' own [REST protocol](https://github.com/apache/iceberg/tree/main/open-api). Checkout the [configuration](configuration.md) page to find all the configuration details.
64
+
Iceberg leverages the [catalog to have one centralized place to organize the tables](https://iceberg.apache.org/concepts/catalog/). This can be a traditional Hive catalog to store your Iceberg tables next to the rest, a vendor solution like the AWS Glue catalog, or an implementation of Icebergs' own [REST protocol](https://github.com/apache/iceberg/tree/main/open-api). Checkout the [configuration](configuration.md) page to find all the configuration details.
65
65
66
66
For the sake of demonstration, we'll configure the catalog to use the `SqlCatalog` implementation, which will store information in a local `sqlite` database. We'll also configure the catalog to store data files in the local filesystem instead of an object store. This should not be used in production due to the limited scalability.
0 commit comments