Prepare for 7.x release: Update version to 7.1.0, add ChangeLog (#2187)

* Update version

* modify script to respect release branch

* Create changelog for release

* manually fix changelog

* Apply suggestions from code review

Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>

Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
11 files changed
tree: dd8ffe7453549ccd41eefd6248a15c3980b453d7
  1. .github/
  2. ballista/
  3. ballista-examples/
  4. benchmarks/
  5. ci/
  6. datafusion/
  7. datafusion-cli/
  8. datafusion-common/
  9. datafusion-examples/
  10. datafusion-expr/
  11. dev/
  12. docs/
  13. integration-tests/
  14. python/
  15. .asf.yaml
  16. .dir-locals.el
  17. .dockerignore
  18. .env
  19. .gitattributes
  20. .github_changelog_generator
  21. .gitignore
  22. .gitmodules
  23. .hadolint.yaml
  24. .pre-commit-config.yaml
  25. .readthedocs.yml
  26. Cargo.toml
  27. CHANGELOG.md
  28. CODE_OF_CONDUCT.md
  29. DEVELOPERS.md
  30. header
  31. LICENSE.txt
  32. NOTICE.txt
  33. pre-commit.sh
  34. README.md
  35. rustfmt.toml
README.md

DataFusion

DataFusion is an extensible query execution framework, written in Rust, that uses Apache Arrow as its in-memory format.

DataFusion supports both an SQL and a DataFrame API for building logical query plans as well as a query optimizer and execution engine capable of parallel execution against partitioned data sources (CSV and Parquet) using threads.

DataFusion also supports distributed query execution via the Ballista crate.

Use Cases

DataFusion is used to create modern, fast and efficient data pipelines, ETL processes, and database systems, which need the performance of Rust and Apache Arrow and want to provide their users the convenience of an SQL interface or a DataFrame API.

Why DataFusion?

  • High Performance: Leveraging Rust and Arrow's memory model, DataFusion achieves very high performance
  • Easy to Connect: Being part of the Apache Arrow ecosystem (Arrow, Parquet and Flight), DataFusion works well with the rest of the big data ecosystem
  • Easy to Embed: Allowing extension at almost any point in its design, DataFusion can be tailored for your specific usecase
  • High Quality: Extensively tested, both by itself and with the rest of the Arrow ecosystem, DataFusion can be used as the foundation for production systems.

Known Uses

Projects that adapt to or serve as plugins to DataFusion:

Here are some of the projects known to use DataFusion:

(if you know of another project, please submit a PR to add a link!)

Example Usage

Please see example usage to find how to use DataFusion.

Roadmap

Please see Roadmap for information of where the project is headed.

Architecture Overview

There is no formal document describing DataFusion's architecture yet, but the following presentations offer a good overview of its different components and how they interact together.

  • (March 2021): The DataFusion architecture is described in Query Engine Design and the Rust-Based DataFusion in Apache Arrow: recording (DataFusion content starts ~ 15 minutes in) and slides
  • (February 2021): How DataFusion is used within the Ballista Project is described in *Ballista: Distributed Compute with Rust and Apache Arrow: recording

User's guide

Please see User Guide for more information about DataFusion.

Developer's guide

Please see Developers Guide for information about developing DataFusion.