This is an automated email from the ASF dual-hosted git repository.
marong pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 546e63afb7 [GLUTEN-6887][VL] Daily Update Velox Version (2025_02_01)
(#8646)
546e63afb7 is described below
commit 546e63afb7ab1391d0c332f2ef8f7155f07fcd0d
Author: Gluten Performance Bot
<[email protected]>
AuthorDate: Tue Feb 4 04:06:25 2025 +0800
[GLUTEN-6887][VL] Daily Update Velox Version (2025_02_01) (#8646)
174a62842 by Peter Enescu, fix(array functions): Add support to
array_has_duplicates for input of type json (12207)
15d1ce0e3 by Wei He, build: Set up nightly runs of memory arbitration
fuzzer (12191)
eb91ba6eb by Xiaoxuan Meng, feat: Add sequence storage connector with index
lookup join integration (12227)
3578ef66f by Max Katsev, Fix static initialization order fiasco in velox
(12204)
b127d51e0 by Xiaoxuan Meng, fix: Fix a null bit set in left index lookup
join (12226)
832583d3b by Xiao Du, fix: Update the Description of map_top_n (12216)
6fc81cf79 by Xiaoxuan Meng, fix: Fix build failure and change lookup result
iterator return type (12224)
dcafd3292 by Xiaoxuan Meng, feat: Add initial index lookup join operator
implementation (12218)
256ed01be by Christian Zentgraf, misc: Update python versions used for
pyvelox (12157)
4bd122114 by Jacob Khaliqi, fix: Fix Compression file check output error
messages (12009)
d9a58fc18 by Xiaoxuan Meng, feat: Add test index storage connector for
index lookup join unit test (12215)
9c31eab07 by Xiaoxuan Meng, feat: Extend local planner to support index
lookup join (12214)
---
cpp/velox/compute/VeloxBackend.cc | 10 +++++-----
ep/build-velox/src/get_velox.sh | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/cpp/velox/compute/VeloxBackend.cc
b/cpp/velox/compute/VeloxBackend.cc
index a6dc8bc770..9b7dab4c66 100644
--- a/cpp/velox/compute/VeloxBackend.cc
+++ b/cpp/velox/compute/VeloxBackend.cc
@@ -112,21 +112,21 @@ void VeloxBackend::init(const
std::unordered_map<std::string, std::string>& conf
google::InitGoogleLogging("gluten");
// Allow growing buffer in another task through its memory pool.
- config::globalConfig.memoryPoolCapacityTransferAcrossTasks = true;
+ config::globalConfig().memoryPoolCapacityTransferAcrossTasks = true;
// Avoid creating too many shared leaf pools.
- config::globalConfig.memoryNumSharedLeafPools = 0;
+ config::globalConfig().memoryNumSharedLeafPools = 0;
// Set velox_exception_user_stacktrace_enabled.
- config::globalConfig.exceptionUserStacktraceEnabled =
+ config::globalConfig().exceptionUserStacktraceEnabled =
backendConf_->get<bool>(kEnableUserExceptionStacktrace,
kEnableUserExceptionStacktraceDefault);
// Set velox_exception_system_stacktrace_enabled.
- config::globalConfig.exceptionSystemStacktraceEnabled =
+ config::globalConfig().exceptionSystemStacktraceEnabled =
backendConf_->get<bool>(kEnableSystemExceptionStacktrace,
kEnableSystemExceptionStacktraceDefault);
// Set velox_memory_use_hugepages.
- config::globalConfig.memoryUseHugepages =
backendConf_->get<bool>(kMemoryUseHugePages, kMemoryUseHugePagesDefault);
+ config::globalConfig().memoryUseHugepages =
backendConf_->get<bool>(kMemoryUseHugePages, kMemoryUseHugePagesDefault);
// Async timeout.
FLAGS_gluten_velox_aysnc_timeout_on_task_stopping =
diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh
index 46f1a75486..dd27160529 100755
--- a/ep/build-velox/src/get_velox.sh
+++ b/ep/build-velox/src/get_velox.sh
@@ -17,7 +17,7 @@
set -exu
VELOX_REPO=https://github.com/oap-project/velox.git
-VELOX_BRANCH=2025_01_31
+VELOX_BRANCH=2025_02_01
VELOX_HOME=""
OS=`uname -s`
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]