我要评分
获取效率
正确性
完整性
易理解

"libabsl_xxx.so.2501.0.0 no such file" Displayed When Running Gluten for Spark

Symptom

The message "libabsl_xxx.so.2501.0.0 no such file" is displayed when Gluten is running.

Key Process and Cause Analysis

The libabsl version installed in the current environment is too early.

Conclusion and Solution

Install libabsl 2501 or later. Run the following commands to install libabsl:

cd /home/
git clone https://szv-open.codehub.huawei.com/OpenSourceCenter/abseil/abseil-cpp.git
git checkout tags/20250127.0
cd abseil-cpp/
mkdir build && cd build
cmake ..   -DCMAKE_CXX_STANDARD=17   -DCMAKE_CXX_STANDARD_REQUIRED=ON   -DABSL_PROPAGATE_CXX_STD=ON -DBUILD_SHARED_LIBS=ON
make -j32
make install