DataFusion is an extensible query execution framework, written in Rust, that uses Apache Arrow as its in-memory format.
The DataFusion CLI allows SQL queries to be executed by an in-process DataFusion context.
```ignore USAGE: datafusion-cli [OPTIONS]
OPTIONS:
-c, --batch-size
```
Create a CSV file to query.
bash,ignore
$ echo "1,2" > data.csv
```sql,ignore $ datafusion-cli
DataFusion CLI v12.0.0
CREATE EXTERNAL TABLE foo (a INT, b INT) STORED AS CSV LOCATION 'data.csv'; 0 rows in set. Query took 0.001 seconds.
SELECT * FROM foo; +---+---+ | a | b | +---+---+ | 1 | 2 | +---+---+ 1 row in set. Query took 0.017 seconds. ```
The CLI can query data in S3 if the following environment variables are defined:
AWS_REGION
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
Note that the region must be set to the region where the bucket exists until the following issue is resolved:
Example:
```bash $ aws s3 cp test.csv s3://my-bucket/ upload: ./test.csv to s3://my-bucket/test.csv
$ export AWSREGION=us-east-1 $ export AWSSECRETACCESSKEY=******** $ export AWS_ACCESS_KEY_ID=***
$ ./target/release/datafusion-cli DataFusion CLI v12.0.0 ❯ create external table test stored as csv location 's3://my-bucket/test.csv'; 0 rows in set. Query took 0.374 seconds. ❯ select * from test; +----------+----------+ | column1 | column2 | +----------+----------+ | 1 | 2 | +----------+----------+ 1 row in set. Query took 0.171 seconds. ```
Build the datafusion-cli
by cd
into the sub-directory:
bash
cd datafusion-cli
cargo build