Conversation
lxy-9602
reviewed
Sep 23, 2026
This branch has not been deployed
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
Add checkpoint support for Lumina global index builds.
This change:
introduces
GlobalIndexCheckpointFileManageras a plugin-facing checkpoint storage interface;lets
GlobalIndexFileManageroptionally manage checkpoint scanning and I/O;adds task-scoped checkpoint paths in the following form:
[index_type]-global-index-[field_name]-[range_from]-[range_to]-[task_id]-[id].index.ckptdiscovers the latest checkpoint using its numeric ID and continues allocating IDs from it;
adds
GlobalIndexer::SupportsCheckpoint()so checkpoint storage is created only for index implementations that support it;adds an optional
task_idtoGlobalIndexWriteTask::WriteIndex;adapts Paimon checkpoint storage to Lumina's checkpoint manager;
restores Lumina builds from the latest matching checkpoint;
deletes matching checkpoints after a successful build;
when a build using an existing checkpoint fails, deletes the checkpoint and retries once from scratch;
isolates checkpoints by index type, field, row range, and task ID.
Index implementations that do not support checkpoints keep their existing behavior.
Tests
src/paimon/core/global_index/global_index_file_manager_test.cpp
src/paimon/core/utils/file_store_path_factory_test.cpp
src/paimon/global_index/lumina/lumina_global_index_test.cpp
test/inte/global_index_test.cpp
API and Format
GlobalIndexer::SupportsCheckpoint(), which returnsfalseby default;GlobalIndexCheckpointFileManager;task_idargument toGlobalIndexWriteTask::WriteIndex.