Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-37756: [Format][Docs] Document IPC Compression #43950

Merged
merged 18 commits into from
Sep 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/source/format/Columnar.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1388,11 +1388,12 @@ have two entries in each RecordBatch. For a RecordBatch of this schema with
Compression
-----------

There are three different options for record batch body
buffers compression: buffers can be uncompressed, can use
``lz4`` or ``zstd`` compression codec. All buffers in the flat
sequence of the message body are compressed separately with the
same codec.
There are three different options for compression of record batch
body buffers: Buffers can be uncompressed, buffers can be
compressed with the``lz4`` compression codec, or buffers can
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved
be compressed with the ``zstd`` compression codec. Buffers in
the flat sequence of a message body must be either all
uncompressed or all compressed separately using the same codec.
AlenkaF marked this conversation as resolved.
Show resolved Hide resolved

The difference between compressed and uncompressed buffers in the
serialized form is as follows:
Expand Down
Loading