QuakeWang opened a new pull request, #719:
URL: https://github.com/apache/paimon-rust/pull/719
<!--
Thank you very much for contributing to Paimon Rust - we are happy that you
want to help us improve it. To help the community review your contribution in
the best possible way, please go through the checklist below, which will get
the contribution into a shape in which it can be best reviewed.
## Contribution Checklist
- Make sure that the pull request corresponds to a [GitHub
issue](https://github.com/apache/paimon-rust/issues). Exceptions are made for
typos in documentation or comments, which need no issue.
- Fill out the template below to describe the changes contributed by the
pull request. That will give reviewers the context they need to do the review.
- Make sure that the change passes the automated tests, i.e., `cargo test`
passes.
- Each pull request should address only one issue, not mix up code from
multiple issues.
**(The sections below can be removed for hotfixes or typos)**
-->
### Purpose
<!-- Linking this pull request to the issue -->
Linked issue: #34
The existing Rust FileIndex implementation used a Rust-only wire format that
differed from Java Paimon V1 in byte order, version, string encoding, and
integer widths. This prevented Java and Rust from exchanging FileIndex files
reliably. The reader also assumed a fixed-size header and did not fully
validate encoded ranges.
<!-- What is the purpose of the change -->
### Brief change log
<!-- Please describe the changes made in this pull request and explain how
they address the issue -->
- Align FileIndex reading and writing with Java V1.
- Preserve absent and empty index payloads separately.
- Validate truncated headers, invalid offsets, lengths, and overflows.
- Support headers larger than 1 MiB.
- Add Java golden fixtures and boundary tests.
### Tests
<!-- List unit tests or integration cases to verify this change -->
- `cargo fmt --all -- --check`
- `cargo clippy --locked --all-targets --workspace --features
fulltext,vortex -- -D warnings`
- `cargo test --locked -p paimon --all-targets --features fulltext,vortex`
- `cargo test --locked -p paimon-rest-server --all-targets`
- Rust 1.91 workspace MSRV check
- Java/Rust V1 interoperability verification
### API and Format
<!-- Does this change affect API or storage format -->
FileIndex payload APIs now use `Option<Bytes>` to distinguish absent indexes
from empty payloads. The wire format is changed to Java-compatible V1. The
legacy Rust-only format is intentionally unsupported.
### Documentation
<!-- Does this change introduce a new feature or require documentation
updates -->
Updated inline format documentation.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]