You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although we have implemented basic encodings (like RLE) in pixels, it's also common to use general compressions (like gzip) along with encoding in columnar storage. However, we haven't implemented this yet.
This is a highly likely feature in the near future.
The text was updated successfully, but these errors were encountered:
Shall we consider lz4 and zstd?
lz4 has a very fast decompression speed (but lower compression ratio) while zstd has a very high compression ratio and reasonable compression/decompression speed. They are both under BSD License and supported in Parquet.
Yes, you're right.
We should look into these two first when compression is on our plan table.
bianhq
changed the title
[pixels-core] add support for basic data compression
[pixels-core] add support for general data compression
Oct 10, 2019
Although we have implemented basic encodings (like RLE) in pixels, it's also common to use general compressions (like gzip) along with encoding in columnar storage. However, we haven't implemented this yet.
This is a highly likely feature in the near future.
The text was updated successfully, but these errors were encountered: