commit | b10b820acb6ad92b5d69810e3d4de0ef6f2d6a87 | [log] [tgz] |
---|---|---|
author | Andy Grove <agrove@apache.org> | Thu Aug 08 11:03:10 2024 -0600 |
committer | Andy Grove <agrove@apache.org> | Thu Aug 08 11:03:10 2024 -0600 |
tree | 065ad9f4589c052491d399ba5d4da456d734e78f | |
parent | 26bafec04263b7c33d5418d34419ff47d2a50e28 [diff] |
regenerate example parquet file
Website | Guides | API Docs | Chat
Apache DataFusion is a very fast, extensible query engine for building high-quality data-centric systems in Rust, using the Apache Arrow in-memory format. Python Bindings are also available. DataFusion offers SQL and Dataframe APIs, excellent performance, built-in support for CSV, Parquet, JSON, and Avro, extensive customization, and a great community.
Here are links to some important information
DataFusion is great for building projects such as domain specific query engines, new database platforms and data pipelines, query languages and more. It lets you start quickly from a fully working engine, and then customize those features specific to your use. Click Here to see a list known users.
Please see the contributor guide and communication pages for more information.
This crate has several features which can be specified in your Cargo.toml
.
Default features:
nested_expressions
: functions for working with nested type function such as array_to_string
compression
: reading files compressed with xz2
, bzip2
, flate2
, and zstd
crypto_expressions
: cryptographic functions such as md5
and sha256
datetime_expressions
: date and time functions such as to_timestamp
encoding_expressions
: encode
and decode
functionsparquet
: support for reading the Apache Parquet formatregex_expressions
: regular expression functions, such as regexp_match
unicode_expressions
: Include unicode aware functions such as character_length
unparser
: enables support to reverse LogicalPlans back into SQLOptional features:
avro
: support for reading the Apache Avro formatbacktrace
: include backtrace information in error messagespyarrow
: conversions between PyArrow and DataFusion typesserde
: enable arrow-schema's serde
featureDataFusion's Minimum Required Stable Rust Version (MSRV) policy is to support each stable Rust version for 6 months after it is released. This generally translates to support for the most recent 3 to 4 stable Rust versions.
We enforce this policy using a MSRV CI Check