-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Java] Test failure in Dataset regarding TestAllTypes
#40568
Comments
Can you reproduce this on local? |
I am working on it at the moment 🙂 |
@kou I cannot build the JNI libraries in both Ubuntu and Mac due to a different reason. I am working on that... |
-- Building using CMake version: 3.28.3
-- The C compiler identification is GNU 13.2.0
-- The CXX compiler identification is GNU 13.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /bin/c++ - skipped This is part of the trace. |
Could you also show |
$ dpkg -l | grep libstd
ii libstdc++-11-dev:amd64 11.4.0-1ubuntu1~22.04 amd64 GNU Standard C++ Library v3 (development files)
ii libstdc++6:amd64 12.3.0-1ubuntu1~22.04 amd64 GNU Standard C++ Library v3
ii libstdc++6:i386 12.3.0-1ubuntu1~22.04 i386 GNU Standard C++ Library v3
|
Could you remove llvm installed by conda? |
Or could you also install |
It seems that you mixed LLVM from conda and LLVM by
|
@kou I removed llvm from apt and also installed clang. CMake Error at cmake_modules/ThirdpartyToolchain.cmake:4988 (set_property):
The link interface of target "AWS::aws-c-cal" contains:
OpenSSL::Crypto
but the target was not found. Possible reasons include:
* There is a typo in the target name.
* A find_package call is missing for an IMPORTED target.
* An ALIAS target is missing.
Call Stack (most recent call first):
cmake_modules/ThirdpartyToolchain.cmake:176 (build_awssdk)
cmake_modules/ThirdpartyToolchain.cmake:308 (build_dependency)
cmake_modules/ThirdpartyToolchain.cmake:5030 (resolve_dependency)
CMakeLists.txt:543 (include)
CMake Error at cmake_modules/BuildUtils.cmake:301 (target_link_libraries):
Target "gandiva_objlib" links to:
OpenSSL::Crypto
but the target was not found. Possible reasons include:
* There is a typo in the target name.
* A find_package call is missing for an IMPORTED target.
* An ALIAS target is missing.
Call Stack (most recent call first):
src/gandiva/CMakeLists.txt:140 (add_arrow_lib)
CMake Error at cmake_modules/BuildUtils.cmake:475 (target_link_libraries):
Target "gandiva_static" links to:
OpenSSL::Crypto
but the target was not found. Possible reasons include:
* There is a typo in the target name.
* A find_package call is missing for an IMPORTED target.
* An ALIAS target is missing.
Call Stack (most recent call first):
src/gandiva/CMakeLists.txt:140 (add_arrow_lib)
should I explicitly install openssl libs? |
clang was installed by conda. |
Yes. Could you install OpenSSL by ... conda? |
@kou I was able to fix my dev environment and thanks for the tips. Also I can verify that the issue recorded here can be reproduced in Ubuntu 22.04.4 LTS |
@kou looking into the issue, in high level what's happening is that there is a comparison between in memory generated Arrow Java data which is later written to the disk vs a predefined test file |
Could you try |
If we check the And if we check the latest commit, we don't find what is introduced by this PR: apache/arrow-testing#99 |
Seems like we have to update the submodule? |
### Rationale for this change A recurring CI failure was observed as recorded in #40568. ### What changes are included in this PR? Updating the testing submodule to the changes reflected in apache/arrow-testing#99 ### Are these changes tested? Tested by existing test cases. ### Are there any user-facing changes? No * GitHub Issue: #40568 Authored-by: Vibhatha Abeykoon <[email protected]> Signed-off-by: David Li <[email protected]>
Issue resolved by pull request 40662 |
Describe the bug, including details regarding any error messages, version, and platform.
There is a test failure regarding parquet based test cases in Dataset module. This issue was identified here.
Component(s)
Java
The text was updated successfully, but these errors were encountered: