The project introduction explains the overview and goals of DataFusion, and our development efforts largely align to that vision.
DataFusion uses GitHub
issues to track
planned work. We collect related tickets using tracking issues labeled
with [EPIC]
which contain discussion and links to more detailed items.
Epics offer a high level roadmap of what the DataFusion community is thinking about. The epics are not meant to restrict possibilities, but rather help the community see where development is headed, align our work, and inspire additional contributions.
As this project is entirely driven by volunteers, we welcome contributions for items not currently covered by epics. However, before submitting a large PR, we strongly suggest and request you start a conversation using a github issue or the [email protected] mailing list to make review efficient and avoid surprises.
The current list of EPIC
s can be found here.
A quarterly roadmap will be published to give the DataFusion community visibility into the priorities of the projects contributors. This roadmap is not binding and we would welcome any/all contributions to help keep this list up to date.
- Improve data output (
COPY
,INSERT
and DataFrame) output capability #6569 - Implementation of
ARRAY
types and related functions #6980 - Write an industrial paper about DataFusion for SIGMOD #6782
- IO Improvements
- Reading, registering, and writing more file formats from both DataFrame API and SQL
- Additional options for IO including partitioning and metadata support
- Work Scheduling
- Improve predictability, observability and performance of IO and CPU-bound work
- Develop a more explicit story for managing parallelism during plan execution
- Memory Management
- Add more operators for memory limited execution
- Performance
- Incorporate row-format into operators such as aggregate
- Add row-format benchmarks
- Explore JIT-compiling complex expressions
- Explore LLVM for JIT, with inline Rust functions as the primary goal
- Improve performance of Sort and Merge using Row Format / JIT expressions
- Documentation
- General improvements to DataFusion website
- Publish design documents
- Streaming
- Create
StreamProvider
trait
- Create
- Make production ready
- Shuffle file cleanup
- Fill functional gaps between DataFusion and Ballista
- Improve task scheduling and data exchange efficiency
- Better error handling
- Task failure
- Executor lost
- Schedule restart
- Improve monitoring and logging
- Auto scaling support
- Support for multi-scheduler deployments. Initially for resiliency and fault tolerance but ultimately to support sharding for scalability and more efficient caching.
- Executor deployment grouping based on resource allocation
Extensions (datafusion-contrib)
- Add missing functionality to DataFrame and SessionContext
- Improve documentation
- Create Python bindings to use with datafusion-python
- Create multiple SQL editors
- Expose more Context and query metadata
- Support new data sources
- BigTable, HDFS, HTTP APIs
- Python binding to use with datafusion-python
- Timestamp range predicate pushdown
- Multi-threaded partition aware execution
- Production ready Rust SDK
- Create experimental implementation of
StreamProvider
trait