shuai-xu commented on code in PR #8839: URL: https://github.com/apache/incubator-gluten/pull/8839#discussion_r2000146443
########## docs/get-started/Flink.md: ########## @@ -0,0 +1,97 @@ +--- +layout: page +title: Gluten For Flink with Velox Backend +nav_order: 1 +parent: Getting-Started +--- + +# Supported Version + +| Type | Version | +|-------|------------------------------| +| Flink | 1.20 | +| OS | Ubuntu20.04/22.04, Centos7/8 | +| jdk | openjdk11/jdk17 | +| scala | 2.12 | + +# Prerequisite + +Currently, with static build Gluten+Flink+Velox backend supports all the Linux OSes, but is only tested on **Ubuntu20.04/Ubuntu22.04/Centos7/Centos8**. With dynamic build, Gluten+Velox backend support **Ubuntu20.04/Ubuntu22.04/Centos7/Centos8** and their variants. + +Currently, the officially supported Flink versions are 1.20.*. + +We need to set up the `JAVA_HOME` env. Currently, Gluten supports **java 11** and **java 17**. + +**For x86_64** + +```bash +## make sure jdk8 is used +export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 +export PATH=$JAVA_HOME/bin:$PATH +``` + +**For aarch64** + +```bash +## make sure jdk8 is used Review Comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
