From 61d61a4bf2b726674bf1193d96ed9e6fd4cdefd8 Mon Sep 17 00:00:00 2001 From: yangjiang Date: Wed, 25 May 2022 12:28:05 +0800 Subject: [PATCH 1/2] remove datafusion-cli's ballista feature --- docs/source/user-guide/cli.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/docs/source/user-guide/cli.md b/docs/source/user-guide/cli.md index 2ec9c8d49937..45c25487b35b 100644 --- a/docs/source/user-guide/cli.md +++ b/docs/source/user-guide/cli.md @@ -74,24 +74,6 @@ cd arrow-datafusion/datafusion-cli cargo build ``` -## Ballista - -The DataFusion CLI can also connect to a Ballista scheduler for query execution. - -Before you use the `datafusion-cli` to connect the Ballista scheduler, you should build/compile -the `datafusion-cli` with feature of "ballista" first. - -```bash -cd arrow-datafusion/datafusion-cli -cargo build --features ballista -``` - -Then, you can connect the Ballista by below command. - -```bash -datafusion-cli --host localhost --port 50050 -``` - ## Cli commands Available commands inside DataFusion CLI are: From 2f4dd5fb9eb45a3374f1f5f7345d6335663a67e0 Mon Sep 17 00:00:00 2001 From: yangjiang Date: Wed, 25 May 2022 12:34:54 +0800 Subject: [PATCH 2/2] more --- docs/source/user-guide/cli.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/source/user-guide/cli.md b/docs/source/user-guide/cli.md index 45c25487b35b..93c6ecc415c9 100644 --- a/docs/source/user-guide/cli.md +++ b/docs/source/user-guide/cli.md @@ -19,8 +19,7 @@ # DataFusion Command-line Interface -The DataFusion CLI allows SQL queries to be executed by an in-process DataFusion context, or by a distributed -Ballista context. +The DataFusion CLI allows SQL queries to be executed by an in-process DataFusion context. ``` USAGE: @@ -36,8 +35,6 @@ OPTIONS: -p, --data-path Path to your data, default to current directory -f, --file ... Execute commands from file(s), then exit --format Output format [default: table] [possible values: csv, tsv, table, json, ndjson] - --host Ballista scheduler host - --port Ballista scheduler port ``` ## Example @@ -67,7 +64,7 @@ DataFusion CLI v8.0.0 ## DataFusion-Cli -Build the `datafusion-cli` without the feature of ballista. +Build the `datafusion-cli`: ```bash cd arrow-datafusion/datafusion-cli