Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions docs/source/user-guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are we fully supporting 4.0? I can see the build maven profile for 4.0

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No not fully supported yet

## 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

Expand All @@ -44,8 +49,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`.
```console
# 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

```console
make release-nogit PROFILES="-Pspark-3.4"
```

## Building from the GitHub repository

Expand Down