From 7d3b008df7b00ee9743b2e4edaba107973eafe2e Mon Sep 17 00:00:00 2001 From: comphead Date: Mon, 23 Sep 2024 11:23:46 -0700 Subject: [PATCH 1/4] chore: clarify tarball installation --- docs/source/user-guide/installation.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/source/user-guide/installation.md b/docs/source/user-guide/installation.md index 3c0e4b6d44..75c8b2d7c7 100644 --- a/docs/source/user-guide/installation.md +++ b/docs/source/user-guide/installation.md @@ -44,8 +44,21 @@ There are no published JAR files yet. Official source releases can be downloaded from https://dist.apache.org/repos/dist/release/datafusion/ -Building from a source release is mostly the same as building directly from the GitHub repository but requires the -use of the command `make release-nogit` instead of `make release`. +Download the latest Apache DataFusion Comet tarball file from `datafusion-comet-1.2.3` folder. For example +`https://dist.apache.org/repos/dist/release/datafusion/datafusion-comet-0.2.0/apache-datafusion-comet-0.2.0.tar.gz` + +Unpack the tarball + +```console +tar -xzf apache-datafusion-comet-0.2.0.tar.gz +cd apache-datafusion-comet-0.2.0 +``` + +Build + +```console +make release-nogit PROFILES="-Pspark-3.4" +``` ## Building from the GitHub repository From 2f6714f10302bdc51fc082187b04c9f5e4859221 Mon Sep 17 00:00:00 2001 From: comphead Date: Mon, 23 Sep 2024 11:53:24 -0700 Subject: [PATCH 2/4] chore: clarify tarball installation --- docs/source/user-guide/installation.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/source/user-guide/installation.md b/docs/source/user-guide/installation.md index 75c8b2d7c7..2f557bfd43 100644 --- a/docs/source/user-guide/installation.md +++ b/docs/source/user-guide/installation.md @@ -26,9 +26,14 @@ Make sure the following requirements are met and software installed on your mach - Linux - Apple OSX (Intel and Apple Silicon) +## Supported Apache Spark versions +- 3.3 +- 3.4 +- 3.5 + ## Requirements -- Apache Spark 3.3, 3.4, or 3.5 +- [Apache Spark supported by Comet](#supported-apache-spark-versions) - JDK 8 and up - GLIBC 2.17 (Centos 7) and up From a97d7655160f9a041c3a6fdef73cae06dfe63bd4 Mon Sep 17 00:00:00 2001 From: comphead Date: Mon, 23 Sep 2024 13:54:55 -0700 Subject: [PATCH 3/4] chore: clarify tarball installation --- docs/source/user-guide/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/user-guide/installation.md b/docs/source/user-guide/installation.md index 2f557bfd43..afb79c3d24 100644 --- a/docs/source/user-guide/installation.md +++ b/docs/source/user-guide/installation.md @@ -49,7 +49,7 @@ There are no published JAR files yet. Official source releases can be downloaded from https://dist.apache.org/repos/dist/release/datafusion/ -Download the latest Apache DataFusion Comet tarball file from `datafusion-comet-1.2.3` folder. For example +Download the latest Apache DataFusion Comet tarball file from `datafusion-comet-x.y.z` folder. For example `https://dist.apache.org/repos/dist/release/datafusion/datafusion-comet-0.2.0/apache-datafusion-comet-0.2.0.tar.gz` Unpack the tarball From 0f1efe92f8dc4541a3cf62b8156d79da969f34d7 Mon Sep 17 00:00:00 2001 From: comphead Date: Mon, 23 Sep 2024 14:07:16 -0700 Subject: [PATCH 4/4] chore: clarify tarball installation --- docs/source/user-guide/installation.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/source/user-guide/installation.md b/docs/source/user-guide/installation.md index afb79c3d24..ecaae86e4e 100644 --- a/docs/source/user-guide/installation.md +++ b/docs/source/user-guide/installation.md @@ -49,14 +49,14 @@ There are no published JAR files yet. Official source releases can be downloaded from https://dist.apache.org/repos/dist/release/datafusion/ -Download the latest Apache DataFusion Comet tarball file from `datafusion-comet-x.y.z` folder. For example -`https://dist.apache.org/repos/dist/release/datafusion/datafusion-comet-0.2.0/apache-datafusion-comet-0.2.0.tar.gz` - -Unpack the tarball - ```console -tar -xzf apache-datafusion-comet-0.2.0.tar.gz -cd apache-datafusion-comet-0.2.0 +# Pick the latest version +export COMET_VERSION=0.2.0 +# Download the tarball +curl -O "https://dist.apache.org/repos/dist/release/datafusion/datafusion-comet-$COMET_VERSION/apache-datafusion-comet-$COMET_VERSION.tar.gz" +# Unpack +tar -xzf apache-datafusion-comet-$COMET_VERSION.tar.gz +cd apache-datafusion-comet-$COMET_VERSION ``` Build