mirror of
https://github.com/asadbek064/hyparquet.git
synced 2026-01-03 18:26:38 +00:00
Readme section on supported parquet files
This commit is contained in:
parent
88121409bf
commit
514014d08b
23
README.md
23
README.md
@ -69,6 +69,29 @@ const metadata = parquetMetadata(arrayBuffer)
|
||||
|
||||
To parse parquet files from a user drag-and-drop action, see example in [index.html](index.html).
|
||||
|
||||
## Supported Parquet Files
|
||||
|
||||
The parquet format supports a number of different compression and encoding types.
|
||||
Hyparquet does not support 100% of all parquet files, and probably never will, since supporting all possible compression types will increase the size of the library, and are rarely used in practice.
|
||||
|
||||
Compression:
|
||||
- [X] Uncompressed
|
||||
- [X] Snappy
|
||||
- [ ] GZip
|
||||
- [ ] LZO
|
||||
- [ ] Brotli
|
||||
- [ ] LZ4
|
||||
- [ ] ZSTD
|
||||
- [ ] LZ4_RAW
|
||||
|
||||
Page Type:
|
||||
- [X] Data Page
|
||||
- [ ] Index Page
|
||||
- [X] Dictionary Page
|
||||
- [ ] Data Page V2
|
||||
|
||||
Contributions are welcome!
|
||||
|
||||
## References
|
||||
|
||||
- https://github.com/apache/parquet-format
|
||||
|
||||
Loading…
Reference in New Issue
Block a user