feat(common): add modified_since to StartProjectReindexPayload#1388
Open
ebarroca wants to merge 1 commit into
Open
feat(common): add modified_since to StartProjectReindexPayload#1388ebarroca wants to merge 1 commit into
ebarroca wants to merge 1 commit into
Conversation
ISO-8601 datetime that, when set, scopes a project reindex to documents whose updated_at is >= the supplied time. Writes in-place into the live alias's current index (no fresh versioned target, no alias swap), mirroring the modified_since path already supported by FullProjectReindexWorkflow. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
ebarroca
force-pushed
the
perf/zeno-bulk-indexer
branch
from
June 2, 2026 01:18
f8c25a1 to
c099e31
Compare
Contributor
|
This pull request has been marked as stale due to inactivity for 30 days. If this is still a priority, please add a comment or push an update to keep it active. Otherwise, it may be closed to keep the backlog manageable. |
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.
Summary
Adds an optional
modified_since?: string(ISO-8601 datetime) field toStartProjectReindexPayload. When set, the reindex workflow processes only documents whoseupdated_atis >= the supplied time and writes in-place into the live alias's current index — no fresh versioned target, no alias swap. Omit for the existing full-reindex behavior.Mirrors the
modified_sinceparameter already supported byfullProjectReindexWorkflowin the studio repo; this exposes it through the public payload type so the client SDK and admin UI can plumb it through.Companion PR
This is the submodule half of vertesia/studio#5367, which:
modified_sincethroughPOST /reindexin zeno-serverThe studio PR pins the submodule pointer to this branch tip.
Backwards compatibility
Optional field, omitted in existing callers → full reindex (current behavior). No breaking change.
Test plan
modified_sinceto confirm the field surfaces in generated openapi / client typings consumers in the parent repo.🤖 Generated with Claude Code