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 e6cfe55a Publish built docs triggered by
37b4b0ea341044c23c551dae767799ec0863483a
e6cfe55a is described below
commit e6cfe55a73bd1ef8c8cc30dde890bca35f58fecf
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Oct 12 14:38:26 2024 +0000
Publish built docs triggered by 37b4b0ea341044c23c551dae767799ec0863483a
---
_images/ballista-web-ui.png | Bin 142890 -> 0 bytes
_sources/contributors-guide/architecture.md.txt | 1 -
_sources/contributors-guide/code-organization.md.txt | 1 -
_sources/user-guide/deployment/docker-compose.md.txt | 2 --
_sources/user-guide/deployment/docker.md.txt | 4 +---
_sources/user-guide/deployment/kubernetes.md.txt | 4 +---
_sources/user-guide/deployment/quick-start.md.txt | 10 ----------
_sources/user-guide/introduction.md.txt | 4 ----
_sources/user-guide/scheduler.md.txt | 6 ------
_sources/user-guide/tuning-guide.md.txt | 2 +-
community/communication.html | 2 +-
contributors-guide/architecture.html | 3 +--
contributors-guide/code-organization.html | 3 +--
contributors-guide/development.html | 2 +-
genindex.html | 2 +-
index.html | 2 +-
search.html | 2 +-
searchindex.js | 2 +-
user-guide/cli.html | 2 +-
user-guide/configs.html | 2 +-
user-guide/deployment/cargo-install.html | 2 +-
user-guide/deployment/docker-compose.html | 3 +--
user-guide/deployment/docker.html | 6 ++----
user-guide/deployment/index.html | 2 +-
user-guide/deployment/kubernetes.html | 6 ++----
user-guide/deployment/quick-start.html | 9 +--------
user-guide/faq.html | 2 +-
user-guide/flightsql.html | 2 +-
user-guide/introduction.html | 4 +---
user-guide/metrics.html | 2 +-
user-guide/python.html | 2 +-
user-guide/rust.html | 2 +-
user-guide/scheduler.html | 12 +-----------
user-guide/tuning-guide.html | 4 ++--
34 files changed, 30 insertions(+), 84 deletions(-)
diff --git a/_images/ballista-web-ui.png b/_images/ballista-web-ui.png
deleted file mode 100644
index 389cd1cb..00000000
Binary files a/_images/ballista-web-ui.png and /dev/null differ
diff --git a/_sources/contributors-guide/architecture.md.txt
b/_sources/contributors-guide/architecture.md.txt
index 6cec186f..076f5ab9 100644
--- a/_sources/contributors-guide/architecture.md.txt
+++ b/_sources/contributors-guide/architecture.md.txt
@@ -74,7 +74,6 @@ The scheduler provides the following interfaces:
- gRPC service for submitting and managing jobs
- Flight SQL API
- REST API for monitoring jobs
-- Web user interface for monitoring jobs
Jobs are submitted to the scheduler's gRPC service from a client context,
either in the form of a logical query
plan or a SQL string. The scheduler then creates an execution graph, which
contains a physical plan broken down into
diff --git a/_sources/contributors-guide/code-organization.md.txt
b/_sources/contributors-guide/code-organization.md.txt
index e1f3e470..b130d5d1 100644
--- a/_sources/contributors-guide/code-organization.md.txt
+++ b/_sources/contributors-guide/code-organization.md.txt
@@ -35,7 +35,6 @@ This section provides links to the source code for major
areas of functionality.
- [gRPC
Service](https://github.com/apache/datafusion-ballista/blob/main/ballista/scheduler/src/scheduler_server/grpc.rs)
- [Flight SQL
Service](https://github.com/apache/datafusion-ballista/blob/main/ballista/scheduler/src/flight_sql.rs)
- [REST
API](https://github.com/apache/datafusion-ballista/tree/main/ballista/scheduler/src/api)
-- [Web
UI](https://github.com/apache/datafusion-ballista/tree/main/ballista/scheduler/ui)
- [Prometheus
Integration](https://github.com/apache/datafusion-ballista/blob/main/ballista/scheduler/src/metrics/prometheus.rs)
### ballista-executor crate
diff --git a/_sources/user-guide/deployment/docker-compose.md.txt
b/_sources/user-guide/deployment/docker-compose.md.txt
index 53501c78..7782b03f 100644
--- a/_sources/user-guide/deployment/docker-compose.md.txt
+++ b/_sources/user-guide/deployment/docker-compose.md.txt
@@ -72,8 +72,6 @@ ballista-executor_1 | [2021-08-28T15:55:22Z INFO
ballista_executor] Ballista
The scheduler listens on port 50050 and this is the port that clients will
need to connect to.
-The scheduler web UI is available on port 80 in the scheduler.
-
## Connect from the Ballista CLI
```shell
diff --git a/_sources/user-guide/deployment/docker.md.txt
b/_sources/user-guide/deployment/docker.md.txt
index b67e267e..3e15fd3f 100644
--- a/_sources/user-guide/deployment/docker.md.txt
+++ b/_sources/user-guide/deployment/docker.md.txt
@@ -67,10 +67,8 @@ Run `docker logs CONTAINER_ID` to check the output from the
process:
```
$ docker logs a756055576f3
-Starting nginx to serve Ballista Scheduler web UI on port 80
2024-02-03T14:49:47.904571Z INFO main ThreadId(01)
ballista_scheduler::cluster: Initializing Sled database in temp directory
-nginx: [warn] duplicate value "error" in /etc/nginx/sites-enabled/default:49
-nginx: [warn] duplicate value "non_idempotent" in
/etc/nginx/sites-enabled/default:49
+
2024-02-03T14:49:47.924679Z INFO main ThreadId(01)
ballista_scheduler::scheduler_process: Ballista v0.12.0 Scheduler listening on
0.0.0.0:50050
2024-02-03T14:49:47.924709Z INFO main ThreadId(01)
ballista_scheduler::scheduler_process: Starting Scheduler grpc server with task
scheduling policy of PullStaged
2024-02-03T14:49:47.925261Z INFO main ThreadId(01)
ballista_scheduler::cluster::kv: Initializing heartbeat listener
diff --git a/_sources/user-guide/deployment/kubernetes.md.txt
b/_sources/user-guide/deployment/kubernetes.md.txt
index 2bdb4fb6..f2b7e5ad 100644
--- a/_sources/user-guide/deployment/kubernetes.md.txt
+++ b/_sources/user-guide/deployment/kubernetes.md.txt
@@ -164,8 +164,6 @@ spec:
ports:
- containerPort: 50050
name: flight
- - containerPort: 80
- name: webui
volumeMounts:
- mountPath: /mnt
name: data
@@ -209,7 +207,7 @@ spec:
```
```bash
-$ kubectl apply -f cluster.yaml
+kubectl apply -f cluster.yaml
```
This should show the following output:
diff --git a/_sources/user-guide/deployment/quick-start.md.txt
b/_sources/user-guide/deployment/quick-start.md.txt
index 4abe6c69..cbb78476 100644
--- a/_sources/user-guide/deployment/quick-start.md.txt
+++ b/_sources/user-guide/deployment/quick-start.md.txt
@@ -51,16 +51,6 @@ RUST_LOG=info ./target/release/ballista-executor -c 2 -p
50051
RUST_LOG=info ./target/release/ballista-executor -c 2 -p 50052
```
-Start the Ballista UI in a new terminal session.
-
-```shell
-cd ballista/scheduler/ui
-yarn
-yarn start
-```
-
-You can now access the UI at http://localhost:3000/
-
## Running the examples
The examples can be run using the `cargo run --bin` syntax. Open a new
terminal session and run the following commands.
diff --git a/_sources/user-guide/introduction.md.txt
b/_sources/user-guide/introduction.md.txt
index fbadf13b..3f153de3 100644
--- a/_sources/user-guide/introduction.md.txt
+++ b/_sources/user-guide/introduction.md.txt
@@ -29,10 +29,6 @@ SQL and DataFrame queries can be submitted from Python and
Rust, and SQL queries
Flight SQL JDBC driver, supporting your favorite JDBC compliant tools such as
[DataGrip](datagrip)
or [tableau](tableau). For setup instructions, please see the [FlightSQL
guide](flightsql.md).
-The scheduler has a web user interface for monitoring query status as well as
a REST API.
-
-
-
## How does this compare to Apache Spark?
Although Ballista is largely inspired by Apache Spark, there are some key
differences.
diff --git a/_sources/user-guide/scheduler.md.txt
b/_sources/user-guide/scheduler.md.txt
index 447992ce..f6a3ca6a 100644
--- a/_sources/user-guide/scheduler.md.txt
+++ b/_sources/user-guide/scheduler.md.txt
@@ -19,12 +19,6 @@
# Ballista Scheduler
-## Web User Interface
-
-The scheduler provides a web user interface that allows queries to be
monitored. Details on how to start the ui is present
[here](https://github.com/apache/datafusion-ballista/tree/main/ballista/scheduler/ui)
-
-
-
## REST API
The scheduler also provides a REST API that allows jobs to be monitored.
diff --git a/_sources/user-guide/tuning-guide.md.txt
b/_sources/user-guide/tuning-guide.md.txt
index 6b850e9b..b1b61240 100644
--- a/_sources/user-guide/tuning-guide.md.txt
+++ b/_sources/user-guide/tuning-guide.md.txt
@@ -72,7 +72,7 @@ processes. The default is `pull-based`.
## Viewing Query Plans and Metrics
-The scheduler provides a web user interface as well as a REST API for
monitoring jobs. See the
+The scheduler provides a REST API for monitoring jobs. See the
[scheduler documentation](scheduler.md) for more information.
To download a query plan in dot format from the scheduler, submit a request to
the following API endpoint
diff --git a/community/communication.html b/community/communication.html
index e64a7f06..b4f0b7d0 100644
--- a/community/communication.html
+++ b/community/communication.html
@@ -362,7 +362,7 @@ quick and small design discussions. For major design change
proposals, we encour
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/contributors-guide/architecture.html
b/contributors-guide/architecture.html
index 533445e3..7b4c9fad 100644
--- a/contributors-guide/architecture.html
+++ b/contributors-guide/architecture.html
@@ -425,7 +425,6 @@ between the executor(s) and the scheduler for fetching
tasks and reporting task
<li><p>gRPC service for submitting and managing jobs</p></li>
<li><p>Flight SQL API</p></li>
<li><p>REST API for monitoring jobs</p></li>
-<li><p>Web user interface for monitoring jobs</p></li>
</ul>
<p>Jobs are submitted to the scheduler’s gRPC service from a client context,
either in the form of a logical query
plan or a SQL string. The scheduler then creates an execution graph, which
contains a physical plan broken down into
@@ -583,7 +582,7 @@ and <a class="reference external"
href="https://github.com/apache/datafusion-bal
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/contributors-guide/code-organization.html
b/contributors-guide/code-organization.html
index 7b22bed7..f64dc22e 100644
--- a/contributors-guide/code-organization.html
+++ b/contributors-guide/code-organization.html
@@ -346,7 +346,6 @@
<li><p><a class="reference external"
href="https://github.com/apache/datafusion-ballista/blob/main/ballista/scheduler/src/scheduler_server/grpc.rs">gRPC
Service</a></p></li>
<li><p><a class="reference external"
href="https://github.com/apache/datafusion-ballista/blob/main/ballista/scheduler/src/flight_sql.rs">Flight
SQL Service</a></p></li>
<li><p><a class="reference external"
href="https://github.com/apache/datafusion-ballista/tree/main/ballista/scheduler/src/api">REST
API</a></p></li>
-<li><p><a class="reference external"
href="https://github.com/apache/datafusion-ballista/tree/main/ballista/scheduler/ui">Web
UI</a></p></li>
<li><p><a class="reference external"
href="https://github.com/apache/datafusion-ballista/blob/main/ballista/scheduler/src/metrics/prometheus.rs">Prometheus
Integration</a></p></li>
</ul>
</section>
@@ -416,7 +415,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/contributors-guide/development.html
b/contributors-guide/development.html
index c382c4a2..890bd426 100644
--- a/contributors-guide/development.html
+++ b/contributors-guide/development.html
@@ -410,7 +410,7 @@ cargo<span class="w"> </span>run<span class="w">
</span>--example<span class="w"
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/genindex.html b/genindex.html
index ebd7c373..38170dd2 100644
--- a/genindex.html
+++ b/genindex.html
@@ -289,7 +289,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/index.html b/index.html
index fbbe7322..680c239d 100644
--- a/index.html
+++ b/index.html
@@ -379,7 +379,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/search.html b/search.html
index 572a308c..c7b95211 100644
--- a/search.html
+++ b/search.html
@@ -316,7 +316,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/searchindex.js b/searchindex.js
index ca4455af..4ff4ba12 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"<a name=\"complex\"/>Run a Complex Query":
[[14, "run-a-complex-query"]], "<a name=\"docker\"/> Run Docker Container":
[[14, "run-docker-container"]], "<a name=\"hello\"/>Run a \u201cHello,
World!\u201d Query": [[14, "run-a-hello-world-query"]], "<a
name=\"jdbc\"/>Download the FlightSQL JDBC Driver": [[14,
"download-the-flightsql-jdbc-driver"]], "<a name=\"prereq\"/>Prerequisites":
[[14, "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":
[[14, "run-a-complex-query"]], "<a name=\"docker\"/> Run Docker Container":
[[14, "run-docker-container"]], "<a name=\"hello\"/>Run a \u201cHello,
World!\u201d Query": [[14, "run-a-hello-world-query"]], "<a
name=\"jdbc\"/>Download the FlightSQL JDBC Driver": [[14,
"download-the-flightsql-jdbc-driver"]], "<a name=\"prereq\"/>Prerequisites":
[[14, "prerequisites"]], "<a name=\"tool\"/>Use the Driver in your Favorite
[...]
\ No newline at end of file
diff --git a/user-guide/cli.html b/user-guide/cli.html
index 05b4008e..8fc93737 100644
--- a/user-guide/cli.html
+++ b/user-guide/cli.html
@@ -478,7 +478,7 @@ Ballista<span class="w"> </span>CLI<span class="w">
</span>v8.0.0
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/configs.html b/user-guide/configs.html
index 1581d3e2..37eba9a3 100644
--- a/user-guide/configs.html
+++ b/user-guide/configs.html
@@ -537,7 +537,7 @@ round-robin-local
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/deployment/cargo-install.html
b/user-guide/deployment/cargo-install.html
index 642a4b83..b394ae08 100644
--- a/user-guide/deployment/cargo-install.html
+++ b/user-guide/deployment/cargo-install.html
@@ -362,7 +362,7 @@ manually specifying a bind port. For example:</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/deployment/docker-compose.html
b/user-guide/deployment/docker-compose.html
index bb43e6a5..8ae18c50 100644
--- a/user-guide/deployment/docker-compose.html
+++ b/user-guide/deployment/docker-compose.html
@@ -362,7 +362,6 @@ ballista-executor_1<span class="w"> </span><span
class="p">|</span><span class
</pre></div>
</div>
<p>The scheduler listens on port 50050 and this is the port that clients will
need to connect to.</p>
-<p>The scheduler web UI is available on port 80 in the scheduler.</p>
</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>
@@ -414,7 +413,7 @@ ballista-executor_1<span class="w"> </span><span
class="p">|</span><span class
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/deployment/docker.html
b/user-guide/deployment/docker.html
index fee66090..6ef269e0 100644
--- a/user-guide/deployment/docker.html
+++ b/user-guide/deployment/docker.html
@@ -374,10 +374,8 @@ a756055576f3 apache/datafusion-ballista-scheduler:0.12.0
"/root/schedul
</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>
<div class="highlight-default notranslate"><div
class="highlight"><pre><span></span>$ docker logs a756055576f3
-Starting nginx to serve Ballista Scheduler web UI on port 80
2024-02-03T14:49:47.904571Z INFO main ThreadId(01)
ballista_scheduler::cluster: Initializing Sled database in temp directory
-nginx: [warn] duplicate value "error" in
/etc/nginx/sites-enabled/default:49
-nginx: [warn] duplicate value "non_idempotent" in
/etc/nginx/sites-enabled/default:49
+
2024-02-03T14:49:47.924679Z INFO main ThreadId(01)
ballista_scheduler::scheduler_process: Ballista v0.12.0 Scheduler listening on
0.0.0.0:50050
2024-02-03T14:49:47.924709Z INFO main ThreadId(01)
ballista_scheduler::scheduler_process: Starting Scheduler grpc server with task
scheduling policy of PullStaged
2024-02-03T14:49:47.925261Z INFO main ThreadId(01)
ballista_scheduler::cluster::kv: Initializing heartbeat listener
@@ -477,7 +475,7 @@ recommended.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/deployment/index.html b/user-guide/deployment/index.html
index 7397aa06..15e827ea 100644
--- a/user-guide/deployment/index.html
+++ b/user-guide/deployment/index.html
@@ -360,7 +360,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/deployment/kubernetes.html
b/user-guide/deployment/kubernetes.html
index ae29707a..40c706e2 100644
--- a/user-guide/deployment/kubernetes.html
+++ b/user-guide/deployment/kubernetes.html
@@ -475,8 +475,6 @@ persistentvolumeclaim/data-pv-claim<span class="w">
</span>created
<span class="w"> </span><span class="nt">ports</span><span
class="p">:</span>
<span class="w"> </span><span class="p p-Indicator">-</span><span
class="w"> </span><span class="nt">containerPort</span><span
class="p">:</span><span class="w"> </span><span class="l l-Scalar
l-Scalar-Plain">50050</span>
<span class="w"> </span><span class="nt">name</span><span
class="p">:</span><span class="w"> </span><span class="l l-Scalar
l-Scalar-Plain">flight</span>
-<span class="w"> </span><span class="p p-Indicator">-</span><span
class="w"> </span><span class="nt">containerPort</span><span
class="p">:</span><span class="w"> </span><span class="l l-Scalar
l-Scalar-Plain">80</span>
-<span class="w"> </span><span class="nt">name</span><span
class="p">:</span><span class="w"> </span><span class="l l-Scalar
l-Scalar-Plain">webui</span>
<span class="w"> </span><span class="nt">volumeMounts</span><span
class="p">:</span>
<span class="w"> </span><span class="p p-Indicator">-</span><span
class="w"> </span><span class="nt">mountPath</span><span
class="p">:</span><span class="w"> </span><span class="l l-Scalar
l-Scalar-Plain">/mnt</span>
<span class="w"> </span><span class="nt">name</span><span
class="p">:</span><span class="w"> </span><span class="l l-Scalar
l-Scalar-Plain">data</span>
@@ -519,7 +517,7 @@ persistentvolumeclaim/data-pv-claim<span class="w">
</span>created
<span class="w"> </span><span class="nt">claimName</span><span
class="p">:</span><span class="w"> </span><span class="l l-Scalar
l-Scalar-Plain">data-pv-claim</span>
</pre></div>
</div>
-<div class="highlight-bash notranslate"><div
class="highlight"><pre><span></span>$<span class="w"> </span>kubectl<span
class="w"> </span>apply<span class="w"> </span>-f<span class="w">
</span>cluster.yaml
+<div class="highlight-bash notranslate"><div
class="highlight"><pre><span></span>kubectl<span class="w"> </span>apply<span
class="w"> </span>-f<span class="w"> </span>cluster.yaml
</pre></div>
</div>
<p>This should show the following output:</p>
@@ -648,7 +646,7 @@ scale the executors.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/deployment/quick-start.html
b/user-guide/deployment/quick-start.html
index 7c8b57c4..e9bf3565 100644
--- a/user-guide/deployment/quick-start.html
+++ b/user-guide/deployment/quick-start.html
@@ -367,13 +367,6 @@ executor, a unique port number must be specified for each
executor.</p>
<span class="nv">RUST_LOG</span><span class="o">=</span>info<span class="w">
</span>./target/release/ballista-executor<span class="w"> </span>-c<span
class="w"> </span><span class="m">2</span><span class="w"> </span>-p<span
class="w"> </span><span class="m">50052</span>
</pre></div>
</div>
-<p>Start the Ballista UI in a new terminal session.</p>
-<div class="highlight-shell notranslate"><div
class="highlight"><pre><span></span><span class="nb">cd</span><span class="w">
</span>ballista/scheduler/ui
-yarn
-yarn<span class="w"> </span>start
-</pre></div>
-</div>
-<p>You can now access the UI at http://localhost:3000/</p>
</section>
<section id="running-the-examples">
<h2>Running the examples<a class="headerlink" href="#running-the-examples"
title="Link to this heading">¶</a></h2>
@@ -506,7 +499,7 @@ cargo<span class="w"> </span>run<span class="w">
</span>--release<span class="w"
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/faq.html b/user-guide/faq.html
index fde09001..30d58213 100644
--- a/user-guide/faq.html
+++ b/user-guide/faq.html
@@ -359,7 +359,7 @@ for parallel query execution.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/flightsql.html b/user-guide/flightsql.html
index f9662bfb..c5a326a9 100644
--- a/user-guide/flightsql.html
+++ b/user-guide/flightsql.html
@@ -502,7 +502,7 @@ from Maven Central.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/introduction.html b/user-guide/introduction.html
index b4e48aab..7a9f2c64 100644
--- a/user-guide/introduction.html
+++ b/user-guide/introduction.html
@@ -315,8 +315,6 @@ Kubernetes. See the <a class="reference internal"
href="#deployment.md"><span cl
<p>SQL and DataFrame queries can be submitted from Python and Rust, and SQL
queries can be submitted via the Arrow
Flight SQL JDBC driver, supporting your favorite JDBC compliant tools such as
<a class="reference internal" href="#datagrip"><span class="xref
myst">DataGrip</span></a>
or <a class="reference internal" href="#tableau"><span class="xref
myst">tableau</span></a>. For setup instructions, please see the <a
class="reference internal" href="flightsql.html"><span class="std
std-doc">FlightSQL guide</span></a>.</p>
-<p>The scheduler has a web user interface for monitoring query status as well
as a REST API.</p>
-<p><img alt="Ballista Scheduler Web UI" src="../_images/ballista-web-ui.png"
/></p>
<section id="how-does-this-compare-to-apache-spark">
<h2>How does this compare to Apache Spark?<a class="headerlink"
href="#how-does-this-compare-to-apache-spark" title="Link to this
heading">¶</a></h2>
<p>Although Ballista is largely inspired by Apache Spark, there are some key
differences.</p>
@@ -380,7 +378,7 @@ in any programming language with minimal serialization
overhead.</p></li>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/metrics.html b/user-guide/metrics.html
index 99f23b7e..ceeb4467 100644
--- a/user-guide/metrics.html
+++ b/user-guide/metrics.html
@@ -372,7 +372,7 @@ into an existing metrics system by point your chosen
prometheus exporter at that
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/python.html b/user-guide/python.html
index c18c026a..fc0a67c1 100644
--- a/user-guide/python.html
+++ b/user-guide/python.html
@@ -503,7 +503,7 @@ Ballista. It is planned for a future release. The tracking
issue is <a class="re
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/rust.html b/user-guide/rust.html
index 2c1daa90..a4498288 100644
--- a/user-guide/rust.html
+++ b/user-guide/rust.html
@@ -412,7 +412,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/scheduler.html b/user-guide/scheduler.html
index 68e07fb3..6ef3dc0d 100644
--- a/user-guide/scheduler.html
+++ b/user-guide/scheduler.html
@@ -255,11 +255,6 @@
<nav id="bd-toc-nav">
<ul class="visible nav section-nav flex-column">
- <li class="toc-h2 nav-item toc-entry">
- <a class="reference internal nav-link" href="#web-user-interface">
- Web User Interface
- </a>
- </li>
<li class="toc-h2 nav-item toc-entry">
<a class="reference internal nav-link" href="#rest-api">
REST API
@@ -313,11 +308,6 @@
-->
<section id="ballista-scheduler">
<h1>Ballista Scheduler<a class="headerlink" href="#ballista-scheduler"
title="Link to this heading">¶</a></h1>
-<section id="web-user-interface">
-<h2>Web User Interface<a class="headerlink" href="#web-user-interface"
title="Link to this heading">¶</a></h2>
-<p>The scheduler provides a web user interface that allows queries to be
monitored. Details on how to start the ui is present <a class="reference
external"
href="https://github.com/apache/datafusion-ballista/tree/main/ballista/scheduler/ui">here</a></p>
-<p><img alt="Ballista Scheduler Web UI" src="../_images/ballista-web-ui.png"
/></p>
-</section>
<section id="rest-api">
<h2>REST API<a class="headerlink" href="#rest-api" title="Link to this
heading">¶</a></h2>
<p>The scheduler also provides a REST API that allows jobs to be monitored.</p>
@@ -396,7 +386,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
diff --git a/user-guide/tuning-guide.html b/user-guide/tuning-guide.html
index 8d6c7297..bd3510be 100644
--- a/user-guide/tuning-guide.html
+++ b/user-guide/tuning-guide.html
@@ -367,7 +367,7 @@ processes. The default is <code class="docutils literal
notranslate"><span class
</section>
<section id="viewing-query-plans-and-metrics">
<h2>Viewing Query Plans and Metrics<a class="headerlink"
href="#viewing-query-plans-and-metrics" title="Link to this heading">¶</a></h2>
-<p>The scheduler provides a web user interface as well as a REST API for
monitoring jobs. See the
+<p>The scheduler provides a REST API for monitoring jobs. See the
<a class="reference internal" href="scheduler.html"><span class="std
std-doc">scheduler documentation</span></a> for more information.</p>
<p>To download a query plan in dot format from the scheduler, submit a request
to the following API endpoint</p>
<div class="highlight-default notranslate"><div
class="highlight"><pre><span></span><span class="n">http</span><span
class="p">:</span><span class="o">//</span><span
class="n">localhost</span><span class="p">:</span><span
class="mi">50050</span><span class="o">/</span><span class="n">api</span><span
class="o">/</span><span class="n">job</span><span class="o">/</span><span
class="p">{</span><span class="n">job_id</span><span class="p">}</span><span
class="o">/</span><span class="n">dot</span>
@@ -424,7 +424,7 @@ processes. The default is <code class="docutils literal
notranslate"><span class
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.1.<br>
</p>
</div>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]