[vortex] Introduce vortex file format integration#7543
Open
JingsongLi wants to merge 1 commit intoapache:masterfrom
Open
[vortex] Introduce vortex file format integration#7543JingsongLi wants to merge 1 commit intoapache:masterfrom
JingsongLi wants to merge 1 commit intoapache:masterfrom
Conversation
a10y
pushed a commit
to vortex-data/vortex
that referenced
this pull request
Mar 27, 2026
<!-- Thank you for submitting a pull request! We appreciate your time and effort. Please make sure to provide enough information so that we can review your pull request. The Summary and Testing sections below contain guidance on what to include. --> ## Summary <!-- If this PR is related to a tracked effort, please link to the relevant issue here (e.g., `Closes: #123`). Otherwise, feel free to ignore / delete this. In this section, please: 1. Explain the rationale for this change. 2. Summarize the changes included in this PR. A general rule of thumb is that larger PRs should have larger summaries. If there are a lot of changes, please help us review the code by explaining what was changed and why. If there is an issue or discussion attached, there is no need to duplicate all the details, but clarity is always preferred over brevity. --> Add Java Bindings for FixedSizeList Data Type. I am from the Apache Paimon community, and I aim to make Vortex a file format under the Paimon lake format. Currently, I want to integrate Paimon's VectorType with Vortex's FixedList, but JNI support is missing. Therefore, I am contributing this capability to the Vortex community. Closes: #4979 <!-- ## API Changes Uncomment this section if there are any user-facing changes. Consider whether the change affects users in one of the following ways: 1. Breaks public APIs in some way. 2. Changes the underlying behavior of one of the engine integrations. 3. Should some documentation be updated to reflect this change? If a public API is changed in a breaking manner, make sure to add the appropriate label. You can run `./scripts/public-api.sh` locally to see if there are any public API changes (and this also runs in our CI). --> ## Testing <!-- Please describe how this change was tested. Here are some common categories for testing in Vortex: 1. Verifying existing behavior is maintained. 2. Verifying new behavior and functionality works correctly. 3. Serialization compatibility (backwards and forwards) should be maintained or explicitly broken. --> 1. `DTypeTest.java`: For java JNI api. 2. `SparkTypesTest.java`: Fixed SizeList and Conversion from List to Spark Array Type 3. Manually validated in Apache Paimon integration: apache/paimon#7543 Signed-off-by: JingsongLi <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
See https://vortex.dev/
Vortex performs well in terms of vectors, and introducing it can significantly help us gain significant advantages in vector storage. (https://paimon.apache.org/docs/master/append-table/vector/)
Tests
VortexFileFormatReadWriteTestand more.