datafusion 18.0.0

DataFusion is an in-memory query engine that uses Apache Arrow as the memory model
Documentation
<!---
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership.  The ASF licenses this file
  to you under the Apache License, Version 2.0 (the
  "License"); you may not use this file except in compliance
  with the License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, either express or implied.  See the License for the
  specific language governing permissions and limitations
  under the License.
-->

# DataFusion

<img src="docs/source/_static/images/DataFusion-Logo-Background-White.svg" width="256" alt="logo"/>

DataFusion is a very fast, extensible query engine for building high-quality data-centric systems in
[Rust](http://rustlang.org), using the [Apache Arrow](https://arrow.apache.org)
in-memory format.

DataFusion offers SQL and Dataframe APIs, excellent [performance](https://benchmark.clickhouse.com/), built-in support for CSV, Parquet, JSON, and Avro, extensive customization, and a great community.

[![Coverage Status](https://codecov.io/gh/apache/arrow-datafusion/rust/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/arrow-datafusion?branch=master)

## Features

- Feature-rich [SQL support]https://arrow.apache.org/datafusion/user-guide/sql/index.html and [DataFrame API]https://arrow.apache.org/datafusion/user-guide/dataframe.html
- Blazingly fast, vectorized, multi-threaded, streaming execution engine.
- Native support for Parquet, CSV, JSON, and Avro file formats. Support
  for custom file formats and non file datasources via the `TableProvider` trait.
- Many extension points: user defined scalar/aggregate/window functions, DataSources, SQL,
  other query languages, custom plan and execution nodes, optimizer passes, and more.
- Streaming, asynchronous IO directly from popular object stores, including AWS S3,
  Azure Blob Storage, and Google Cloud Storage. Other storage systems are supported via the
  `ObjectStore` trait.
- [Excellent Documentation]https://docs.rs/datafusion/latest and a
  [welcoming community]https://arrow.apache.org/datafusion/contributor-guide/communication.html.
- A state of the art query optimizer with projection and filter pushdown, sort aware optimizations,
  automatic join reordering, expression coercion, and more.
- Permissive Apache 2.0 License, Apache Software Foundation governance
- Written in [Rust]https://www.rust-lang.org/, a modern system language with development
  productivity similar to Java or Golang, the performance of C++, and
  [loved by programmers everywhere]https://insights.stackoverflow.com/survey/2021#technology-most-loved-dreaded-and-wanted.
- Support for [Substrait]https://substrait.io/ for query plan serialization, making it easier to integrate DataFusion  
  with other projects, and to pass plans across language boundaries.

## Use Cases

DataFusion can be used without modification as an embedded SQL
engine or can be customized and used as a foundation for
building new systems. Here are some examples of systems built using DataFusion:

- Specialized Analytical Database systems such as [CeresDB] and more general spark like system such a [Ballista].
- New query language engines such as [prql-query] and accelerators such as [VegaFusion]
- Research platform for new Database Systems, such as [Flock]
- SQL support to another library, such as [dask sql]
- Streaming data platforms such as [Synnada]
- Tools for reading / sorting / transcoding Parquet, CSV, AVRO, and JSON files such as [qv]
- A faster Spark runtime replacement [Blaze]

By using DataFusion, the projects are freed to focus on their specific
features, and avoid reimplementing general (but still necessary)
features such as an expression representation, standard optimizations,
execution plans, file format support, etc.

## Why DataFusion?

- _High Performance_: Leveraging Rust and Arrow's memory model, DataFusion is very fast.
- _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 use case
- _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.

## Comparisons with other projects

Here is a comparison with similar projects that may help understand
when DataFusion might be be suitable and unsuitable for your needs:

- [DuckDB]http://www.duckdb.org is an open source, in process analytic database.
  Like DataFusion, it supports very fast execution, both from its custom file format
  and directly from parquet files. Unlike DataFusion, it is written in C/C++ and it
  is primarily used directly by users as a serverless database and query system rather
  than as a library for building such database systems.

- [Polars]http://pola.rs: Polars is one of the fastest DataFrame
  libraries at the time of writing. Like DataFusion, it is also
  written in Rust and uses the Apache Arrow memory model, but unlike
  DataFusion it does not provide SQL nor as many extension points.

- [Facebook Velox]https://engineering.fb.com/2022/08/31/open-source/velox/
  is an execution engine. Like DataFusion, Velox aims to
  provide a reusable foundation for building database-like systems. Unlike DataFusion,
  it is written in C/C++ and does not include a SQL frontend or planning /optimization
  framework.

- [Databend]https://github.com/datafuselabs/databend is a complete
  database system. Like DataFusion it is also written in Rust and
  utilizes the Apache Arrow memory model, but unlike DataFusion it
  targets end-users rather than developers of other database systems.

## DataFusion Community Extensions

There are a number of community projects that extend DataFusion or
provide integrations with other systems.

### Language Bindings

- [datafusion-c]https://github.com/datafusion-contrib/datafusion-c
- [datafusion-python]https://github.com/apache/arrow-datafusion-python
- [datafusion-ruby]https://github.com/datafusion-contrib/datafusion-ruby
- [datafusion-java]https://github.com/datafusion-contrib/datafusion-java

### Integrations

- [datafusion-bigtable]https://github.com/datafusion-contrib/datafusion-bigtable
- [datafusion-catalogprovider-glue]https://github.com/datafusion-contrib/datafusion-catalogprovider-glue

## Known Uses

Here are some of the projects known to use DataFusion:

- [Ballista]https://github.com/apache/arrow-ballista Distributed SQL Query Engine
- [Blaze]https://github.com/blaze-init/blaze Spark accelerator with DataFusion at its core
- [CeresDB]https://github.com/CeresDB/ceresdb Distributed Time-Series Database
- [Cloudfuse Buzz]https://github.com/cloudfuse-io/buzz-rust
- [CnosDB]https://github.com/cnosdb/cnosdb Open Source Distributed Time Series Database
- [Cube Store]https://github.com/cube-js/cube.js/tree/master/rust
- [Dask SQL]https://github.com/dask-contrib/dask-sql Distributed SQL query engine in Python
- [datafusion-tui]https://github.com/datafusion-contrib/datafusion-tui Text UI for DataFusion
- [delta-rs]https://github.com/delta-io/delta-rs Native Rust implementation of Delta Lake
- [Flock]https://github.com/flock-lab/flock
- [GreptimeDB]https://github.com/GreptimeTeam/greptimedb Open Source & Cloud Native Distributed Time Series Database
- [InfluxDB IOx]https://github.com/influxdata/influxdb_iox Time Series Database
- [Kamu]https://github.com/kamu-data/kamu-cli/ Planet-scale streaming data pipeline
- [Parseable]https://github.com/parseablehq/parseable Log storage and observability platform
- [qv]https://github.com/timvw/qv Quickly view your data
- [ROAPI]https://github.com/roapi/roapi
- [Seafowl]https://github.com/splitgraph/seafowl CDN-friendly analytical database
- [Synnada]https://synnada.ai/ Streaming-first framework for data products
- [Tensorbase]https://github.com/tensorbase/tensorbase
- [VegaFusion]https://vegafusion.io/ Server-side acceleration for the [Vega]https://vega.github.io/ visualization grammar

[ballista]: https://github.com/apache/arrow-ballista
[blaze]: https://github.com/blaze-init/blaze
[ceresdb]: https://github.com/CeresDB/ceresdb
[cloudfuse buzz]: https://github.com/cloudfuse-io/buzz-rust
[cnosdb]: https://github.com/cnosdb/cnosdb
[cube store]: https://github.com/cube-js/cube.js/tree/master/rust
[dask sql]: https://github.com/dask-contrib/dask-sql
[datafusion-tui]: https://github.com/datafusion-contrib/datafusion-tui
[delta-rs]: https://github.com/delta-io/delta-rs
[flock]: https://github.com/flock-lab/flock
[kamu]: https://github.com/kamu-data/kamu-cli
[greptime db]: https://github.com/GreptimeTeam/greptimedb
[influxdb iox]: https://github.com/influxdata/influxdb_iox
[parseable]: https://github.com/parseablehq/parseable
[prql-query]: https://github.com/prql/prql-query
[qv]: https://github.com/timvw/qv
[roapi]: https://github.com/roapi/roapi
[seafowl]: https://github.com/splitgraph/seafowl
[synnada]: https://synnada.ai/
[tensorbase]: https://github.com/tensorbase/tensorbase
[vegafusion]: https://vegafusion.io/ "if you know of another project, please submit a PR to add a link!"

## Examples

Please see the [example usage](https://arrow.apache.org/datafusion/user-guide/example-usage.html) in the user guide and the [datafusion-examples](https://github.com/apache/arrow-datafusion/tree/master/datafusion-examples) crate for more information on how to use DataFusion.

## Roadmap

Please see [Roadmap](docs/source/contributor-guide/roadmap.md) 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.

- (July 2022): DataFusion and Arrow: Supercharge Your Data Analytical Tool with a Rusty Query Engine: [recording]https://www.youtube.com/watch?v=Rii1VTn3seQ and [slides]https://docs.google.com/presentation/d/1q1bPibvu64k2b7LPi7Yyb0k3gA1BiUYiUbEklqW1Ckc/view#slide=id.g11054eeab4c_0_1165
- (March 2021): The DataFusion architecture is described in _Query Engine Design and the Rust-Based DataFusion in Apache Arrow_: [recording]https://www.youtube.com/watch?v=K6eCAVEk4kU (DataFusion content starts [~ 15 minutes in]https://www.youtube.com/watch?v=K6eCAVEk4kU&t=875s) and [slides]https://www.slideshare.net/influxdata/influxdb-iox-tech-talks-query-engine-design-and-the-rustbased-datafusion-in-apache-arrow-244161934
- (February 2021): How DataFusion is used within the Ballista Project is described in \*Ballista: Distributed Compute with Rust and Apache Arrow: [recording]https://www.youtube.com/watch?v=ZZHQaOap9pQ

## User Guide

Please see [User Guide](https://arrow.apache.org/datafusion/) for more information about DataFusion.

## Contributor Guide

Please see [Contributor Guide](docs/source/contributor-guide/index.md) for information about contributing to DataFusion.