Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
prrao87 committed Dec 20, 2024
1 parent 7aaa71a commit c341e8a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/content/docs/extensions/delta.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: "Delta Lake"

The `delta` extension adds support for scanning/copying from the [`Delta Lake open-source storage format`](https://delta.io/).
Delta Lake is an open-source storage framework that enables building a format agnostic Lakehouse architecture.
Using this extension, you can interact with Delta tables from within Kùzu.
Using this extension, you can interact with Delta tables from within Kùzu using the `LOAD FROM` and `COPY FROM` clauses.

The Delta functionality is not available by default, so you would first need to install the `DELTA`
extension by running the following commands:
Expand Down Expand Up @@ -141,5 +141,5 @@ COPY student FROM 's3://kuzu-sample/student-delta' (file_format='delta')

When using the Delta Lake extension in Kùzu, keep the following limitations in mind.

- Writing (i.e., exporting to) Delta files is currently not supported.
- We currently do not support scanning/copying nested data (i.e., of type `STRUCT`) in the Delta table columns.
- Writing (i.e., exporting to) Delta files from Kùzu is currently not supported.

3 changes: 2 additions & 1 deletion src/content/docs/extensions/iceberg.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: "Iceberg"

The `iceberg` extension adds support for scanning and copying from the [Apache Iceberg format](https://iceberg.apache.org/).
Iceberg is an open-source table format originally developed at Netflix for large-scale analytical datasets.
Using this extension, you can interact with Iceberg tables from within Kùzu using the `LOAD FROM` and `COPY FROM` clauses.

The Iceberg functionality is not available by default, so you would first need to install the `iceberg`
extension by running the following commands:
Expand Down Expand Up @@ -241,5 +242,5 @@ COPY student FROM 's3://path/to/iceberg_table' (file_format='iceberg', allow_mov

When using the Iceberg extension in Kùzu, keep the following limitations in mind.

- Writing (i.e., exporting to) Iceberg tables is currently not supported.
- Writing (i.e., exporting to) Iceberg tables from Kùzu is currently not supported.
- We currently do not support scanning/copying nested data (i.e., of type `STRUCT`) in the Iceberg table columns.

0 comments on commit c341e8a

Please sign in to comment.