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 0f84807c Publish built docs triggered by
0c773efd406d8bd7b45e0ed697d288bcca154cd0
0f84807c is described below
commit 0f84807c5d855f726e612ef228e0d196e9e82a53
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Oct 11 20:20:55 2024 +0000
Publish built docs triggered by 0c773efd406d8bd7b45e0ed697d288bcca154cd0
---
.buildinfo | 4 +--
_static/basic.css | 15 ++---------
_static/doctools.js | 7 -----
_static/language_data.js | 7 -----
_static/searchtools.js | 45 ++++++++++++++++++++-----------
community/communication.html | 4 +--
contributors-guide/architecture.html | 4 +--
contributors-guide/code-organization.html | 4 +--
contributors-guide/development.html | 4 +--
genindex.html | 4 +--
index.html | 4 +--
search.html | 4 +--
searchindex.js | 2 +-
user-guide/cli.html | 4 +--
user-guide/configs.html | 4 +--
user-guide/deployment/cargo-install.html | 4 +--
user-guide/deployment/docker-compose.html | 4 +--
user-guide/deployment/docker.html | 4 +--
user-guide/deployment/index.html | 4 +--
user-guide/deployment/kubernetes.html | 4 +--
user-guide/deployment/quick-start.html | 4 +--
user-guide/faq.html | 4 +--
user-guide/flightsql.html | 4 +--
user-guide/introduction.html | 4 +--
user-guide/metrics.html | 4 +--
user-guide/python.html | 4 +--
user-guide/rust.html | 4 +--
user-guide/scheduler.html | 4 +--
user-guide/tuning-guide.html | 4 +--
29 files changed, 80 insertions(+), 92 deletions(-)
diff --git a/.buildinfo b/.buildinfo
index 21ddf1bb..ecdfe997 100644
--- a/.buildinfo
+++ b/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
-# This file hashes the configuration used when building these files. When it
is not found, a full rebuild will be done.
-config: 75234f68d0cc03dc876499bb8fc2ba73
+# This file records the configuration used when building these files. When it
is not found, a full rebuild will be done.
+config: 45d037d2bb0772db4b2e9556e8b52568
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/_static/basic.css b/_static/basic.css
index 2af6139e..2a9e4114 100644
--- a/_static/basic.css
+++ b/_static/basic.css
@@ -1,12 +1,5 @@
/*
- * basic.css
- * ~~~~~~~~~
- *
* Sphinx stylesheet -- basic theme.
- *
- * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
- * :license: BSD, see LICENSE for details.
- *
*/
/* -- main layout -----------------------------------------------------------
*/
@@ -115,15 +108,11 @@ img {
/* -- search page -----------------------------------------------------------
*/
ul.search {
- margin: 10px 0 0 20px;
- padding: 0;
+ margin-top: 10px;
}
ul.search li {
- padding: 5px 0 5px 20px;
- background-image: url(file.png);
- background-repeat: no-repeat;
- background-position: 0 7px;
+ padding: 5px 0;
}
ul.search li a {
diff --git a/_static/doctools.js b/_static/doctools.js
index 4d67807d..0398ebb9 100644
--- a/_static/doctools.js
+++ b/_static/doctools.js
@@ -1,12 +1,5 @@
/*
- * doctools.js
- * ~~~~~~~~~~~
- *
* Base JavaScript utilities for all Sphinx HTML documentation.
- *
- * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
- * :license: BSD, see LICENSE for details.
- *
*/
"use strict";
diff --git a/_static/language_data.js b/_static/language_data.js
index 367b8ed8..c7fe6c6f 100644
--- a/_static/language_data.js
+++ b/_static/language_data.js
@@ -1,13 +1,6 @@
/*
- * language_data.js
- * ~~~~~~~~~~~~~~~~
- *
* This script contains the language-specific data used by searchtools.js,
* namely the list of stopwords, stemmer, scorer and splitter.
- *
- * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
- * :license: BSD, see LICENSE for details.
- *
*/
var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for",
"if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such",
"that", "the", "their", "then", "there", "these", "they", "this", "to", "was",
"will", "with"];
diff --git a/_static/searchtools.js b/_static/searchtools.js
index 92da3f8b..2c774d17 100644
--- a/_static/searchtools.js
+++ b/_static/searchtools.js
@@ -1,12 +1,5 @@
/*
- * searchtools.js
- * ~~~~~~~~~~~~~~~~
- *
* Sphinx JavaScript utilities for the full-text search.
- *
- * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
- * :license: BSD, see LICENSE for details.
- *
*/
"use strict";
@@ -20,7 +13,7 @@ if (typeof Scorer === "undefined") {
// and returns the new score.
/*
score: result => {
- const [docname, title, anchor, descr, score, filename] = result
+ const [docname, title, anchor, descr, score, filename, kind] = result
return score
},
*/
@@ -47,6 +40,14 @@ if (typeof Scorer === "undefined") {
};
}
+// Global search result kind enum, used by themes to style search results.
+class SearchResultKind {
+ static get index() { return "index"; }
+ static get object() { return "object"; }
+ static get text() { return "text"; }
+ static get title() { return "title"; }
+}
+
const _removeChildren = (element) => {
while (element && element.lastChild) element.removeChild(element.lastChild);
};
@@ -64,9 +65,13 @@ const _displayItem = (item, searchTerms, highlightTerms) => {
const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY;
const contentRoot = document.documentElement.dataset.content_root;
- const [docName, title, anchor, descr, score, _filename] = item;
+ const [docName, title, anchor, descr, score, _filename, kind] = item;
let listItem = document.createElement("li");
+ // Add a class representing the item's type:
+ // can be used by a theme's CSS selector for styling
+ // See SearchResultKind for the class names.
+ listItem.classList.add(`kind-${kind}`);
let requestUrl;
let linkUrl;
if (docBuilder === "dirhtml") {
@@ -115,8 +120,10 @@ const _finishSearch = (resultCount) => {
"Your search did not match any documents. Please make sure that all
words are spelled correctly and that you've selected enough categories."
);
else
- Search.status.innerText = _(
- "Search finished, found ${resultCount} page(s) matching the search
query."
+ Search.status.innerText = Documentation.ngettext(
+ "Search finished, found one page matching the search query.",
+ "Search finished, found ${resultCount} pages matching the search query.",
+ resultCount,
).replace('${resultCount}', resultCount);
};
const _displayNextItem = (
@@ -138,7 +145,7 @@ const _displayNextItem = (
else _finishSearch(resultCount);
};
// Helper function used by query() to order search results.
-// Each input is an array of [docname, title, anchor, descr, score, filename].
+// Each input is an array of [docname, title, anchor, descr, score, filename,
kind].
// Order the results by score (in opposite order of appearance, since the
// `_displayNextItem` function uses pop() to retrieve items) and then
alphabetically.
const _orderResultsByScoreThenName = (a, b) => {
@@ -178,7 +185,7 @@ const Search = {
htmlToText: (htmlString, anchor) => {
const htmlElement = new DOMParser().parseFromString(htmlString,
'text/html');
- for (const removalQuery of [".headerlinks", "script", "style"]) {
+ for (const removalQuery of [".headerlink", "script", "style"]) {
htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove()
});
}
if (anchor) {
@@ -248,6 +255,7 @@ const Search = {
searchSummary.classList.add("search-summary");
searchSummary.innerText = "";
const searchList = document.createElement("ul");
+ searchList.setAttribute("role", "list");
searchList.classList.add("search");
const out = document.getElementById("search-results");
@@ -318,7 +326,7 @@ const Search = {
const indexEntries = Search._index.indexentries;
// Collect multiple result groups to be sorted separately and then ordered.
- // Each is an array of [docname, title, anchor, descr, score, filename].
+ // Each is an array of [docname, title, anchor, descr, score, filename,
kind].
const normalResults = [];
const nonMainIndexResults = [];
@@ -328,14 +336,16 @@ const Search = {
for (const [title, foundTitles] of Object.entries(allTitles)) {
if (title.toLowerCase().trim().includes(queryLower) &&
(queryLower.length >= title.length/2)) {
for (const [file, id] of foundTitles) {
- let score = Math.round(100 * queryLower.length / title.length)
+ const score = Math.round(Scorer.title * queryLower.length /
title.length);
+ const boost = titles[file] === title ? 1 : 0; // add a boost for
document titles
normalResults.push([
docNames[file],
titles[file] !== title ? `${titles[file]} > ${title}` : title,
id !== null ? "#" + id : "",
null,
- score,
+ score + boost,
filenames[file],
+ SearchResultKind.title,
]);
}
}
@@ -353,6 +363,7 @@ const Search = {
null,
score,
filenames[file],
+ SearchResultKind.index,
];
if (isMain) {
normalResults.push(result);
@@ -474,6 +485,7 @@ const Search = {
descr,
score,
filenames[match[0]],
+ SearchResultKind.object,
]);
};
Object.keys(objects).forEach((prefix) =>
@@ -584,6 +596,7 @@ const Search = {
null,
score,
filenames[file],
+ SearchResultKind.text,
]);
}
return results;
diff --git a/community/communication.html b/community/communication.html
index 5090890d..e64a7f06 100644
--- a/community/communication.html
+++ b/community/communication.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/contributors-guide/architecture.html
b/contributors-guide/architecture.html
index 97a9b0eb..533445e3 100644
--- a/contributors-guide/architecture.html
+++ b/contributors-guide/architecture.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -583,7 +583,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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/contributors-guide/code-organization.html
b/contributors-guide/code-organization.html
index 7a741077..7b22bed7 100644
--- a/contributors-guide/code-organization.html
+++ b/contributors-guide/code-organization.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -416,7 +416,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/contributors-guide/development.html
b/contributors-guide/development.html
index 469f7016..c382c4a2 100644
--- a/contributors-guide/development.html
+++ b/contributors-guide/development.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/genindex.html b/genindex.html
index 44a5beba..ebd7c373 100644
--- a/genindex.html
+++ b/genindex.html
@@ -28,7 +28,7 @@
<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=9a2dae69"></script>
+ <script src="_static/doctools.js?v=9bcbadda"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<link rel="index" title="Index" href="#" />
<link rel="search" title="Search" href="search.html" />
@@ -289,7 +289,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/index.html b/index.html
index 521a3cb4..fbbe7322 100644
--- a/index.html
+++ b/index.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -379,7 +379,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/search.html b/search.html
index 429b9737..572a308c 100644
--- a/search.html
+++ b/search.html
@@ -29,7 +29,7 @@
<script src="_static/documentation_options.js?v=8a448e45"></script>
- <script src="_static/doctools.js?v=9a2dae69"></script>
+ <script src="_static/doctools.js?v=9bcbadda"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="_static/searchtools.js"></script>
<script src="_static/language_data.js"></script>
@@ -316,7 +316,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/searchindex.js b/searchindex.js
index 77b56e5c..ca4455af 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 6ef92ad9..05b4008e 100644
--- a/user-guide/cli.html
+++ b/user-guide/cli.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/configs.html b/user-guide/configs.html
index d1f3f4d0..1581d3e2 100644
--- a/user-guide/configs.html
+++ b/user-guide/configs.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/deployment/cargo-install.html
b/user-guide/deployment/cargo-install.html
index 24333f1a..642a4b83 100644
--- a/user-guide/deployment/cargo-install.html
+++ b/user-guide/deployment/cargo-install.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/deployment/docker-compose.html
b/user-guide/deployment/docker-compose.html
index a844b1d2..bb43e6a5 100644
--- a/user-guide/deployment/docker-compose.html
+++ b/user-guide/deployment/docker-compose.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -414,7 +414,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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/deployment/docker.html
b/user-guide/deployment/docker.html
index af77fb74..fee66090 100644
--- a/user-guide/deployment/docker.html
+++ b/user-guide/deployment/docker.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -477,7 +477,7 @@ recommended.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/deployment/index.html b/user-guide/deployment/index.html
index fb1d7bd8..7397aa06 100644
--- a/user-guide/deployment/index.html
+++ b/user-guide/deployment/index.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -360,7 +360,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/deployment/kubernetes.html
b/user-guide/deployment/kubernetes.html
index a4129913..ae29707a 100644
--- a/user-guide/deployment/kubernetes.html
+++ b/user-guide/deployment/kubernetes.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -648,7 +648,7 @@ scale the executors.</p>
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/deployment/quick-start.html
b/user-guide/deployment/quick-start.html
index ce7eb362..7c8b57c4 100644
--- a/user-guide/deployment/quick-start.html
+++ b/user-guide/deployment/quick-start.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -506,7 +506,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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/faq.html b/user-guide/faq.html
index 19f5ff66..fde09001 100644
--- a/user-guide/faq.html
+++ b/user-guide/faq.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/flightsql.html b/user-guide/flightsql.html
index 1222c323..f9662bfb 100644
--- a/user-guide/flightsql.html
+++ b/user-guide/flightsql.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/introduction.html b/user-guide/introduction.html
index b6b3b38f..b4e48aab 100644
--- a/user-guide/introduction.html
+++ b/user-guide/introduction.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -380,7 +380,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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/metrics.html b/user-guide/metrics.html
index d298eb6a..99f23b7e 100644
--- a/user-guide/metrics.html
+++ b/user-guide/metrics.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/python.html b/user-guide/python.html
index cfca4c68..c18c026a 100644
--- a/user-guide/python.html
+++ b/user-guide/python.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/rust.html b/user-guide/rust.html
index 0fbff01a..2c1daa90 100644
--- a/user-guide/rust.html
+++ b/user-guide/rust.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -412,7 +412,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/scheduler.html b/user-guide/scheduler.html
index b8751431..68e07fb3 100644
--- a/user-guide/scheduler.html
+++ b/user-guide/scheduler.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -396,7 +396,7 @@
<div class="footer-item">
<p class="sphinx-version">
-Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
diff --git a/user-guide/tuning-guide.html b/user-guide/tuning-guide.html
index 810fce49..8d6c7297 100644
--- a/user-guide/tuning-guide.html
+++ b/user-guide/tuning-guide.html
@@ -29,7 +29,7 @@
<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=9a2dae69"></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" />
@@ -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> 7.3.7.<br>
+Created using <a href="http://sphinx-doc.org/">Sphinx</a> 8.1.0.<br>
</p>
</div>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]