From 1cc5d70a431aa3d768607c352bdc4c0b74a29c5e Mon Sep 17 00:00:00 2001 From: glutenperfbot Date: Thu, 28 May 2026 04:45:37 +0000 Subject: [PATCH 1/2] [GLUTEN-6887][VL] Daily Update Velox Version (dft-2026_05_28) Upstream Velox's New Commits: 325e8979c by Ali LeClerc, docs: Update VeloxCon banner on homepage (#17626) Signed-off-by: glutenperfbot --- ep/build-velox/src/get-velox.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ep/build-velox/src/get-velox.sh b/ep/build-velox/src/get-velox.sh index 793e1b212c..ae61e389ba 100755 --- a/ep/build-velox/src/get-velox.sh +++ b/ep/build-velox/src/get-velox.sh @@ -18,8 +18,8 @@ set -exu CURRENT_DIR=$(cd "$(dirname "$BASH_SOURCE")"; pwd) VELOX_REPO=https://github.com/IBM/velox.git -VELOX_BRANCH=dft-2026_05_27 -VELOX_ENHANCED_BRANCH=ibm-2026_05_27 +VELOX_BRANCH=dft-2026_05_28 +VELOX_ENHANCED_BRANCH=ibm-2026_05_28 VELOX_HOME="" RUN_SETUP_SCRIPT=ON ENABLE_ENHANCED_FEATURES=OFF From 9727d356814b66002aee6c7723820e980810c5c0 Mon Sep 17 00:00:00 2001 From: Yuan Date: Thu, 28 May 2026 09:42:08 +0100 Subject: [PATCH 2/2] fix memory allocator option Signed-off-by: Yuan --- cpp/velox/memory/VeloxMemoryManager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/velox/memory/VeloxMemoryManager.cc b/cpp/velox/memory/VeloxMemoryManager.cc index f628b8cdae..ad46a6ce9b 100644 --- a/cpp/velox/memory/VeloxMemoryManager.cc +++ b/cpp/velox/memory/VeloxMemoryManager.cc @@ -233,7 +233,7 @@ VeloxMemoryManager::VeloxMemoryManager( ArbitratorFactoryRegister afr(listener_.get()); velox::memory::MemoryManager::Options mmOptions; - mmOptions.alignment = velox::memory::MemoryAllocator::kMaxAlignment; + mmOptions.alignment = velox::memory::MemoryAllocator::kDefaultAlignment; mmOptions.trackDefaultUsage = true; // memory usage tracking mmOptions.checkUsageLeak = checkUsageLeak; // leak check mmOptions.coreOnAllocationFailureEnabled = false;