siumingdev opened a new issue, #349:
URL: https://github.com/apache/arrow-datafusion-python/issues/349
**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"))
```
**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**
--
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]