- Dremio client version: 0.10.1
- Dremio version: 15.0
- Python version: 3.8.6
- Operating System: Ubuntu 20.04.1 LTS
Description
I'm trying from dremio_client import flight, I get the following error message:
/opt/conda/lib/python3.8/site-packages/pyarrow/compat.py:24: FutureWarning: pyarrow.compat has been deprecated and will be removed in a future release
warnings.warn("pyarrow.compat has been deprecated and will be removed in a "
Then, when I try to connect, I get the following error message:
/opt/conda/lib/python3.8/site-packages/dremio_client/flight/__init__.py in connect(*args, **kwargs)
101
102 def connect(*args, **kwargs):
--> 103 raise NotImplementedError("Python Flight bindings require Python 3 and pyarrow > 0.14.0")
104
105 def query(*args, **kwargs):
NotImplementedError: Python Flight bindings require Python 3 and pyarrow > 0.14.0
What I Did
I built the docker image, pulling 0.10.1 from conda, today. I'm not super familiar with conda, so I may be doing something wrong, however this appears to be the latest version number: https://github.com/rymurr/dremio_client/blob/master/conda.recipe/meta.yaml#L2
It appears this is executing code that was changed quite some time ago (See compat error above):
18efb0e
Finally, it looks like an artifact hasn't been published to conda in over a year: https://anaconda.org/rymurr/dremio_client. Is it possible the deployment process is broken?