3 releases (breaking)
| new 0.7.0 | Jan 13, 2026 |
|---|---|
| 0.6.0 | Nov 28, 2025 |
| 0.5.0 | Oct 20, 2025 |
#2182 in Database interfaces
14,598 downloads per month
27KB
405 lines
Integration with Apache DataFusion query engine to allow querying ORC files with a SQL/DataFrame API.
Example usage
let ctx = SessionContext::new();
ctx.register_orc(
"table1",
"/path/to/file.orc",
OrcReadOptions::default(),
)
.await?;
ctx.sql("select a, b from table1")
.await?
.show()
.await?;
datafusion-orc
Experimental ORC file reader for DataFusion based on orc-rust.
Dependencies
~94MB
~1.5M SLoC