From 74880e86fa07d46d352a3353c705cbaf1910f708 Mon Sep 17 00:00:00 2001 From: "ganhongnan.1024" Date: Sat, 23 Dec 2023 07:54:33 +0800 Subject: [PATCH] [DOC] fix typo in Getting-Started doc. (#4169) --- docs/get-started/Velox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/get-started/Velox.md b/docs/get-started/Velox.md index 2b38f97f71dc..6c48cba897b8 100644 --- a/docs/get-started/Velox.md +++ b/docs/get-started/Velox.md @@ -103,7 +103,7 @@ Once building successfully, the Jar file will be generated in the directory: pac With config `enable_vcpkg=ON`, the dependency libraries will be built and staticly linked into libvelox.so and libgluten.so, which is packed into the gluten-jar. In this way, only the gluten-jar is needed to add to `spark..extraClassPath` and spark will deploy the jar to each worker node. It's better to build the static version using a clean docker image without any extra libraries installed. On host with some libraries like jemalloc installed, the script may crash with odd message. You may need to uninstall those libraries to get a clean host. -With config `enable_vcpkg=OFF`, the dependency libraries won't be staticly linked, instead the script will install the libraries to system then pack the dependency libraries into another jar named gluten-package--SNAPSHOT.jar. Then you need to add the jar to extraClassPath then set `spark.gluten.loadLibFromJar=true`. Or you already manually deployed the dependency libraries on each worker node. You may find the libraries list from the gluten-package jar. +With config `enable_vcpkg=OFF`, the dependency libraries won't be staticly linked, instead the script will install the libraries to system then pack the dependency libraries into another jar named gluten-package-${Maven-artifact-version}.jar. Then you need to add the jar to extraClassPath then set `spark.gluten.loadLibFromJar=true`. Or you already manually deployed the dependency libraries on each worker node. You may find the libraries list from the gluten-package jar. ## HDFS support