[
https://issues.apache.org/jira/browse/ARROW-5868?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16880722#comment-16880722
]
Wes McKinney commented on ARROW-5868:
-------------------------------------
Confirmed that the manylinux2010 wheel at least has a shared library dependency
on liblz4
{code}
$ ldd
~/miniconda/envs/pyarrow-0.14-wheel-3.6/lib/python3.6/site-packages/pyarrow/libarrow.so.14
linux-vdso.so.1 (0x00007ffe6974d000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f1de9c68000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f1de9c5d000)
liblz4.so.1 => /lib/x86_64-linux-gnu/liblz4.so.1 (0x00007f1de9c2e000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f1de9c12000)
libarrow_boost_system.so.1.68.0 =>
/home/wesm/miniconda/envs/pyarrow-0.14-wheel-3.6/lib/python3.6/site-packages/pyarrow/libarrow_boost_system.so.1.68.0
(0x00007f1de99fc000)
libarrow_boost_filesystem.so.1.68.0 =>
/home/wesm/miniconda/envs/pyarrow-0.14-wheel-3.6/lib/python3.6/site-packages/pyarrow/libarrow_boost_filesystem.so.1.68.0
(0x00007f1de97df000)
libarrow_boost_regex.so.1.68.0 =>
/home/wesm/miniconda/envs/pyarrow-0.14-wheel-3.6/lib/python3.6/site-packages/pyarrow/libarrow_boost_regex.so.1.68.0
(0x00007f1de94e3000)
libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6
(0x00007f1de9301000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f1de91b3000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1
(0x00007f1de9199000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
(0x00007f1de9178000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f1de8f8b000)
/lib64/ld-linux-x86-64.so.2 (0x00007f1deab1e000)
{code}
Checking manylinux1, then will look at the Docker image to see what's going on
> [Python] Some manylinux* wheels may have shared library dependency on liblz4
> ----------------------------------------------------------------------------
>
> Key: ARROW-5868
> URL: https://issues.apache.org/jira/browse/ARROW-5868
> Project: Apache Arrow
> Issue Type: Bug
> Components: Python
> Affects Versions: 0.14.0
> Reporter: Haowei Yu
> Priority: Blocker
> Fix For: 0.14.1
>
>
> I am using pyarrow in my project. It works well for version 0.13.0
> However, it seems recently there is a release for 0.14.0. After upgrading to
> the latest, I got this error.
> AttributeError: module 'pyarrow' has no attribute 'compat'
> Stacktrace:
> 2019-07-06 09:08:21 Traceback (most recent call last):
> 2019-07-06 09:08:21 File
> "/home/jenkins/workspace/CLIENTS_PERF/Tests/ClientsPerf/PythonConnectorPerf/src/PerfTestRunner.py",
> line 12, in <module>
> 2019-07-06 09:08:21 import snowflake.connector
> 2019-07-06 09:08:21 File
> "/home/jenkins/workspace/CLIENTS_PERF/Tests/ClientsPerf/PythonConnectorPerf/pythonconnector-perf/lib/python3.5/site-packages/snowflake/connector/__init__.py",
> line 21, in <module>
> 2019-07-06 09:08:21 from .connection import SnowflakeConnection
> 2019-07-06 09:08:21 File
> "/home/jenkins/workspace/CLIENTS_PERF/Tests/ClientsPerf/PythonConnectorPerf/pythonconnector-perf/lib/python3.5/site-packages/snowflake/connector/connection.py",
> line 42, in <module>
> 2019-07-06 09:08:21 from .cursor import SnowflakeCursor, LOG_MAX_QUERY_LENGTH
> 2019-07-06 09:08:21 File
> "/home/jenkins/workspace/CLIENTS_PERF/Tests/ClientsPerf/PythonConnectorPerf/pythonconnector-perf/lib/python3.5/site-packages/snowflake/connector/cursor.py",
> line 35, in <module>
> 2019-07-06 09:08:21 from pyarrow.ipc import open_stream
> 2019-07-06 09:08:21 File
> "/home/jenkins/workspace/CLIENTS_PERF/Tests/ClientsPerf/PythonConnectorPerf/pythonconnector-perf/lib/python3.5/site-packages/pyarrow/__init__.py",
> line 47, in <module>
> 2019-07-06 09:08:21 import pyarrow.compat as compat
> I can provide more detail if requested.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)