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
This example is primarily intended for learning and experimentation.
4
-
All data is stored in data/ directory as regular files.
3
+
This is an example setup where Iceberg table data is stored on your local disk (under /tmp/ice-example/warehouse) instead of
4
+
in cloud object storage (S3, GCS, etc.).
5
+
This example is primarily intended for learning and experimentation, and development without cloud credentials.
6
+
Table data is stored under `/tmp/ice-example/warehouse` as regular files (see `warehouse` in `.ice-rest-catalog.yaml`). The catalog metadata stays under `data/ice-rest-catalog/`.
5
7
6
8
```shell
7
9
# optional: open shell containing `sqlite3` (sqlite command line client)
8
10
devbox shell
9
11
10
-
# start Iceberg REST Catalog server backed by sqlite with warehouse set to file://warehouse
12
+
# start Iceberg REST Catalog server backed by sqlite with warehouse set to file:///tmp/ice-example/warehouse
The REST catalog `warehouse` must be an absolute `file:///` URI (e.g. `file:///tmp/ice-example/warehouse`). A relative form like `file://warehouse` is rejected by the server.
0 commit comments