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/arrow-datafusion.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 785fc9b018 Publish built docs triggered by
edaf235828a90042eaf918ec4b3ee5ab2716f060
785fc9b018 is described below
commit 785fc9b01885b9446219f628aa9055b9e027a7dd
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Mar 21 15:12:51 2024 +0000
Publish built docs triggered by edaf235828a90042eaf918ec4b3ee5ab2716f060
---
_sources/user-guide/example-usage.md.txt | 10 +++++-----
_sources/user-guide/introduction.md.txt | 1 +
searchindex.js | 2 +-
user-guide/example-usage.html | 22 +++++++++++-----------
user-guide/introduction.html | 1 +
5 files changed, 19 insertions(+), 17 deletions(-)
diff --git a/_sources/user-guide/example-usage.md.txt
b/_sources/user-guide/example-usage.md.txt
index c5eefbdaf1..31b599ac33 100644
--- a/_sources/user-guide/example-usage.md.txt
+++ b/_sources/user-guide/example-usage.md.txt
@@ -23,20 +23,20 @@ In this example some simple processing is performed on the
[`example.csv`](https
Even [`more code
examples`](https://github.com/apache/arrow-datafusion/tree/main/datafusion-examples)
attached to the project.
-## Add DataFusion as a dependency
+## Add published DataFusion dependency
Find latest available Datafusion version on [DataFusion's
crates.io] page. Add the dependency to your `Cargo.toml` file:
```toml
-datafusion = "31"
+datafusion = "latest_version"
tokio = "1.0"
```
-## Add DataFusion latest codebase as a dependency
+## Add latest non published DataFusion dependency
-Cargo supports adding dependency directly from Github which allows testing out
latest DataFusion codebase without waiting the code to be released to crates.io
-according to the [DataFusion release
schedule](https://github.com/apache/arrow-datafusion/blob/main/dev/release/README.md#release-process)
+DataFusion changes are published to `crates.io` according to [release
schedule](https://github.com/apache/arrow-datafusion/blob/main/dev/release/README.md#release-process)
+In case if it is required to test out DataFusion changes which are merged but
yet to be published, Cargo supports adding dependency directly to Github branch
```toml
datafusion = { git = "https://github.com/apache/arrow-datafusion", branch =
"main"}
diff --git a/_sources/user-guide/introduction.md.txt
b/_sources/user-guide/introduction.md.txt
index ae26846997..0e9d731c6e 100644
--- a/_sources/user-guide/introduction.md.txt
+++ b/_sources/user-guide/introduction.md.txt
@@ -96,6 +96,7 @@ Here are some active projects using DataFusion:
- [Arroyo](https://github.com/ArroyoSystems/arroyo) Distributed stream
processing engine in Rust
- [Ballista](https://github.com/apache/arrow-ballista) Distributed SQL Query
Engine
+- [Comet](https://github.com/apache/arrow-datafusion-comet) Apache Spark
native query execution plugin
- [CnosDB](https://github.com/cnosdb/cnosdb) Open Source Distributed Time
Series Database
- [Cube Store](https://github.com/cube-js/cube.js/tree/master/rust)
- [Dask SQL](https://github.com/dask-contrib/dask-sql) Distributed SQL query
engine in Python
diff --git a/searchindex.js b/searchindex.js
index 601faddb12..c432108983 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["contributor-guide/architecture",
"contributor-guide/communication", "contributor-guide/index",
"contributor-guide/quarterly_roadmap", "contributor-guide/roadmap",
"contributor-guide/specification/index",
"contributor-guide/specification/invariants",
"contributor-guide/specification/output-field-name-semantic", "index",
"library-user-guide/adding-udfs", "library-user-guide/building-logical-plans",
"library-user-guide/catalogs", "library-user-guide/custom-tab [...]
\ No newline at end of file
+Search.setIndex({"docnames": ["contributor-guide/architecture",
"contributor-guide/communication", "contributor-guide/index",
"contributor-guide/quarterly_roadmap", "contributor-guide/roadmap",
"contributor-guide/specification/index",
"contributor-guide/specification/invariants",
"contributor-guide/specification/output-field-name-semantic", "index",
"library-user-guide/adding-udfs", "library-user-guide/building-logical-plans",
"library-user-guide/catalogs", "library-user-guide/custom-tab [...]
\ No newline at end of file
diff --git a/user-guide/example-usage.html b/user-guide/example-usage.html
index 21a88da395..ad301302c4 100644
--- a/user-guide/example-usage.html
+++ b/user-guide/example-usage.html
@@ -358,13 +358,13 @@
<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="#add-datafusion-as-a-dependency">
- Add DataFusion as a dependency
+ <a class="reference internal nav-link"
href="#add-published-datafusion-dependency">
+ Add published DataFusion dependency
</a>
</li>
<li class="toc-h2 nav-item toc-entry">
- <a class="reference internal nav-link"
href="#add-datafusion-latest-codebase-as-a-dependency">
- Add DataFusion latest codebase as a dependency
+ <a class="reference internal nav-link"
href="#add-latest-non-published-datafusion-dependency">
+ Add latest non published DataFusion dependency
</a>
</li>
<li class="toc-h2 nav-item toc-entry">
@@ -472,19 +472,19 @@
<h1>Example Usage<a class="headerlink" href="#example-usage" title="Link to
this heading">¶</a></h1>
<p>In this example some simple processing is performed on the <a
class="reference external"
href="https://github.com/apache/arrow-datafusion/blob/main/datafusion/core/tests/data/example.csv"><code
class="docutils literal notranslate"><span
class="pre">example.csv</span></code></a> file.</p>
<p>Even <a class="reference external"
href="https://github.com/apache/arrow-datafusion/tree/main/datafusion-examples"><code
class="docutils literal notranslate"><span class="pre">more</span> <span
class="pre">code</span> <span class="pre">examples</span></code></a> attached
to the project.</p>
-<section id="add-datafusion-as-a-dependency">
-<h2>Add DataFusion as a dependency<a class="headerlink"
href="#add-datafusion-as-a-dependency" title="Link to this heading">¶</a></h2>
+<section id="add-published-datafusion-dependency">
+<h2>Add published DataFusion dependency<a class="headerlink"
href="#add-published-datafusion-dependency" title="Link to this
heading">¶</a></h2>
<p>Find latest available Datafusion version on <a class="reference external"
href="https://crates.io/crates/datafusion">DataFusion’s
crates.io</a> page. Add the dependency to your <code class="docutils literal
notranslate"><span class="pre">Cargo.toml</span></code> file:</p>
-<div class="highlight-toml notranslate"><div
class="highlight"><pre><span></span><span class="n">datafusion</span><span
class="w"> </span><span class="o">=</span><span class="w"> </span><span
class="s2">"31"</span>
+<div class="highlight-toml notranslate"><div
class="highlight"><pre><span></span><span class="n">datafusion</span><span
class="w"> </span><span class="o">=</span><span class="w"> </span><span
class="s2">"latest_version"</span>
<span class="n">tokio</span><span class="w"> </span><span
class="o">=</span><span class="w"> </span><span
class="s2">"1.0"</span>
</pre></div>
</div>
</section>
-<section id="add-datafusion-latest-codebase-as-a-dependency">
-<h2>Add DataFusion latest codebase as a dependency<a class="headerlink"
href="#add-datafusion-latest-codebase-as-a-dependency" title="Link to this
heading">¶</a></h2>
-<p>Cargo supports adding dependency directly from Github which allows testing
out latest DataFusion codebase without waiting the code to be released to
crates.io
-according to the <a class="reference external"
href="https://github.com/apache/arrow-datafusion/blob/main/dev/release/README.md#release-process">DataFusion
release schedule</a></p>
+<section id="add-latest-non-published-datafusion-dependency">
+<h2>Add latest non published DataFusion dependency<a class="headerlink"
href="#add-latest-non-published-datafusion-dependency" title="Link to this
heading">¶</a></h2>
+<p>DataFusion changes are published to <code class="docutils literal
notranslate"><span class="pre">crates.io</span></code> according to <a
class="reference external"
href="https://github.com/apache/arrow-datafusion/blob/main/dev/release/README.md#release-process">release
schedule</a>
+In case if it is required to test out DataFusion changes which are merged but
yet to be published, Cargo supports adding dependency directly to Github
branch</p>
<div class="highlight-toml notranslate"><div
class="highlight"><pre><span></span><span class="n">datafusion</span><span
class="w"> </span><span class="o">=</span><span class="w"> </span><span
class="p">{</span><span class="w"> </span><span class="n">git</span><span
class="w"> </span><span class="p">=</span><span class="w"> </span><span
class="s2">"https://github.com/apache/arrow-datafusion"</span><span
class="p">,</span><span class="w"> </span><span class="n">branch</span><span
[...]
</pre></div>
</div>
diff --git a/user-guide/introduction.html b/user-guide/introduction.html
index 33518f7818..207c234e17 100644
--- a/user-guide/introduction.html
+++ b/user-guide/introduction.html
@@ -519,6 +519,7 @@ parellelized streaming execution plans, file format
support, etc.</p>
<ul class="simple">
<li><p><a class="reference external"
href="https://github.com/ArroyoSystems/arroyo">Arroyo</a> Distributed stream
processing engine in Rust</p></li>
<li><p><a class="reference external"
href="https://github.com/apache/arrow-ballista">Ballista</a> Distributed SQL
Query Engine</p></li>
+<li><p><a class="reference external"
href="https://github.com/apache/arrow-datafusion-comet">Comet</a> Apache Spark
native query execution plugin</p></li>
<li><p><a class="reference external"
href="https://github.com/cnosdb/cnosdb">CnosDB</a> Open Source Distributed Time
Series Database</p></li>
<li><p><a class="reference external"
href="https://github.com/cube-js/cube.js/tree/master/rust">Cube
Store</a></p></li>
<li><p><a class="reference external"
href="https://github.com/dask-contrib/dask-sql">Dask SQL</a> Distributed SQL
query engine in Python</p></li>