anmyachev commented on issue #41058:
URL: https://github.com/apache/arrow/issues/41058#issuecomment-2043452176
I see this error also in the new build that is not marked as broken:
`snappy 1.2.0 hdb0a2a9_1 conda-forge`
<details>
<summary> Traceback: </summary>
```bash
/usr/share/miniconda3/envs/modin/lib/python3.9/site-packages/ray/air/config.py:17:
in <module>
import pyarrow.fs
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _
"""
PyArrow is the python implementation of Apache Arrow.
Apache Arrow is a cross-language development platform for in-memory data.
It specifies a standardized language-independent columnar memory format
for
flat and hierarchical data, organized for efficient analytic operations
on
modern hardware. It also provides computational libraries and zero-copy
streaming messaging and interprocess communication.
For more information see the official page at https://arrow.apache.org/
"""
import gc as _gc
import importlib as _importlib
import os as _os
import platform as _platform
import sys as _sys
import warnings as _warnings
try:
from ._generated_version import version as __version__
except ImportError:
# Package is not installed, parse git tag at runtime
try:
import setuptools_scm
# Code duplicated from setup.py to avoid a dependency on each
other
def parse_git(root, **kwargs):
"""
Parse function for setuptools_scm that ignores tags for
non-C++
subprojects, e.g. apache-arrow-js-XXX tags.
"""
from setuptools_scm.git import parse
kwargs['describe_command'] = \
"git describe --dirty --tags --long --match
'apache-arrow-[0-9]*.*'"
return parse(root, **kwargs)
__version__ = setuptools_scm.get_version('../',
parse=parse_git)
except ImportError:
__version__ = None
# ARROW-8684: Disable GC while initializing Cython extension module,
# to workaround Cython bug in
https://github.com/cython/cython/issues/3603
_gc_enabled = _gc.isenabled()
_gc.disable()
> import pyarrow.lib as _lib
E ImportError:
/usr/share/miniconda3/envs/modin/lib/python3.9/site-packages/pyarrow/../../.././liborc.so:
undefined symbol: _ZN6snappy11RawCompressEPKcmPcPm
/usr/share/miniconda3/envs/modin/lib/python3.9/site-packages/pyarrow/__init__.py:65:
ImportError
```
</details>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]