Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[VL] update docker script in readme #4683

Merged
merged 8 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from 7 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
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 --buld_type=RelWithDebInfo. Note RelWithDebInfo uses -o2, release uses -o3
Copy link
Contributor

Choose a reason for hiding this comment

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

typo: --build_type=...

./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
Loading