Crates.io | ballista-cli |
lib.rs | ballista-cli |
version | |
source | src |
created_at | 2022-05-16 13:03:26.252328+00 |
updated_at | 2025-03-05 00:49:20.88105+00 |
description | Command Line Client for Ballista distributed query engine. |
homepage | https://github.com/apache/arrow-ballista |
repository | https://github.com/apache/arrow-ballista |
max_upload_size | |
id | 587644 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Ballista is a distributed query execution framework, written in Rust, that uses Apache Arrow as its in-memory format.
The Ballista CLI allows SQL queries to be executed by an in-process DataFusion context, or by a distributed Ballista context.
USAGE:
ballista-cli [OPTIONS]
OPTIONS:
-c, --batch-size <BATCH_SIZE>
The batch size of each query, or use Ballista default
--color
Enables console syntax highlighting
--concurrent-tasks <CONCURRENT_TASKS>
The max concurrent tasks, only for Ballista local mode. Default: all available cores
-f, --file <FILE>...
Execute commands from file(s), then exit
--format <FORMAT>
[default: table] [possible values: csv, tsv, table, json, nd-json, automatic]
-h, --help
Print help information
--host <HOST>
Ballista scheduler host
-p, --data-path <DATA_PATH>
Path to your data, default to current directory
--port <PORT>
Ballista scheduler port
-q, --quiet
Reduce printing other than the results and work quietly
-r, --rc <RC>...
Run the provided files on startup instead of ~/.ballistarc
-V, --version
Print version information
Create a CSV file to query.
$ echo "1,2" > data.csv
$ ballista-cli
Ballista CLI v0.12.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.
> \q
If you want to execute the SQL in ballista by ballista-cli
, you must build/compile ballista-cli
first.
cd arrow-ballista/ballista-cli
cargo build
cargo install --path .
The Ballista CLI can connect to a Ballista scheduler for query execution.
ballista-cli --host localhost --port 50050