You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Uwe L. Korn (JIRA)" <ji...@apache.org> on 2018/06/14 16:25:00 UTC

[jira] [Resolved] (ARROW-2677) [Python] Expose Parquet ZSTD compression

     [ https://issues.apache.org/jira/browse/ARROW-2677?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Uwe L. Korn resolved ARROW-2677.
--------------------------------
       Resolution: Fixed
    Fix Version/s: 0.10.0

Issue resolved by pull request 2120
[https://github.com/apache/arrow/pull/2120]

> [Python] Expose Parquet ZSTD compression
> ----------------------------------------
>
>                 Key: ARROW-2677
>                 URL: https://issues.apache.org/jira/browse/ARROW-2677
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: Python
>    Affects Versions: 0.9.0
>            Reporter: William Lee
>            Assignee: Uwe L. Korn
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 0.10.0
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> It seems like in the python/pyarrow/_parquet.pyx file there's a check for the supported compression scheme:
> {code}
> cdef int check_compression_name(name) except -1:
>     if name.upper() not in ['NONE', 'SNAPPY', 'GZIP', 'LZO', 'BROTLI', 'LZ4']:
>         raise ArrowException("Unsupported compression: " + name)
>     return 0{code}
> which does not include ZSTD (Zstandard).  From my understanding it should be supported in the underlying c++ library already.  Is it possible to add that support?
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)