Skip to content

Commit

Permalink
slight rewording
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenzwu committed Feb 22, 2024
1 parent f6394f4 commit e74d345
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions format/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -1217,15 +1217,19 @@ Example

Content file (data or delete) is serialized as a JSON object.
Here is the [Java implementation](https://github.com/apache/iceberg/blob/main/core/src/main/java/org/apache/iceberg/ContentFileParser.java).
While the JSON serializer implementation should try to evolve in compatible ways,
it is not a table format level contract.
The JSON serializer implementation should try to evolve in compatible ways,
as some engines may depend on the compatibility (e.g. Flink checkpoint state).
But it is not a table format contract.
Hence JSON serialization details are left out in the table spec.

### File Scan Task Serialization

File scan task is serialized as a JSON object.
Here is the [Java implementation](https://github.com/apache/iceberg/blob/main/core/src/main/java/org/apache/iceberg/FileScanTaskParser.java).
While the JSON serializer implementation should try to evolve in compatible ways,
it is not a table format level contract.
The JSON serializer implementation should try to evolve in compatible ways,
as some engines may depend on the compatibility (e.g. Flink checkpoint state).
But it is not a table format contract.
Hence JSON serialization details are left out in the table spec.

## Appendix D: Single-value serialization

Expand Down

0 comments on commit e74d345

Please sign in to comment.