feat(store): add schema-based filesystem event loading - #520
Draft
johanpel wants to merge 5 commits into
Draft
Conversation
johanpel
force-pushed
the
schema-based-event-import-iterator-store
branch
3 times, most recently
from
August 5, 2026 06:35
f717f85 to
23584bf
Compare
johanpel
force-pushed
the
schema-based-event-import-iterator-store
branch
from
August 5, 2026 11:37
23584bf to
93ee16f
Compare
rapids-bot Bot
pushed a commit
that referenced
this pull request
Aug 6, 2026
# Description Make importers yield `Result` items so read, framing, and decoding failures are not mistaken for EOF. Recover when the next record boundary is known, otherwise terminate after returning the error. Generated model and query-engine consumers now propagate item errors. Simulator bridges temporarily collect streams until a follow-up introduces the fallible streaming interface in #520. ## Related Issues Split off as a small incremental change from #520 _Written by Codex._ Authors: - Johan Peltenburg (https://github.com/johanpel) Approvers: - Dhruv Vats (https://github.com/dhruv9vats) URL: #537
Signed-off-by: Johan Peltenburg <johan.peltenburg+code@gmail.com>
Signed-off-by: Johan Peltenburg <johan.peltenburg+code@gmail.com>
johanpel
force-pushed
the
schema-based-event-import-iterator-store
branch
from
August 6, 2026 10:22
bbf4974 to
e200c10
Compare
Signed-off-by: Johan Peltenburg <johan.peltenburg+code@gmail.com>
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.
Description
Add backend-neutral event-store traits with an initial filesystem implementation, plus
quent-store-buildfor generating compatible model and entity markers from a schema.Entity-specific loading is available by default. Enabling
umbrella_eventadds model-wide loading through the generated umbrella event type. Both APIs return unordered event iterators.The standalone example demonstrates generating an analysis model and loading instrumentation output. CI covers the example independently.
Related Issues
Stacked on #519 so that needs to merge first
Written by Codex.