Skip to content

Commit

Permalink
[VL] update docker script in readme (#4683)
Browse files Browse the repository at this point in the history
couple of udpates of script to build gluten in ubuntu20.04/22.04 docker.
  • Loading branch information
BInwei Yang authored Feb 19, 2024
1 parent e4c1410 commit a5a6081
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/developers/docker_ubuntu22.04.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ apt install maven build-essential cmake libssl-dev libre2-dev libcurl4-openssl-d
apt install sudo
# make sure jemalloc is uninstalled, jemalloc will be build in vcpkg, which conflicts with the default jemalloc in system
apt uninstall jemalloc_dev jemalloc
apt purge libjemalloc-dev libjemalloc2 librust-jemalloc-sys-dev
#make sure jdk8 is used. New version of jdk is not supported
apt install -y openjdk-8-jdk
Expand All @@ -54,7 +54,7 @@ cd gluten/
# the script download velox & arrow and compile all dependency library automatically
# To access HDFS or S3, you need to add the parameters `--enable_hdfs=ON` and `--enable_s3=ON`
# It's suggested to build using static link, enabled by --ENABLE_VCPKG=ON
# For developer, it's suggested to enable Debug info, by --BUILD_TYPE=RelWithDebInfo. Note RelWithDebInfo uses -o2, release uses -o3
./dev/buildbundle-veloxbe.sh --ENABLE_VCPKG=ON --BUILD_TYPE=RelWithDebInfo
# It's suggested to build using static link, enabled by `--enable_vcpkg=ON`
# For developer, it's suggested to enable Debug info, by --build_type=RelWithDebInfo. Note RelWithDebInfo uses -o2, release uses -o3
./dev/buildbundle-veloxbe.sh --enable_vcpkg=ON --build_type=RelWithDebInfo
```
13 changes: 13 additions & 0 deletions docs/get-started/Velox.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ title: Gluten with Velox Backend
nav_order: 1
parent: Getting-Started
---
# Supported Version
| Type | Version |
|-------|------------------------------|
| Spark | 3.2.2, 3.3.1 |
| OS | Ubuntu20.04/22.04, Centos7/8 |
| jdk | openjdk8 |
| scala | 2.12

Spark3.4.0 support is still WIP. TPCH/DS can pass, UT is not yet passed.

There are pending PRs for jdk11 support.


Currently, the mvn script can automatically fetch and build all dependency libraries incluing Velox. Our nightly build still use Velox under oap-project.

# Prerequisite
Expand Down

0 comments on commit a5a6081

Please sign in to comment.