Skip to content

Commit ba33af1

Browse files
authored
Fix ballista-cli docs (#800)
1 parent d7a808c commit ba33af1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ballista-cli/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# Ballista Command-line Interface
2121

22-
[Ballista](df) is a distributed query execution framework, written in Rust, that uses Apache Arrow as its in-memory format.
22+
[Ballista][ballista] is a distributed query execution framework, written in Rust, that uses Apache Arrow as its in-memory format.
2323

2424
The Ballista CLI allows SQL queries to be executed by an in-process DataFusion context, or by a distributed
2525
Ballista context.
@@ -72,7 +72,7 @@ Ballista CLI v0.6.0
7272
If you want to execute the SQL in ballista by `ballista-cli`, you must build/compile `ballista-cli` first.
7373

7474
```bash
75-
cd arrow-datafusion/ballista-cli
75+
cd arrow-ballista/ballista-cli
7676
cargo build
7777
```
7878

@@ -82,4 +82,4 @@ The Ballista CLI can connect to a Ballista scheduler for query execution.
8282
ballista-cli --host localhost --port 50050
8383
```
8484

85-
[df]: https://crates.io/crates/datafusion
85+
[ballista]: https://crates.io/crates/ballista

docs/source/user-guide/cli.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ USAGE:
3535
ballista-cli [OPTIONS]
3636
3737
OPTIONS:
38-
-c, --batch-size <BATCH_SIZE> The batch size of each query, or use DataFusion default
38+
-c, --batch-size <BATCH_SIZE> The batch size of each query, or use Ballista default
3939
-f, --file <FILE>... Execute commands from file(s), then exit
4040
--format <FORMAT> [default: table] [possible values: csv, tsv, table, json,
4141
nd-json]
@@ -44,7 +44,7 @@ OPTIONS:
4444
-p, --data-path <DATA_PATH> Path to your data, default to current directory
4545
--port <PORT> Ballista scheduler port
4646
-q, --quiet Reduce printing other than the results and work quietly
47-
-r, --rc <RC>... Run the provided files on startup instead of ~/.datafusionrc
47+
-r, --rc <RC>... Run the provided files on startup instead of ~/.ballistarc
4848
-V, --version Print version information
4949
```
5050

@@ -61,7 +61,7 @@ $ echo "1,2" > data.csv
6161
The CLI can connect to a Ballista scheduler for query execution.
6262

6363
```bash
64-
datafusion-cli --host localhost --port 50050
64+
ballista-cli --host localhost --port 50050
6565
```
6666

6767
## Run Ballista CLI in Standalone Mode

0 commit comments

Comments
 (0)