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 dba6512a Publish built docs triggered by 
559bcf29ed0719d4fb133bba4d39e48c18f45891
dba6512a is described below

commit dba6512a6314ba50f95ce6038d55cd89e956b0f1
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Apr 18 16:08:55 2025 +0000

    Publish built docs triggered by 559bcf29ed0719d4fb133bba4d39e48c18f45891
---
 _sources/user-guide/configs.md.txt        |   1 -
 _sources/user-guide/flightsql.md.txt      | 103 ------
 community/communication.html              |   5 -
 contributors-guide/architecture.html      |   5 -
 contributors-guide/code-organization.html |   5 -
 contributors-guide/development.html       |   5 -
 genindex.html                             |   5 -
 index.html                                |   6 -
 objects.inv                               | Bin 796 -> 765 bytes
 search.html                               |   5 -
 searchindex.js                            |   2 +-
 user-guide/cli.html                       |  11 +-
 user-guide/configs.html                   |  10 -
 user-guide/deployment/cargo-install.html  |   5 -
 user-guide/deployment/docker-compose.html |   5 -
 user-guide/deployment/docker.html         |   5 -
 user-guide/deployment/index.html          |   5 -
 user-guide/deployment/kubernetes.html     |   5 -
 user-guide/deployment/quick-start.html    |   5 -
 user-guide/extending-components.html      |   5 -
 user-guide/faq.html                       |   5 -
 user-guide/flightsql.html                 | 526 ------------------------------
 user-guide/introduction.html              |   7 +-
 user-guide/metrics.html                   |   5 -
 user-guide/python.html                    |   5 -
 user-guide/rust.html                      |  11 +-
 user-guide/scheduler.html                 |   5 -
 user-guide/tuning-guide.html              |   5 -
 28 files changed, 8 insertions(+), 759 deletions(-)

diff --git a/_sources/user-guide/configs.md.txt 
b/_sources/user-guide/configs.md.txt
index 287b5fe0..5e909e15 100644
--- a/_sources/user-guide/configs.md.txt
+++ b/_sources/user-guide/configs.md.txt
@@ -107,4 +107,3 @@ round-robin-local
 | executor-slots-policy                        | Utf8   | bias        | Sets 
the executor slots policy for the scheduler, possible values: bias, 
round-robin, round-robin-local. For a cluster with single scheduler, 
round-robin-local is recommended. |
 | finished-job-data-clean-up-interval-seconds  | UInt64 | 300         | Sets 
the delayed interval for cleaning up finished job data, mainly the shuffle 
data, 0 means the cleaning up is disabled.                                      
                |
 | finished-job-state-clean-up-interval-seconds | UInt64 | 3600        | Sets 
the delayed interval for cleaning up finished job state stored in the backend, 
0 means the cleaning up is disabled.                                            
            |
-| advertise-flight-sql-endpoint                | Utf8   | N/A         | Sets 
the route endpoint for proxying flight sql results via scheduler.               
                                                                                
           |
diff --git a/_sources/user-guide/flightsql.md.txt 
b/_sources/user-guide/flightsql.md.txt
deleted file mode 100644
index b6bb71f4..00000000
--- a/_sources/user-guide/flightsql.md.txt
+++ /dev/null
@@ -1,103 +0,0 @@
-<!---
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you under the Apache License, Version 2.0 (the
-  "License"); you may not use this file except in compliance
-  with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing,
-  software distributed under the License is distributed on an
-  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  KIND, either express or implied.  See the License for the
-  specific language governing permissions and limitations
-  under the License.
--->
-
-# Using FlightSQL to Connect to Ballista
-
-One of the easiest ways to start with Ballista is to plug it into your 
existing data infrastructure using support for Arrow Flight SQL JDBC.
-
-> This is optional scheduler feature which should be enabled with `flight-sql` 
feature
-
-Getting started involves these main steps:
-
-1. [Installing prerequisites](#prereq)
-2. Run the [Ballista docker container](#docker)
-3. Download the [Arrow Flight SQL JDBC Driver](#jdbc)
-4. [Install the driver](#tool) into your favorite JDBC tool
-5. Run a ["hello, world!"](#hello) query
-6. Register a table and run more complicated queries
-
-## <a name="prereq"/>Prerequisites
-
-### Ubuntu
-
-```shell
-sudo apt-get update
-sudo apt-get install -y docker.io
-```
-
-### MacOS
-
-```shell
-brew install docker
-```
-
-### Windows
-
-```shell
-choco install docker-desktop
-```
-
-## <a name="docker"/> Run Docker Container
-
-```shell
-docker run -p 50050:50050 --rm 
ghcr.io/apache/datafusion-ballista-standalone:0.10.0
-```
-
-## <a name="jdbc"/>Download the FlightSQL JDBC Driver
-
-Download the [FlightSQL JDBC 
Driver](https://repo1.maven.org/maven2/org/apache/arrow/flight-sql-jdbc-driver/10.0.0/flight-sql-jdbc-driver-10.0.0.jar)
-from Maven Central.
-
-## <a name="tool"/>Use the Driver in your Favorite Data Tool
-
-The important pieces of information:
-
-| Key              | Value                                              |
-| ---------------- | -------------------------------------------------- |
-| Driver file      | flight-sql-jdbc-driver-10.0.0-SNAPSHOT.jar         |
-| Class Name       | org.apache.arrow.driver.jdbc.ArrowFlightJdbcDriver |
-| Authentication   | User & Password                                    |
-| Username         | admin                                              |
-| Password         | password                                           |
-| Advanced Options | useEncryption=false                                |
-| URL              | jdbc:arrow-flight://127.0.0.1:50050                |
-
-## <a name="hello"/>Run a "Hello, World!" Query
-
-```sql
-select 'Hello from DataFusion Ballista!' as greeting;
-```
-
-## <a name="complex"/>Run a Complex Query
-
-In order to run queries against data, tables need to be "registered" with the 
current session (and re-registered upon each new connection).
-
-To register the built-in demo table, use the syntax below:
-
-```sql
-create external table taxi stored as parquet location 
'/data/yellow_tripdata_2022-01.parquet';
-```
-
-Once the table has been registered, all the normal SQL queries can be 
performed:
-
-```sql
-select * from taxi limit 10;
-```
-
-🎉 Happy querying! 🎉
diff --git a/community/communication.html b/community/communication.html
index 92122465..9fbffa32 100644
--- a/community/communication.html
+++ b/community/communication.html
@@ -144,11 +144,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../user-guide/flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../user-guide/cli.html">
    SQL CLI
diff --git a/contributors-guide/architecture.html 
b/contributors-guide/architecture.html
index c531909f..33b6c344 100644
--- a/contributors-guide/architecture.html
+++ b/contributors-guide/architecture.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../user-guide/flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../user-guide/cli.html">
    SQL CLI
diff --git a/contributors-guide/code-organization.html 
b/contributors-guide/code-organization.html
index 9790180b..23621c8b 100644
--- a/contributors-guide/code-organization.html
+++ b/contributors-guide/code-organization.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../user-guide/flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../user-guide/cli.html">
    SQL CLI
diff --git a/contributors-guide/development.html 
b/contributors-guide/development.html
index ccc6576c..476188da 100644
--- a/contributors-guide/development.html
+++ b/contributors-guide/development.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../user-guide/flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../user-guide/cli.html">
    SQL CLI
diff --git a/genindex.html b/genindex.html
index e2b4a3cf..9518f56a 100644
--- a/genindex.html
+++ b/genindex.html
@@ -142,11 +142,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="user-guide/flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="user-guide/cli.html">
    SQL CLI
diff --git a/index.html b/index.html
index 5ed2d814..077e8860 100644
--- a/index.html
+++ b/index.html
@@ -144,11 +144,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="user-guide/flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="user-guide/cli.html">
    SQL CLI
@@ -316,7 +311,6 @@
 <ul>
 <li class="toctree-l1"><a class="reference internal" 
href="user-guide/python.html">Python</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="user-guide/rust.html">Rust</a></li>
-<li class="toctree-l1"><a class="reference internal" 
href="user-guide/flightsql.html">Flight SQL JDBC</a></li>
 <li class="toctree-l1"><a class="reference internal" 
href="user-guide/cli.html">SQL CLI</a></li>
 </ul>
 </div>
diff --git a/objects.inv b/objects.inv
index 4c6df4b6..451829d3 100644
Binary files a/objects.inv and b/objects.inv differ
diff --git a/search.html b/search.html
index 8e3884a8..e4409eec 100644
--- a/search.html
+++ b/search.html
@@ -149,11 +149,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="user-guide/flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="user-guide/cli.html">
    SQL CLI
diff --git a/searchindex.js b/searchindex.js
index 2af33f0b..5421a8c4 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": {"Apache DataFusion Ballista": [[4, null]], 
"Arrow-native": [[1, "arrow-native"]], "Autoscaling Executors": [[11, 
"autoscaling-executors"]], "Ballista Architecture": [[1, null]], "Ballista Code 
Organization": [[2, null]], "Ballista Command-line Interface": [[5, null]], 
"Ballista Configuration Settings": [[6, "ballista-configuration-settings"]], 
"Ballista Development": [[3, null]], "Ballista Python Bindings": [[17, null]], 
"Ballista Quickstart": [[12, null]], [...]
\ No newline at end of file
diff --git a/user-guide/cli.html b/user-guide/cli.html
index 3bfcfd05..e25381fd 100644
--- a/user-guide/cli.html
+++ b/user-guide/cli.html
@@ -34,7 +34,7 @@
     <link rel="index" title="Index" href="../genindex.html" />
     <link rel="search" title="Search" href="../search.html" />
     <link rel="next" title="Configuration" href="configs.html" />
-    <link rel="prev" title="Using FlightSQL to Connect to Ballista" 
href="flightsql.html" />
+    <link rel="prev" title="Distributing DataFusion with Ballista" 
href="rust.html" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="docsearch:language" content="en">
     
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1 current active">
   <a class="current reference internal" href="#">
    SQL CLI
@@ -447,11 +442,11 @@ Ballista<span class="w"> </span>CLI<span class="w"> 
</span>v8.0.0
               
               <!-- Previous / next buttons -->
 <div class='prev-next-area'>
-    <a class='left-prev' id="prev-link" href="flightsql.html" title="previous 
page">
+    <a class='left-prev' id="prev-link" href="rust.html" title="previous page">
         <i class="fas fa-angle-left"></i>
         <div class="prev-next-info">
             <p class="prev-next-subtitle">previous</p>
-            <p class="prev-next-title">Using FlightSQL to Connect to 
Ballista</p>
+            <p class="prev-next-title">Distributing DataFusion with 
Ballista</p>
         </div>
     </a>
     <a class='right-next' id="next-link" href="configs.html" title="next page">
diff --git a/user-guide/configs.html b/user-guide/configs.html
index 0e3342b2..4671f5fb 100644
--- a/user-guide/configs.html
+++ b/user-guide/configs.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="cli.html">
    SQL CLI
@@ -421,11 +416,6 @@ round-robin-local
 <td><p>3600</p></td>
 <td><p>Sets the delayed interval for cleaning up finished job state stored in 
the backend, 0 means the cleaning up is disabled.</p></td>
 </tr>
-<tr class="row-odd"><td><p>advertise-flight-sql-endpoint</p></td>
-<td><p>Utf8</p></td>
-<td><p>N/A</p></td>
-<td><p>Sets the route endpoint for proxying flight sql results via 
scheduler.</p></td>
-</tr>
 </tbody>
 </table>
 </section>
diff --git a/user-guide/deployment/cargo-install.html 
b/user-guide/deployment/cargo-install.html
index 437a287d..768c6ebe 100644
--- a/user-guide/deployment/cargo-install.html
+++ b/user-guide/deployment/cargo-install.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../cli.html">
    SQL CLI
diff --git a/user-guide/deployment/docker-compose.html 
b/user-guide/deployment/docker-compose.html
index 77420bc7..b1b0c071 100644
--- a/user-guide/deployment/docker-compose.html
+++ b/user-guide/deployment/docker-compose.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../cli.html">
    SQL CLI
diff --git a/user-guide/deployment/docker.html 
b/user-guide/deployment/docker.html
index bfb07ee9..0971102e 100644
--- a/user-guide/deployment/docker.html
+++ b/user-guide/deployment/docker.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../cli.html">
    SQL CLI
diff --git a/user-guide/deployment/index.html b/user-guide/deployment/index.html
index 38afbfee..75126f99 100644
--- a/user-guide/deployment/index.html
+++ b/user-guide/deployment/index.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../cli.html">
    SQL CLI
diff --git a/user-guide/deployment/kubernetes.html 
b/user-guide/deployment/kubernetes.html
index 99c4cd87..0dd5e261 100644
--- a/user-guide/deployment/kubernetes.html
+++ b/user-guide/deployment/kubernetes.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../cli.html">
    SQL CLI
diff --git a/user-guide/deployment/quick-start.html 
b/user-guide/deployment/quick-start.html
index 445a1404..d9e443d9 100644
--- a/user-guide/deployment/quick-start.html
+++ b/user-guide/deployment/quick-start.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="../cli.html">
    SQL CLI
diff --git a/user-guide/extending-components.html 
b/user-guide/extending-components.html
index 25115811..ea17cc21 100644
--- a/user-guide/extending-components.html
+++ b/user-guide/extending-components.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="cli.html">
    SQL CLI
diff --git a/user-guide/faq.html b/user-guide/faq.html
index 144624a1..3d119ed8 100644
--- a/user-guide/faq.html
+++ b/user-guide/faq.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="cli.html">
    SQL CLI
diff --git a/user-guide/flightsql.html b/user-guide/flightsql.html
deleted file mode 100644
index edfc3df0..00000000
--- a/user-guide/flightsql.html
+++ /dev/null
@@ -1,526 +0,0 @@
-<!DOCTYPE html>
-
-<html lang="en" data-content_root="../">
-  <head>
-    <meta charset="utf-8" />
-    <meta name="viewport" content="width=device-width, initial-scale=1.0" 
/><meta name="viewport" content="width=device-width, initial-scale=1" />
-
-    <title>Using FlightSQL to Connect to Ballista &#8212; Apache DataFusion 
Ballista  documentation</title>
-    
-    <link href="../_static/styles/theme.css?digest=1999514e3f237ded88cf" 
rel="stylesheet">
-<link 
href="../_static/styles/pydata-sphinx-theme.css?digest=1999514e3f237ded88cf" 
rel="stylesheet">
-  
-    
-    <link rel="stylesheet"
-      href="../_static/vendor/fontawesome/5.13.0/css/all.min.css">
-    <link rel="preload" as="font" type="font/woff2" crossorigin
-      href="../_static/vendor/fontawesome/5.13.0/webfonts/fa-solid-900.woff2">
-    <link rel="preload" as="font" type="font/woff2" crossorigin
-      href="../_static/vendor/fontawesome/5.13.0/webfonts/fa-brands-400.woff2">
-  
-    
-      
-  
-    
-    <link rel="stylesheet" type="text/css" 
href="../_static/pygments.css?v=8f2a1f02" />
-    <link rel="stylesheet" type="text/css" 
href="../_static/styles/pydata-sphinx-theme.css?v=1140d252" />
-    <link rel="stylesheet" type="text/css" 
href="../_static/theme_overrides.css?v=ef9fea58" />
-    
-    <link rel="preload" as="script" 
href="../_static/scripts/pydata-sphinx-theme.js?digest=1999514e3f237ded88cf">
-  
-    <script src="../_static/documentation_options.js?v=8a448e45"></script>
-    <script src="../_static/doctools.js?v=9bcbadda"></script>
-    <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
-    <link rel="index" title="Index" href="../genindex.html" />
-    <link rel="search" title="Search" href="../search.html" />
-    <link rel="next" title="Ballista Command-line Interface" href="cli.html" />
-    <link rel="prev" title="Distributing DataFusion with Ballista" 
href="rust.html" />
-    <meta name="viewport" content="width=device-width, initial-scale=1" />
-    <meta name="docsearch:language" content="en">
-    
-
-    <!-- Google Analytics -->
-    
-  </head>
-  <body data-spy="scroll" data-target="#bd-toc-nav" data-offset="80">
-    
-    <div class="container-fluid" id="banner"></div>
-
-    
-
-
-    <div class="container-xl">
-      <div class="row">
-          
-            
-            <!-- Only show if we have sidebars configured, else just a small 
margin  -->
-            <div class="col-12 col-md-3 bd-sidebar">
-              <div class="sidebar-start-items">
-<a class="navbar-brand" href="../index.html">
-  <img src="../_static/images/ballista-logo.png" class="logo" alt="logo">
-</a>
-
-<form class="bd-search d-flex align-items-center" action="../search.html" 
method="get">
-  <i class="icon fas fa-search"></i>
-  <input type="search" class="form-control" name="q" id="search-input" 
placeholder="Search the docs ..." aria-label="Search the docs ..." 
autocomplete="off" >
-</form>
-
-<nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
-  <div class="bd-toc-item active">
-    
-    <p aria-level="2" class="caption" role="heading">
- <span class="caption-text">
-  User Guide
- </span>
-</p>
-<ul class="nav bd-sidenav">
- <li class="toctree-l1">
-  <a class="reference internal" href="introduction.html">
-   Introduction
-  </a>
- </li>
-</ul>
-<p aria-level="2" class="caption" role="heading">
- <span class="caption-text">
-  Cluster Deployment
- </span>
-</p>
-<ul class="nav bd-sidenav">
- <li class="toctree-l1 has-children">
-  <a class="reference internal" href="deployment/index.html">
-   Deployment
-  </a>
-  <input class="toctree-checkbox" id="toctree-checkbox-1" 
name="toctree-checkbox-1" type="checkbox"/>
-  <label for="toctree-checkbox-1">
-   <i class="fas fa-chevron-down">
-   </i>
-  </label>
-  <ul>
-   <li class="toctree-l2">
-    <a class="reference internal" href="deployment/quick-start.html">
-     Quick Start
-    </a>
-   </li>
-   <li class="toctree-l2">
-    <a class="reference internal" href="deployment/cargo-install.html">
-     Cargo Install
-    </a>
-   </li>
-   <li class="toctree-l2">
-    <a class="reference internal" href="deployment/docker.html">
-     Docker
-    </a>
-   </li>
-   <li class="toctree-l2">
-    <a class="reference internal" href="deployment/docker-compose.html">
-     Docker Compose
-    </a>
-   </li>
-   <li class="toctree-l2">
-    <a class="reference internal" href="deployment/kubernetes.html">
-     Kubernetes
-    </a>
-   </li>
-  </ul>
- </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="scheduler.html">
-   Scheduler
-  </a>
- </li>
-</ul>
-<p aria-level="2" class="caption" role="heading">
- <span class="caption-text">
-  Clients
- </span>
-</p>
-<ul class="current nav bd-sidenav">
- <li class="toctree-l1">
-  <a class="reference internal" href="python.html">
-   Python
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="rust.html">
-   Rust
-  </a>
- </li>
- <li class="toctree-l1 current active">
-  <a class="current reference internal" href="#">
-   Flight SQL JDBC
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="cli.html">
-   SQL CLI
-  </a>
- </li>
-</ul>
-<p aria-level="2" class="caption" role="heading">
- <span class="caption-text">
-  Reference
- </span>
-</p>
-<ul class="nav bd-sidenav">
- <li class="toctree-l1">
-  <a class="reference internal" href="configs.html">
-   Configuration
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="tuning-guide.html">
-   Tuning Guide
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="metrics.html">
-   Ballista Scheduler Metrics
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="faq.html">
-   Frequently Asked Questions
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="extending-components.html">
-   Extending Ballista Scheduler And Executors
-  </a>
- </li>
-</ul>
-<p aria-level="2" class="caption" role="heading">
- <span class="caption-text">
-  Contributors Guide
- </span>
-</p>
-<ul class="nav bd-sidenav">
- <li class="toctree-l1">
-  <a class="reference internal" href="../contributors-guide/architecture.html">
-   Ballista Architecture
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference internal" 
href="../contributors-guide/code-organization.html">
-   Ballista Code Organization
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="../contributors-guide/development.html">
-   Ballista Development
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference external" 
href="https://github.com/apache/datafusion-ballista/";>
-   Source code
-  </a>
- </li>
-</ul>
-<p aria-level="2" class="caption" role="heading">
- <span class="caption-text">
-  Community
- </span>
-</p>
-<ul class="nav bd-sidenav">
- <li class="toctree-l1">
-  <a class="reference internal" href="../community/communication.html">
-   Communication
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference external" 
href="https://github.com/apache/datafusion-ballista/issues";>
-   Issue tracker
-  </a>
- </li>
- <li class="toctree-l1">
-  <a class="reference external" 
href="https://github.com/apache/datafusion-ballista/blob/main/CODE_OF_CONDUCT.md";>
-   Code of conduct
-  </a>
- </li>
-</ul>
-
-    
-  </div>
-</nav>
-              </div>
-              <div class="sidebar-end-items">
-              </div>
-            </div>
-            
-          
-
-          
-          <div class="d-none d-xl-block col-xl-2 bd-toc">
-            
-              
-              <div class="toc-item">
-                
-<div class="tocsection onthispage pt-5 pb-3">
-    <i class="fas fa-list"></i> On this page
-</div>
-
-<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="#prerequisites">
-   <a name="prereq">
-   </a>
-   Prerequisites
-  </a>
-  <ul class="nav section-nav flex-column">
-   <li class="toc-h3 nav-item toc-entry">
-    <a class="reference internal nav-link" href="#ubuntu">
-     Ubuntu
-    </a>
-   </li>
-   <li class="toc-h3 nav-item toc-entry">
-    <a class="reference internal nav-link" href="#macos">
-     MacOS
-    </a>
-   </li>
-   <li class="toc-h3 nav-item toc-entry">
-    <a class="reference internal nav-link" href="#windows">
-     Windows
-    </a>
-   </li>
-  </ul>
- </li>
- <li class="toc-h2 nav-item toc-entry">
-  <a class="reference internal nav-link" href="#run-docker-container">
-   <a name="docker">
-   </a>
-   Run Docker Container
-  </a>
- </li>
- <li class="toc-h2 nav-item toc-entry">
-  <a class="reference internal nav-link" 
href="#download-the-flightsql-jdbc-driver">
-   <a name="jdbc">
-   </a>
-   Download the FlightSQL JDBC Driver
-  </a>
- </li>
- <li class="toc-h2 nav-item toc-entry">
-  <a class="reference internal nav-link" 
href="#use-the-driver-in-your-favorite-data-tool">
-   <a name="tool">
-   </a>
-   Use the Driver in your Favorite Data Tool
-  </a>
- </li>
- <li class="toc-h2 nav-item toc-entry">
-  <a class="reference internal nav-link" href="#run-a-hello-world-query">
-   <a name="hello">
-   </a>
-   Run a “Hello, World!” Query
-  </a>
- </li>
- <li class="toc-h2 nav-item toc-entry">
-  <a class="reference internal nav-link" href="#run-a-complex-query">
-   <a name="complex">
-   </a>
-   Run a Complex Query
-  </a>
- </li>
-</ul>
-
-</nav>
-              </div>
-              
-              <div class="toc-item">
-                
-
-<div class="tocsection editthispage">
-    <a 
href="https://github.com/apache/datafusion-ballista/edit/main/docs/source/user-guide/flightsql.md";>
-        <i class="fas fa-pencil-alt"></i> Edit this page
-    </a>
-</div>
-
-              </div>
-              
-            
-          </div>
-          
-
-          
-          
-            
-          
-          <main class="col-12 col-md-9 col-xl-7 py-md-5 pl-md-5 pr-md-4 
bd-content" role="main">
-              
-              <div>
-                
-  <!---
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you under the Apache License, Version 2.0 (the
-  "License"); you may not use this file except in compliance
-  with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing,
-  software distributed under the License is distributed on an
-  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  KIND, either express or implied.  See the License for the
-  specific language governing permissions and limitations
-  under the License.
--->
-<section id="using-flightsql-to-connect-to-ballista">
-<h1>Using FlightSQL to Connect to Ballista<a class="headerlink" 
href="#using-flightsql-to-connect-to-ballista" title="Link to this 
heading">¶</a></h1>
-<p>One of the easiest ways to start with Ballista is to plug it into your 
existing data infrastructure using support for Arrow Flight SQL JDBC.</p>
-<blockquote>
-<div><p>This is optional scheduler feature which should be enabled with <code 
class="docutils literal notranslate"><span class="pre">flight-sql</span></code> 
feature</p>
-</div></blockquote>
-<p>Getting started involves these main steps:</p>
-<ol class="arabic simple">
-<li><p><a class="reference internal" href="#prereq"><span class="xref 
myst">Installing prerequisites</span></a></p></li>
-<li><p>Run the <a class="reference internal" href="#docker"><span class="xref 
myst">Ballista docker container</span></a></p></li>
-<li><p>Download the <a class="reference internal" href="#jdbc"><span 
class="xref myst">Arrow Flight SQL JDBC Driver</span></a></p></li>
-<li><p><a class="reference internal" href="#tool"><span class="xref 
myst">Install the driver</span></a> into your favorite JDBC tool</p></li>
-<li><p>Run a <a class="reference internal" href="#hello"><span class="xref 
myst">“hello, world!”</span></a> query</p></li>
-<li><p>Register a table and run more complicated queries</p></li>
-</ol>
-<section id="prerequisites">
-<h2><a name="prereq"/>Prerequisites<a class="headerlink" href="#prerequisites" 
title="Link to this heading">¶</a></h2>
-<section id="ubuntu">
-<h3>Ubuntu<a class="headerlink" href="#ubuntu" title="Link to this 
heading">¶</a></h3>
-<div class="highlight-shell notranslate"><div 
class="highlight"><pre><span></span>sudo<span class="w"> </span>apt-get<span 
class="w"> </span>update
-sudo<span class="w"> </span>apt-get<span class="w"> </span>install<span 
class="w"> </span>-y<span class="w"> </span>docker.io
-</pre></div>
-</div>
-</section>
-<section id="macos">
-<h3>MacOS<a class="headerlink" href="#macos" title="Link to this 
heading">¶</a></h3>
-<div class="highlight-shell notranslate"><div 
class="highlight"><pre><span></span>brew<span class="w"> </span>install<span 
class="w"> </span>docker
-</pre></div>
-</div>
-</section>
-<section id="windows">
-<h3>Windows<a class="headerlink" href="#windows" title="Link to this 
heading">¶</a></h3>
-<div class="highlight-shell notranslate"><div 
class="highlight"><pre><span></span>choco<span class="w"> </span>install<span 
class="w"> </span>docker-desktop
-</pre></div>
-</div>
-</section>
-</section>
-<section id="run-docker-container">
-<h2><a name="docker"/> Run Docker Container<a class="headerlink" 
href="#run-docker-container" 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>-p<span class="w"> </span><span 
class="m">50050</span>:50050<span class="w"> </span>--rm<span class="w"> 
</span>ghcr.io/apache/datafusion-ballista-standalone:0.10.0
-</pre></div>
-</div>
-</section>
-<section id="download-the-flightsql-jdbc-driver">
-<h2><a name="jdbc"/>Download the FlightSQL JDBC Driver<a class="headerlink" 
href="#download-the-flightsql-jdbc-driver" title="Link to this 
heading">¶</a></h2>
-<p>Download the <a class="reference external" 
href="https://repo1.maven.org/maven2/org/apache/arrow/flight-sql-jdbc-driver/10.0.0/flight-sql-jdbc-driver-10.0.0.jar";>FlightSQL
 JDBC Driver</a>
-from Maven Central.</p>
-</section>
-<section id="use-the-driver-in-your-favorite-data-tool">
-<h2><a name="tool"/>Use the Driver in your Favorite Data Tool<a 
class="headerlink" href="#use-the-driver-in-your-favorite-data-tool" 
title="Link to this heading">¶</a></h2>
-<p>The important pieces of information:</p>
-<table class="table">
-<thead>
-<tr class="row-odd"><th class="head"><p>Key</p></th>
-<th class="head"><p>Value</p></th>
-</tr>
-</thead>
-<tbody>
-<tr class="row-even"><td><p>Driver file</p></td>
-<td><p>flight-sql-jdbc-driver-10.0.0-SNAPSHOT.jar</p></td>
-</tr>
-<tr class="row-odd"><td><p>Class Name</p></td>
-<td><p>org.apache.arrow.driver.jdbc.ArrowFlightJdbcDriver</p></td>
-</tr>
-<tr class="row-even"><td><p>Authentication</p></td>
-<td><p>User &amp; Password</p></td>
-</tr>
-<tr class="row-odd"><td><p>Username</p></td>
-<td><p>admin</p></td>
-</tr>
-<tr class="row-even"><td><p>Password</p></td>
-<td><p>password</p></td>
-</tr>
-<tr class="row-odd"><td><p>Advanced Options</p></td>
-<td><p>useEncryption=false</p></td>
-</tr>
-<tr class="row-even"><td><p>URL</p></td>
-<td><p>jdbc:arrow-flight://127.0.0.1:50050</p></td>
-</tr>
-</tbody>
-</table>
-</section>
-<section id="run-a-hello-world-query">
-<h2><a name="hello"/>Run a “Hello, World!” Query<a class="headerlink" 
href="#run-a-hello-world-query" title="Link to this heading">¶</a></h2>
-<div class="highlight-sql notranslate"><div 
class="highlight"><pre><span></span><span class="k">select</span><span 
class="w"> </span><span class="s1">&#39;Hello from DataFusion 
Ballista!&#39;</span><span class="w"> </span><span class="k">as</span><span 
class="w"> </span><span class="n">greeting</span><span class="p">;</span>
-</pre></div>
-</div>
-</section>
-<section id="run-a-complex-query">
-<h2><a name="complex"/>Run a Complex Query<a class="headerlink" 
href="#run-a-complex-query" title="Link to this heading">¶</a></h2>
-<p>In order to run queries against data, tables need to be “registered” with 
the current session (and re-registered upon each new connection).</p>
-<p>To register the built-in demo table, use the syntax below:</p>
-<div class="highlight-sql notranslate"><div 
class="highlight"><pre><span></span><span class="k">create</span><span 
class="w"> </span><span class="k">external</span><span class="w"> </span><span 
class="k">table</span><span class="w"> </span><span class="n">taxi</span><span 
class="w"> </span><span class="n">stored</span><span class="w"> </span><span 
class="k">as</span><span class="w"> </span><span class="n">parquet</span><span 
class="w"> </span><span class="k">location</span><span class="w [...]
-</pre></div>
-</div>
-<p>Once the table has been registered, all the normal SQL queries can be 
performed:</p>
-<div class="highlight-sql notranslate"><div 
class="highlight"><pre><span></span><span class="k">select</span><span 
class="w"> </span><span class="o">*</span><span class="w"> </span><span 
class="k">from</span><span class="w"> </span><span class="n">taxi</span><span 
class="w"> </span><span class="k">limit</span><span class="w"> </span><span 
class="mi">10</span><span class="p">;</span>
-</pre></div>
-</div>
-<p>🎉 Happy querying! 🎉</p>
-</section>
-</section>
-
-
-              </div>
-              
-              
-              <!-- Previous / next buttons -->
-<div class='prev-next-area'>
-    <a class='left-prev' id="prev-link" href="rust.html" title="previous page">
-        <i class="fas fa-angle-left"></i>
-        <div class="prev-next-info">
-            <p class="prev-next-subtitle">previous</p>
-            <p class="prev-next-title">Distributing DataFusion with 
Ballista</p>
-        </div>
-    </a>
-    <a class='right-next' id="next-link" href="cli.html" title="next page">
-    <div class="prev-next-info">
-        <p class="prev-next-subtitle">next</p>
-        <p class="prev-next-title">Ballista Command-line Interface</p>
-    </div>
-    <i class="fas fa-angle-right"></i>
-    </a>
-</div>
-              
-          </main>
-          
-
-      </div>
-    </div>
-  
-    <script 
src="../_static/scripts/pydata-sphinx-theme.js?digest=1999514e3f237ded88cf"></script>
-  
-<!-- Based on pydata_sphinx_theme/footer.html -->
-<footer class="footer mt-5 mt-md-0">
-  <div class="container">
-    
-    <div class="footer-item">
-      <p class="copyright">
-    &copy; Copyright 2019-2024, Apache Software Foundation.<br>
-</p>
-    </div>
-    
-    <div class="footer-item">
-      <p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/";>Sphinx</a> 8.1.3.<br>
-</p>
-    </div>
-    
-    <div class="footer-item">
-      <p>Apache DataFusion Ballista, Arrow Ballista, Apache, the Apache 
feather logo, and the Apache DataFusion Ballista project logo</p>
-      <p>are either registered trademarks or trademarks of The Apache Software 
Foundation in the United States and other countries.</p>
-    </div>
-  </div>
-</footer>
-
-
-  </body>
-</html>
\ No newline at end of file
diff --git a/user-guide/introduction.html b/user-guide/introduction.html
index d07a9fc0..601b11a0 100644
--- a/user-guide/introduction.html
+++ b/user-guide/introduction.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="cli.html">
    SQL CLI
@@ -319,7 +314,7 @@ Dockerfiles are provided to build images for use in 
containerized environments,
 Kubernetes. See the <a class="reference internal" href="#deployment.md"><span 
class="xref myst">deployment guide</span></a> for more information</p>
 <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>
+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.md"><span class="xref 
myst">FlightSQL guide</span></a>.</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>
diff --git a/user-guide/metrics.html b/user-guide/metrics.html
index d4b1d1e8..d1195487 100644
--- a/user-guide/metrics.html
+++ b/user-guide/metrics.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="cli.html">
    SQL CLI
diff --git a/user-guide/python.html b/user-guide/python.html
index 61acdeb2..7a179e9a 100644
--- a/user-guide/python.html
+++ b/user-guide/python.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="cli.html">
    SQL CLI
diff --git a/user-guide/rust.html b/user-guide/rust.html
index 096f2abf..62268ab3 100644
--- a/user-guide/rust.html
+++ b/user-guide/rust.html
@@ -33,7 +33,7 @@
     <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
     <link rel="index" title="Index" href="../genindex.html" />
     <link rel="search" title="Search" href="../search.html" />
-    <link rel="next" title="Using FlightSQL to Connect to Ballista" 
href="flightsql.html" />
+    <link rel="next" title="Ballista Command-line Interface" href="cli.html" />
     <link rel="prev" title="Ballista Python Bindings" href="python.html" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="docsearch:language" content="en">
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="cli.html">
    SQL CLI
@@ -432,10 +427,10 @@
             <p class="prev-next-title">Ballista Python Bindings</p>
         </div>
     </a>
-    <a class='right-next' id="next-link" href="flightsql.html" title="next 
page">
+    <a class='right-next' id="next-link" href="cli.html" title="next page">
     <div class="prev-next-info">
         <p class="prev-next-subtitle">next</p>
-        <p class="prev-next-title">Using FlightSQL to Connect to Ballista</p>
+        <p class="prev-next-title">Ballista Command-line Interface</p>
     </div>
     <i class="fas fa-angle-right"></i>
     </a>
diff --git a/user-guide/scheduler.html b/user-guide/scheduler.html
index 09f7d92c..ff9c065d 100644
--- a/user-guide/scheduler.html
+++ b/user-guide/scheduler.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="cli.html">
    SQL CLI
diff --git a/user-guide/tuning-guide.html b/user-guide/tuning-guide.html
index 974d3a7b..e6e94613 100644
--- a/user-guide/tuning-guide.html
+++ b/user-guide/tuning-guide.html
@@ -145,11 +145,6 @@
    Rust
   </a>
  </li>
- <li class="toctree-l1">
-  <a class="reference internal" href="flightsql.html">
-   Flight SQL JDBC
-  </a>
- </li>
  <li class="toctree-l1">
   <a class="reference internal" href="cli.html">
    SQL CLI


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


Reply via email to