Skip to content

Dandandan/datafusion-tokomak

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

datafusion-tokomak

Experimental pluggable optimizer for DataFusion using graph rewriting.

The goal is to allow experimenting with the Egg library, and experiment with a maintainable and aggresive optimization framework.

The optimizer is WIP.

Usage example:

 let mut ctx = ExecutionContext::with_config(
    ExecutionConfig::new().add_optimizer_rule(Arc::new(Tokomak::new())),
);

ctx.register_csv("example", "tests/example.csv", CsvReadOptions::new())?;

// create a DataFusion dataframe
let df = ctx
    .sql("SELECT price * 0 from example")?;

About

Experimental optimizer for DataFusion

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages