From 284bdad1560f8eb734c2e161de3578ed63477b4e Mon Sep 17 00:00:00 2001 From: PHILO-HE Date: Mon, 14 Apr 2025 23:25:04 +0800 Subject: [PATCH] Initial --- docs/developers/HowTo.md | 2 +- docs/developers/NewToGluten.md | 2 +- docs/get-started/Velox.md | 8 ++------ 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/docs/developers/HowTo.md b/docs/developers/HowTo.md index 7c954d7e7e59..fa5336dff077 100644 --- a/docs/developers/HowTo.md +++ b/docs/developers/HowTo.md @@ -173,7 +173,7 @@ Here we will explain how to run TPC-H on Velox backend with the Parquet file for ``` - Modify `${GLUTEN_HOME}/tools/workload/tpch/run_tpch/tpch_parquet.sh`. - - Set `GLUTEN_JAR` correctly. Please refer to the section of [Build Gluten with Velox Backend](../get-started/Velox.md/#2-build-gluten-with-velox-backend) + - Set `GLUTEN_JAR` correctly. Please refer to the section of [Build Gluten with Velox Backend](../get-started/Velox.md#build-gluten-with-velox-backend) - Set `SPARK_HOME` correctly. - Set the memory configurations appropriately. - Execute `tpch_parquet.sh` using the below command. diff --git a/docs/developers/NewToGluten.md b/docs/developers/NewToGluten.md index da4e1fbdb8dc..1c6a22b65154 100644 --- a/docs/developers/NewToGluten.md +++ b/docs/developers/NewToGluten.md @@ -465,7 +465,7 @@ valgrind --leak-check=yes ./exec_backend_test # Run TPC-H and TPC-DS We supply `/tools/gluten-it` to execute these queries -Refer to [velox_be.yml](https://github.com/apache/incubator-gluten/blob/main/.github/workflows/velox_be.yml) +Refer to [velox_backend.yml](https://github.com/apache/incubator-gluten/blob/main/.github/workflows/velox_backend.yml) # Run gluten+velox on clean machine diff --git a/docs/get-started/Velox.md b/docs/get-started/Velox.md index 582a18a0edf3..533ed3cf6202 100644 --- a/docs/get-started/Velox.md +++ b/docs/get-started/Velox.md @@ -431,7 +431,7 @@ Using the following configuration options to customize spilling: # Velox User-Defined Functions (UDF) and User-Defined Aggregate Functions (UDAF) -Please check the [VeloxNativeUDF.md](../developers/VeloxNativeUDF.md) for more detailed usage and configurations. +Please check the [VeloxNativeUDF.md](../developers/VeloxUDF.md) for more detailed usage and configurations. # Test TPC-H or TPC-DS on Gluten with Velox backend @@ -445,10 +445,6 @@ The data generation scripts are [TPC-H dategen script](../../tools/workload/tpch The used TPC-H and TPC-DS queries are the original ones, and can be accessed from [TPC-DS queries](../../tools/gluten-it/common/src/main/resources/tpcds-queries) and [TPC-H queries](../../tools/gluten-it/common/src/main/resources/tpch-queries). -Some other versions of TPC-DS queries are also provided, but are **not** recommended for testing, including: - -- the modified TPC-DS queries with "Decimal-to-Double": [TPC-DS non-decimal queries](../../gluten-core/src/test/resources/tpcds-queries/tpcds.queries.no-decimal) (outdated). - ## Submit the Spark SQL job Submit test script from spark-shell. You can find the scala code to [Run TPC-H](../../tools/workload/tpch/run_tpch/tpch_parquet.scala) as an example. Please remember to modify @@ -547,7 +543,7 @@ I20231121 10:19:42.348845 90094332 WholeStageResultIterator.cc:220] Native Plan ## Using Stage-Level Resource Adjustment to Avoid OOM(Experimental) - see more [here](../VeloxStageResourceAdj.md) + see more [here](./VeloxStageResourceAdj.md) ## Broadcast Build Relations to Off-Heap(Experimental)