This is an automated email from the ASF dual-hosted git repository.

joemcdonnell pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git


The following commit(s) were added to refs/heads/master by this push:
     new e1b3c1445 IMPALA-13472: Bump toolchain to fix minidump stacks on ARM
e1b3c1445 is described below

commit e1b3c1445eecf351fd702092a4adea7370842e17
Author: Joe McDonnell <[email protected]>
AuthorDate: Thu Sep 25 11:41:26 2025 -0700

    IMPALA-13472: Bump toolchain to fix minidump stacks on ARM
    
    Minidump stack resolution does not work on Redhat8 ARM64.
    Redhat8 ARM64 uses 64KB pages, and the Breakpad library does
    not properly handle collecting stacks for that configuration.
    Breakpad rounds off the stack pointer to the nearest page
    boundary below the stack pointer, then collects up to 32KB of
    stack memory. With a top-down stack, this means it is collecting
    some memory that is not used by the stack. With 64KB pages,
    the memory it collects usually doesn't contain any stack contents.
    
    This picks up a toolchain with Breakpad patched to fix this. The
    patch stops rounding the stack pointer to the nearest page.
    Instead, it adjusts the stack pointer to account for the red
    zone (128 bytes on x86_64) and then rounds to the nearest 1KB
    boundary below the stack pointer.
    
    Testing:
     - Produced and resolved minidumps on multiple build types for
       x86_64 and ARM64 (release, debug, asan, ubsan)
    
    Change-Id: I4fbd91abfbddfd8355d27ae9d9b86b70a9ce0409
    Reviewed-on: http://gerrit.cloudera.org:8080/23465
    Reviewed-by: Michael Smith <[email protected]>
    Tested-by: Impala Public Jenkins <[email protected]>
---
 bin/impala-config.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/bin/impala-config.sh b/bin/impala-config.sh
index 2718a384f..c11619361 100755
--- a/bin/impala-config.sh
+++ b/bin/impala-config.sh
@@ -81,13 +81,13 @@ export USE_AVRO_CPP=${USE_AVRO_CPP:=false}
 # moving to a different build of the toolchain, e.g. when a version is bumped 
or a
 # compile option is changed. The build id can be found in the output of the 
toolchain
 # build jobs, it is constructed from the build number and toolchain git hash 
prefix.
-export IMPALA_TOOLCHAIN_BUILD_ID_AARCH64=134-730ad7b0e4
-export IMPALA_TOOLCHAIN_BUILD_ID_X86_64=574-730ad7b0e4
+export IMPALA_TOOLCHAIN_BUILD_ID_AARCH64=136-7bb9bf4df2
+export IMPALA_TOOLCHAIN_BUILD_ID_X86_64=581-7bb9bf4df2
 export IMPALA_TOOLCHAIN_REPO=\
 ${IMPALA_TOOLCHAIN_REPO:-https://github.com/cloudera/native-toolchain.git}
 export IMPALA_TOOLCHAIN_BRANCH=${IMPALA_TOOLCHAIN_BRANCH:-master}
 export IMPALA_TOOLCHAIN_COMMIT_HASH=\
-${IMPALA_TOOLCHAIN_COMMIT_HASH-730ad7b0e4b169489dfffa8a6793c323cbd9ccc7}
+${IMPALA_TOOLCHAIN_COMMIT_HASH-7bb9bf4df2f8d1acdfb64e226fb5e2b38dc89921}
 # Compare the build ref in build IDs by removing everything 
up-to-and-including the
 # first hyphen.
 if [ "${IMPALA_TOOLCHAIN_BUILD_ID_AARCH64#*-}" \
@@ -119,7 +119,7 @@ export IMPALA_BINUTILS_VERSION=2.42
 unset IMPALA_BINUTILS_URL
 export IMPALA_BOOST_VERSION=1.74.0-p1
 unset IMPALA_BOOST_URL
-export IMPALA_BREAKPAD_VERSION=e09741c609dcd5f5274d40182c5e2cc9a002d5ba-p2
+export IMPALA_BREAKPAD_VERSION=e09741c609dcd5f5274d40182c5e2cc9a002d5ba-p3
 unset IMPALA_BREAKPAD_URL
 export IMPALA_BZIP2_VERSION=1.0.8-p2
 unset IMPALA_BZIP2_URL

Reply via email to