-
Notifications
You must be signed in to change notification settings - Fork 119
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I would like to read Avro files in ztsd codec, like this
from datafusion import SessionContext
ctx = SessionContext()
ctx.read_avro("/path/to/my/avro/in/zstd/codec")
But currently it gives the following error:
---------------------------------------------------------------------------
Exception Traceback (most recent call last)
Cell In[4], line 4
1 from datafusion import SessionContext
3 ctx = SessionContext()
----> 4 ctx.read_avro("/path/to/my/avro/in/zstd/codec")
Exception: DataFusion error: AvroError(CodecNotSupported("zstandard"))
I am running the code using official Python 3.9 docker image (python:3.9-slim) and install using pip install datafusion
.
Describe the solution you'd like
No idea, is it even not supported in the original Rust implementation?
Describe alternatives you've considered
Read the file into using other Avro libraries and convert into datafusion dataframes.
Additional context
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request