Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
mkdir -p docs/_static/vortex-jni
mkdir -p docs/_static/vortex-spark
cp -r java/vortex-jni/build/docs/javadoc/* docs/_static/vortex-jni/
cp -r java/vortex-spark/build/docs/javadoc/* docs/_static/vortex-spark/
cp -r java/vortex-spark_2.13/build/docs/javadoc/* docs/_static/vortex-spark/
- name: build Python and Rust docs
run: |
uv run --all-packages make -C docs html
Expand Down
12 changes: 6 additions & 6 deletions docs/developer-guide/internals/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ Language bindings expose Vortex to non-Rust environments.

Query engine integrations allow Vortex files to be queried through existing analytics engines.

| Crate / Directory | Engine | Notes |
| -------------------- | ---------- | -------------------------------------------- |
| `vortex-datafusion/` | DataFusion | `TableProvider` and `FileFormat` integration |
| `vortex-duckdb/` | DuckDB | Table function integration |
| `java/vortex-spark/` | Spark | DataSource V2 connector via JNI |
| `java/vortex-trino/` | Trino | Trino connector (in development) |
| Crate / Directory | Engine | Notes |
|----------------------------------| ---------- |----------------------------------------------|
| `vortex-datafusion/` | DataFusion | `TableProvider` and `FileFormat` integration |
| `vortex-duckdb/` | DuckDB | Table function integration |
| `java/vortex-spark_{2.12,2.13}/` | Spark | Spark DataSource V2 connector via JNI |
| `java/vortex-trino/` | Trino | Trino connector (in development) |

## Other Crates

Expand Down
Loading