This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/datafusion-ballista.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new b9db1327 Publish built docs triggered by 
36af974abe215a48de10c5c3164cff98cd792464
b9db1327 is described below

commit b9db132737c078ac295612ff3225de10a608169b
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Mar 17 21:04:04 2025 +0000

    Publish built docs triggered by 36af974abe215a48de10c5c3164cff98cd792464
---
 .../user-guide/deployment/docker-compose.md.txt    | 16 ++++----
 _sources/user-guide/deployment/docker.md.txt       | 44 ++++++---------------
 searchindex.js                                     |  2 +-
 user-guide/deployment/docker-compose.html          | 16 ++++----
 user-guide/deployment/docker.html                  | 46 ++++++----------------
 5 files changed, 43 insertions(+), 81 deletions(-)

diff --git a/_sources/user-guide/deployment/docker-compose.md.txt 
b/_sources/user-guide/deployment/docker-compose.md.txt
index 7782b03f..3c7eb4f7 100644
--- a/_sources/user-guide/deployment/docker-compose.md.txt
+++ b/_sources/user-guide/deployment/docker-compose.md.txt
@@ -26,24 +26,24 @@ Docker Compose is a convenient way to launch a cluster when 
testing locally.
 Run the following commands to download the [official Docker 
image](https://github.com/apache/datafusion-ballista/pkgs/container/datafusion-ballista-standalone):
 
 ```bash
-docker pull ghcr.io/apache/datafusion-ballista-standalone:0.12.0-rc4
+docker pull ghcr.io/apache/datafusion-ballista-standalone:latest
 ```
 
 Altenatively run the following commands to clone the source repository and 
build the Docker images from source:
 
 ```bash
-git clone [email protected]:apache/datafusion-ballista.git -b 0.12.0
+git clone [email protected]:apache/datafusion-ballista.git -b latest
 cd datafusion-ballista
 ./dev/build-ballista-docker.sh
 ```
 
 This will create the following images:
 
-- `apache/datafusion-ballista-benchmarks:0.12.0`
-- `apache/datafusion-ballista-cli:0.12.0`
-- `apache/datafusion-ballista-executor:0.12.0`
-- `apache/datafusion-ballista-scheduler:0.12.0`
-- `apache/datafusion-ballista-standalone:0.12.0`
+- `apache/datafusion-ballista-benchmarks:latest`
+- `apache/datafusion-ballista-cli:latest`
+- `apache/datafusion-ballista-executor:latest`
+- `apache/datafusion-ballista-scheduler:latest`
+- `apache/datafusion-ballista-standalone:latest`
 
 ## Start a Cluster
 
@@ -75,5 +75,5 @@ The scheduler listens on port 50050 and this is the port that 
clients will need
 ## Connect from the Ballista CLI
 
 ```shell
-docker run --network=host -it apache/datafusion-ballista-cli:0.12.0 --host 
localhost --port 50050
+docker run --network=host -it apache/datafusion-ballista-cli:latest --host 
localhost --port 50050
 ```
diff --git a/_sources/user-guide/deployment/docker.md.txt 
b/_sources/user-guide/deployment/docker.md.txt
index 3e15fd3f..971d1780 100644
--- a/_sources/user-guide/deployment/docker.md.txt
+++ b/_sources/user-guide/deployment/docker.md.txt
@@ -24,24 +24,24 @@
 Run the following commands to download the [official Docker 
image](https://github.com/apache/datafusion-ballista/pkgs/container/datafusion-ballista-standalone):
 
 ```bash
-docker pull ghcr.io/apache/datafusion-ballista-standalone:0.12.0-rc4
+docker pull ghcr.io/apache/datafusion-ballista-standalone:latest
 ```
 
 Altenatively run the following commands to clone the source repository and 
build the Docker images from source:
 
 ```bash
-git clone [email protected]:apache/datafusion-ballista.git -b 0.12.0
+git clone [email protected]:apache/datafusion-ballista.git
 cd datafusion-ballista
 ./dev/build-ballista-docker.sh
 ```
 
 This will create the following images:
 
-- `apache/datafusion-ballista-benchmarks:0.12.0`
-- `apache/datafusion-ballista-cli:0.12.0`
-- `apache/datafusion-ballista-executor:0.12.0`
-- `apache/datafusion-ballista-scheduler:0.12.0`
-- `apache/datafusion-ballista-standalone:0.12.0`
+- `apache/datafusion-ballista-benchmarks:latest`
+- `apache/datafusion-ballista-cli:latest`
+- `apache/datafusion-ballista-executor:latest`
+- `apache/datafusion-ballista-scheduler:latest`
+- `apache/datafusion-ballista-standalone:latest`
 
 ## Start a Cluster
 
@@ -51,7 +51,7 @@ Start a scheduler using the following syntax:
 
 ```bash
 docker run --network=host \
- -d apache/datafusion-ballista-scheduler:0.12.0 \
+ -d apache/datafusion-ballista-scheduler:latest \
  --bind-port 50050
 ```
 
@@ -60,7 +60,7 @@ Run `docker ps` to check that the process is running:
 ```
 $ docker ps
 CONTAINER ID   IMAGE                                    COMMAND                
  CREATED         STATUS         PORTS     NAMES
-a756055576f3   apache/datafusion-ballista-scheduler:0.12.0   
"/root/scheduler-ent…"   8 seconds ago   Up 8 seconds             
xenodochial_carson
+a756055576f3   apache/datafusion-ballista-scheduler:latest   
"/root/scheduler-ent…"   8 seconds ago   Up 8 seconds             
xenodochial_carson
 ```
 
 Run `docker logs CONTAINER_ID` to check the output from the process:
@@ -82,7 +82,7 @@ Start one or more executor processes. Each executor process 
will need to listen
 
 ```bash
 docker run --network=host \
-  -d apache/datafusion-ballista-executor:0.12.0 \
+  -d apache/datafusion-ballista-executor:latest \
   --external-host localhost --bind-port 50051
 ```
 
@@ -91,8 +91,8 @@ Use `docker ps` to check that both the scheduler and 
executor(s) are now running
 ```
 $ docker ps
 CONTAINER ID   IMAGE                                    COMMAND                
  CREATED         STATUS         PORTS     NAMES
-fb8b530cee6d   apache/datafusion-ballista-executor:0.12.0    
"/root/executor-entr…"   2 seconds ago   Up 1 second              gallant_galois
-a756055576f3   apache/datafusion-ballista-scheduler:0.12.0   
"/root/scheduler-ent…"   8 seconds ago   Up 8 seconds             
xenodochial_carson
+fb8b530cee6d   apache/datafusion-ballista-executor:latest    
"/root/executor-entr…"   2 seconds ago   Up 1 second              gallant_galois
+a756055576f3   apache/datafusion-ballista-scheduler:latest   
"/root/scheduler-ent…"   8 seconds ago   Up 8 seconds             
xenodochial_carson
 ```
 
 Use `docker logs CONTAINER_ID` to check the output from the executor(s):
@@ -106,26 +106,8 @@ $ docker logs fb8b530cee6d
 2024-02-03T14:50:24.063281Z  INFO tokio-runtime-worker ThreadId(47) 
ballista_executor::execution_loop: Starting poll work loop with scheduler
 ```
 
-### Using etcd as a Backing Store
-
-_NOTE: This functionality is currently experimental_
-
-Ballista can optionally use [etcd](https://etcd.io/) as a backing store for 
the scheduler. Use the following commands
-to launch the scheduler with this option enabled.
-
-```bash
-docker run --network=host \
-  -d apache/datafusion-ballista-scheduler:0.12.0 \
-  --bind-port 50050 \
-  --config-backend etcd \
-  --etcd-urls etcd:2379
-```
-
-Please refer to the [etcd](https://etcd.io/) website for installation 
instructions. Etcd version 3.4.9 or later is
-recommended.
-
 ## Connect from the CLI
 
 ```shell
-docker run --network=host -it apache/datafusion-ballista-cli:0.12.0 --host 
localhost --port 50050
+docker run --network=host -it apache/datafusion-ballista-cli:latest --host 
localhost --port 50050
 ```
diff --git a/searchindex.js b/searchindex.js
index dd37060a..9c2b26c9 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"<a name=\"complex\"/>Run a Complex Query": 
[[15, "run-a-complex-query"]], "<a name=\"docker\"/> Run Docker Container": 
[[15, "run-docker-container"]], "<a name=\"hello\"/>Run a \u201cHello, 
World!\u201d Query": [[15, "run-a-hello-world-query"]], "<a 
name=\"jdbc\"/>Download the FlightSQL JDBC Driver": [[15, 
"download-the-flightsql-jdbc-driver"]], "<a name=\"prereq\"/>Prerequisites": 
[[15, "prerequisites"]], "<a name=\"tool\"/>Use the Driver in your Favorite 
[...]
\ No newline at end of file
+Search.setIndex({"alltitles": {"<a name=\"complex\"/>Run a Complex Query": 
[[15, "run-a-complex-query"]], "<a name=\"docker\"/> Run Docker Container": 
[[15, "run-docker-container"]], "<a name=\"hello\"/>Run a \u201cHello, 
World!\u201d Query": [[15, "run-a-hello-world-query"]], "<a 
name=\"jdbc\"/>Download the FlightSQL JDBC Driver": [[15, 
"download-the-flightsql-jdbc-driver"]], "<a name=\"prereq\"/>Prerequisites": 
[[15, "prerequisites"]], "<a name=\"tool\"/>Use the Driver in your Favorite 
[...]
\ No newline at end of file
diff --git a/user-guide/deployment/docker-compose.html 
b/user-guide/deployment/docker-compose.html
index e994e983..77420bc7 100644
--- a/user-guide/deployment/docker-compose.html
+++ b/user-guide/deployment/docker-compose.html
@@ -327,22 +327,22 @@
 <section id="build-docker-images">
 <h2>Build Docker Images<a class="headerlink" href="#build-docker-images" 
title="Link to this heading">¶</a></h2>
 <p>Run the following commands to download the <a class="reference external" 
href="https://github.com/apache/datafusion-ballista/pkgs/container/datafusion-ballista-standalone";>official
 Docker image</a>:</p>
-<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>pull<span 
class="w"> </span>ghcr.io/apache/datafusion-ballista-standalone:0.12.0-rc4
+<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>pull<span 
class="w"> </span>ghcr.io/apache/datafusion-ballista-standalone:latest
 </pre></div>
 </div>
 <p>Altenatively run the following commands to clone the source repository and 
build the Docker images from source:</p>
-<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>git<span class="w"> </span>clone<span 
class="w"> </span>[email protected]:apache/datafusion-ballista.git<span 
class="w"> </span>-b<span class="w"> </span><span class="m">0</span>.12.0
+<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>git<span class="w"> </span>clone<span 
class="w"> </span>[email protected]:apache/datafusion-ballista.git<span 
class="w"> </span>-b<span class="w"> </span>latest
 <span class="nb">cd</span><span class="w"> </span>datafusion-ballista
 ./dev/build-ballista-docker.sh
 </pre></div>
 </div>
 <p>This will create the following images:</p>
 <ul class="simple">
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-benchmarks:0.12.0</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-cli:0.12.0</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-executor:0.12.0</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-scheduler:0.12.0</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-standalone:0.12.0</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-benchmarks:latest</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-cli:latest</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-executor:latest</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-scheduler:latest</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-standalone:latest</span></code></p></li>
 </ul>
 </section>
 <section id="start-a-cluster">
@@ -370,7 +370,7 @@ ballista-executor_1<span class="w">   </span><span 
class="p">|</span><span class
 </section>
 <section id="connect-from-the-ballista-cli">
 <h2>Connect from the Ballista CLI<a class="headerlink" 
href="#connect-from-the-ballista-cli" title="Link to this heading">¶</a></h2>
-<div class="highlight-shell notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>run<span 
class="w"> </span>--network<span class="o">=</span>host<span class="w"> 
</span>-it<span class="w"> </span>apache/datafusion-ballista-cli:0.12.0<span 
class="w"> </span>--host<span class="w"> </span>localhost<span class="w"> 
</span>--port<span class="w"> </span><span class="m">50050</span>
+<div class="highlight-shell notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>run<span 
class="w"> </span>--network<span class="o">=</span>host<span class="w"> 
</span>-it<span class="w"> </span>apache/datafusion-ballista-cli:latest<span 
class="w"> </span>--host<span class="w"> </span>localhost<span class="w"> 
</span>--port<span class="w"> </span><span class="m">50050</span>
 </pre></div>
 </div>
 </section>
diff --git a/user-guide/deployment/docker.html 
b/user-guide/deployment/docker.html
index ac7c66c3..bfb07ee9 100644
--- a/user-guide/deployment/docker.html
+++ b/user-guide/deployment/docker.html
@@ -280,11 +280,6 @@
      Start Executors
     </a>
    </li>
-   <li class="toc-h3 nav-item toc-entry">
-    <a class="reference internal nav-link" 
href="#using-etcd-as-a-backing-store">
-     Using etcd as a Backing Store
-    </a>
-   </li>
   </ul>
  </li>
  <li class="toc-h2 nav-item toc-entry">
@@ -343,22 +338,22 @@
 <section id="build-docker-images">
 <h2>Build Docker Images<a class="headerlink" href="#build-docker-images" 
title="Link to this heading">¶</a></h2>
 <p>Run the following commands to download the <a class="reference external" 
href="https://github.com/apache/datafusion-ballista/pkgs/container/datafusion-ballista-standalone";>official
 Docker image</a>:</p>
-<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>pull<span 
class="w"> </span>ghcr.io/apache/datafusion-ballista-standalone:0.12.0-rc4
+<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>pull<span 
class="w"> </span>ghcr.io/apache/datafusion-ballista-standalone:latest
 </pre></div>
 </div>
 <p>Altenatively run the following commands to clone the source repository and 
build the Docker images from source:</p>
-<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>git<span class="w"> </span>clone<span 
class="w"> </span>[email protected]:apache/datafusion-ballista.git<span 
class="w"> </span>-b<span class="w"> </span><span class="m">0</span>.12.0
+<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>git<span class="w"> </span>clone<span 
class="w"> </span>[email protected]:apache/datafusion-ballista.git
 <span class="nb">cd</span><span class="w"> </span>datafusion-ballista
 ./dev/build-ballista-docker.sh
 </pre></div>
 </div>
 <p>This will create the following images:</p>
 <ul class="simple">
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-benchmarks:0.12.0</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-cli:0.12.0</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-executor:0.12.0</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-scheduler:0.12.0</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-standalone:0.12.0</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-benchmarks:latest</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-cli:latest</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-executor:latest</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-scheduler:latest</span></code></p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">apache/datafusion-ballista-standalone:latest</span></code></p></li>
 </ul>
 </section>
 <section id="start-a-cluster">
@@ -367,14 +362,14 @@
 <h3>Start a Scheduler<a class="headerlink" href="#start-a-scheduler" 
title="Link to this heading">¶</a></h3>
 <p>Start a scheduler using the following syntax:</p>
 <div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>run<span 
class="w"> </span>--network<span class="o">=</span>host<span class="w"> 
</span><span class="se">\</span>
-<span class="w"> </span>-d<span class="w"> 
</span>apache/datafusion-ballista-scheduler:0.12.0<span class="w"> </span><span 
class="se">\</span>
+<span class="w"> </span>-d<span class="w"> 
</span>apache/datafusion-ballista-scheduler:latest<span class="w"> </span><span 
class="se">\</span>
 <span class="w"> </span>--bind-port<span class="w"> </span><span 
class="m">50050</span>
 </pre></div>
 </div>
 <p>Run <code class="docutils literal notranslate"><span 
class="pre">docker</span> <span class="pre">ps</span></code> to check that the 
process is running:</p>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>$ docker ps
 CONTAINER ID   IMAGE                                    COMMAND                
  CREATED         STATUS         PORTS     NAMES
-a756055576f3   apache/datafusion-ballista-scheduler:0.12.0   
&quot;/root/scheduler-ent…&quot;   8 seconds ago   Up 8 seconds             
xenodochial_carson
+a756055576f3   apache/datafusion-ballista-scheduler:latest   
&quot;/root/scheduler-ent…&quot;   8 seconds ago   Up 8 seconds             
xenodochial_carson
 </pre></div>
 </div>
 <p>Run <code class="docutils literal notranslate"><span 
class="pre">docker</span> <span class="pre">logs</span> <span 
class="pre">CONTAINER_ID</span></code> to check the output from the process:</p>
@@ -393,15 +388,15 @@ a756055576f3   
apache/datafusion-ballista-scheduler:0.12.0   &quot;/root/schedul
 <h3>Start Executors<a class="headerlink" href="#start-executors" title="Link 
to this heading">¶</a></h3>
 <p>Start one or more executor processes. Each executor process will need to 
listen on a different port.</p>
 <div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>run<span 
class="w"> </span>--network<span class="o">=</span>host<span class="w"> 
</span><span class="se">\</span>
-<span class="w">  </span>-d<span class="w"> 
</span>apache/datafusion-ballista-executor:0.12.0<span class="w"> </span><span 
class="se">\</span>
+<span class="w">  </span>-d<span class="w"> 
</span>apache/datafusion-ballista-executor:latest<span class="w"> </span><span 
class="se">\</span>
 <span class="w">  </span>--external-host<span class="w"> </span>localhost<span 
class="w"> </span>--bind-port<span class="w"> </span><span 
class="m">50051</span>
 </pre></div>
 </div>
 <p>Use <code class="docutils literal notranslate"><span 
class="pre">docker</span> <span class="pre">ps</span></code> to check that both 
the scheduler and executor(s) are now running:</p>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>$ docker ps
 CONTAINER ID   IMAGE                                    COMMAND                
  CREATED         STATUS         PORTS     NAMES
-fb8b530cee6d   apache/datafusion-ballista-executor:0.12.0    
&quot;/root/executor-entr…&quot;   2 seconds ago   Up 1 second              
gallant_galois
-a756055576f3   apache/datafusion-ballista-scheduler:0.12.0   
&quot;/root/scheduler-ent…&quot;   8 seconds ago   Up 8 seconds             
xenodochial_carson
+fb8b530cee6d   apache/datafusion-ballista-executor:latest    
&quot;/root/executor-entr…&quot;   2 seconds ago   Up 1 second              
gallant_galois
+a756055576f3   apache/datafusion-ballista-scheduler:latest   
&quot;/root/scheduler-ent…&quot;   8 seconds ago   Up 8 seconds             
xenodochial_carson
 </pre></div>
 </div>
 <p>Use <code class="docutils literal notranslate"><span 
class="pre">docker</span> <span class="pre">logs</span> <span 
class="pre">CONTAINER_ID</span></code> to check the output from the 
executor(s):</p>
@@ -414,25 +409,10 @@ a756055576f3   
apache/datafusion-ballista-scheduler:0.12.0   &quot;/root/schedul
 </pre></div>
 </div>
 </section>
-<section id="using-etcd-as-a-backing-store">
-<h3>Using etcd as a Backing Store<a class="headerlink" 
href="#using-etcd-as-a-backing-store" title="Link to this heading">¶</a></h3>
-<p><em>NOTE: This functionality is currently experimental</em></p>
-<p>Ballista can optionally use <a class="reference external" 
href="https://etcd.io/";>etcd</a> as a backing store for the scheduler. Use the 
following commands
-to launch the scheduler with this option enabled.</p>
-<div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>run<span 
class="w"> </span>--network<span class="o">=</span>host<span class="w"> 
</span><span class="se">\</span>
-<span class="w">  </span>-d<span class="w"> 
</span>apache/datafusion-ballista-scheduler:0.12.0<span class="w"> </span><span 
class="se">\</span>
-<span class="w">  </span>--bind-port<span class="w"> </span><span 
class="m">50050</span><span class="w"> </span><span class="se">\</span>
-<span class="w">  </span>--config-backend<span class="w"> </span>etcd<span 
class="w"> </span><span class="se">\</span>
-<span class="w">  </span>--etcd-urls<span class="w"> </span>etcd:2379
-</pre></div>
-</div>
-<p>Please refer to the <a class="reference external" 
href="https://etcd.io/";>etcd</a> website for installation instructions. Etcd 
version 3.4.9 or later is
-recommended.</p>
-</section>
 </section>
 <section id="connect-from-the-cli">
 <h2>Connect from the CLI<a class="headerlink" href="#connect-from-the-cli" 
title="Link to this heading">¶</a></h2>
-<div class="highlight-shell notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>run<span 
class="w"> </span>--network<span class="o">=</span>host<span class="w"> 
</span>-it<span class="w"> </span>apache/datafusion-ballista-cli:0.12.0<span 
class="w"> </span>--host<span class="w"> </span>localhost<span class="w"> 
</span>--port<span class="w"> </span><span class="m">50050</span>
+<div class="highlight-shell notranslate"><div 
class="highlight"><pre><span></span>docker<span class="w"> </span>run<span 
class="w"> </span>--network<span class="o">=</span>host<span class="w"> 
</span>-it<span class="w"> </span>apache/datafusion-ballista-cli:latest<span 
class="w"> </span>--host<span class="w"> </span>localhost<span class="w"> 
</span>--port<span class="w"> </span><span class="m">50050</span>
 </pre></div>
 </div>
 </section>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to