-
Notifications
You must be signed in to change notification settings - Fork 3k
Add Puffin, indices and stats file format specification #4944
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,144 @@ | ||
| --- | ||
| url: puffin-spec | ||
| toc: false | ||
| --- | ||
| <!-- | ||
| - Licensed to the Apache Software Foundation (ASF) under one or more | ||
| - contributor license agreements. See the NOTICE file distributed with | ||
| - this work for additional information regarding copyright ownership. | ||
| - The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| - (the "License"); you may not use this file except in compliance with | ||
| - the License. You may obtain a copy of the License at | ||
| - | ||
| - http://www.apache.org/licenses/LICENSE-2.0 | ||
| - | ||
| - Unless required by applicable law or agreed to in writing, software | ||
| - distributed under the License is distributed on an "AS IS" BASIS, | ||
| - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| - See the License for the specific language governing permissions and | ||
| - limitations under the License. | ||
| --> | ||
|
|
||
| # Puffin file format | ||
|
|
||
| This is a specification for Puffin, a file format designed to store | ||
| information such as indexes and statistics about data managed in an | ||
| Iceberg table that cannot be stored directly within the Iceberg manifest. A | ||
| Puffin file contains arbitrary pieces of information (here called "blobs"), | ||
| along with metadata necessary to interpret them. The blobs supported by Iceberg | ||
| are documented at [Blob types](#blob-types). | ||
|
|
||
| ## Format specification | ||
|
|
||
| A file conforming to the Puffin file format specification should have the structure | ||
| as described below. | ||
|
|
||
| ### Versions | ||
|
|
||
| Currently, there is a single version of the Puffin file format, described below. | ||
|
|
||
| ### File structure | ||
|
|
||
| The Puffin file has the following structure | ||
|
|
||
| ``` | ||
| Magic Blob₁ Blob₂ ... Blobₙ Footer | ||
| ``` | ||
|
|
||
| where | ||
|
|
||
| - `Magic` is four bytes 0x50, 0x46, 0x41, 0x31 (short for: Puffin _Fratercula | ||
| arctica_, version 1), | ||
| - `Blobᵢ` is i-th blob contained in the file, to be interpreted by application | ||
| according to the footer, | ||
| - `Footer` is defined below. | ||
|
|
||
| ### Footer structure | ||
|
|
||
| Footer has the following structure | ||
|
|
||
| ``` | ||
| Magic FooterPayload FooterPayloadSize Flags Magic | ||
| ``` | ||
|
|
||
| where | ||
|
|
||
| - `Magic`: four bytes, same as at the beginning of the file | ||
| - `FooterPayload`: optionally compressed, UTF-8 encoded JSON payload describing the | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The mentioning of lz4 as the compression option should ideally be placed near the first mention of compression imo. Or perhaps a mention of the compression section would suffice. I had to go looking for an indication of the compression type after reading this line which was somewhat confusing for me.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i would remove mention of compression from here rather than elaborate this enumeration item with compression specification. However, it was added for the clarity here. |
||
| blobs in the file, with the structure described below | ||
| - `FooterPayloadSize`: a length in bytes of the `FooterPayload` (after compression, | ||
| if compressed), stored as 4 byte integer | ||
| - `Flags`: 4 bytes for boolean flags | ||
| - byte 0 (first) | ||
| - bit 0 (lowest bit): whether `FooterPayload` is compressed | ||
| - all other bits are reserved for future use and should be set to 0 on write | ||
| - all other bytes are reserved for future use and should be set to 0 on write | ||
|
|
||
| A 4 byte integer is always signed, in a two's complement representation, stored | ||
| little-endian. | ||
|
|
||
| ### Footer Payload | ||
|
|
||
| Footer payload bytes is either uncompressed or LZ4-compressed (as a single | ||
| [LZ4 compression frame](https://github.com/lz4/lz4/blob/77d1b93f72628af7bbde0243b4bba9205c3138d9/doc/lz4_Frame_format.md) | ||
| with content size present), UTF-8 encoded JSON payload representing a single | ||
| `FileMetadata` object. | ||
|
|
||
| #### FileMetadata | ||
|
|
||
| `FileMetadata` has the following fields | ||
|
|
||
|
|
||
| | Field Name | Field Type | Required | Description | | ||
| | ---------- | --------------------------------------- | -------- | ----------- | | ||
| | blobs | list of BlobMetadata objects | yes | | ||
| | properties | JSON object with string property values | no | storage for arbitrary meta-information, like writer identification/version. See [Common properties](#common-properties) for properties that are recommended to be set by a writer. | ||
|
|
||
| #### BlobMetadata | ||
|
|
||
| `BlobMetadata` has the following fields | ||
|
|
||
| | Field Name | Field Type | Required | Description | | ||
| |-------------------|-----------------------------------------|----------| ----------- | | ||
| | type | JSON string | yes | See [Blob types](#blob-types) | ||
| | fields | list of JSON long | yes | List of field IDs the blob was computed for; the order of items is used to compute sketches stored in the blob. | ||
| | offset | JSON long | yes | The offset in the file where the blob contents start | ||
| | length | JSON long | yes | The length of the blob stored in the file (after compression, if compressed) | ||
| | compression-codec | JSON string | no | See [Compression codecs](#compression-codecs). If omitted, the data is assumed to be uncompressed. | ||
| | properties | JSON object with string property values | no | storage for arbitrary meta-information about the blob | ||
|
|
||
| ### Blob types | ||
|
|
||
| The blobs can be of a type listed below | ||
|
|
||
| #### `apache-datasketches-theta-v1` blob type | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So to clarify, alpha-sketch is just one example, and the idea here is it support various statistics/secondary index that is to be defined, right? Example, other sketches, or even bloom filter?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, the idea is to support bloom filters, dictionaries, and other index types in addition to sketches like this. We'd also like to get histograms in there.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Great, thanks
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yea, led me to wonder on #4945, whether these stats/indices would apply to an individual data file, as well as across whole snapshot (I guess both will be very useful).
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't matter for this file format. I think the next step is to start thinking about adding these at the partition level.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yea makes sense, its separate. |
||
|
|
||
| A serialized form of a "compact" Theta sketch produced by the [Apache | ||
| DataSketches](https://datasketches.apache.org/) library. The sketch is obtained by | ||
| constructing Alpha family sketch with default seed, and feeding it with individual | ||
| distinct values converted to bytes using Iceberg's single-value serialization. | ||
findepi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| The blob metadata for this blob may include following properties: | ||
|
|
||
| - `ndv`: estimate of number of distinct values, derived from the sketch. | ||
|
|
||
| ### Compression codecs | ||
|
|
||
| The data can also be uncompressed. If it is compressed the codec should be one of | ||
| codecs listed below. For maximal interoperability, other codecs are not supported. | ||
|
|
||
| | Codec name | Description | | ||
| |------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| | lz4 | Single [LZ4 compression frame](https://github.com/lz4/lz4/blob/77d1b93f72628af7bbde0243b4bba9205c3138d9/doc/lz4_Frame_format.md), with content size present | | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: Does it make sense to add a link to the doc from a released branch?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the precise version (commit) is the only way to guarantee the link remains valid. |
||
| | zstd | Single [Zstandard compression frame](https://github.com/facebook/zstd/blob/8af64f41161f6c2e0ba842006fe238c664a6a437/doc/zstd_compression_format.md#zstandard-frames), with content size present | | ||
| __ | ||
|
|
||
| ### Common properties | ||
|
|
||
| When writing a Puffin file it is recommended to set the following fields in the | ||
| [FileMetadata](#filemetadata)'s `properties` field. | ||
|
|
||
| - `created-by` - human-readable identification of the application writing the file, | ||
| along with its version. Example "Trino version 381". | ||
| - `source-snapshot-id` - a table snapshot which was used to calculate blob contents | ||
| - `source-sequence-number` - sequence number of the table snapshot used to calculate blob contents | ||
Uh oh!
There was an error while loading. Please reload this page.