2 unstable releases
| 0.6.0 | Nov 28, 2025 |
|---|---|
| 0.5.0 | Oct 20, 2025 |
#1960 in Database interfaces
14,339 downloads per month
27KB
392 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
~86MB
~1.5M SLoC