[Feature] Support Fluss as ActionStateStore backend#628
Open
beryllw wants to merge 9 commits intoapache:mainfrom
Open
[Feature] Support Fluss as ActionStateStore backend#628beryllw wants to merge 9 commits intoapache:mainfrom
beryllw wants to merge 9 commits intoapache:mainfrom
Conversation
Contributor
|
Thanks for working on this. I’m also looking into Fluss as an ActionStateStore backend, so I’ve been comparing different designs here. One question on the PK table approach: with synchronous upsert in put() and no-op rebuildState(), it seems backend upsert/lookup may sit on the hot path. For new seqNums, get() will usually need to hit Fluss, while the Kafka-style design keeps get() local by rebuilding post-checkpoint state into an in-memory cache. Did you consider using a Log Table instead, plus local cache + recovery marker + changelog rebuild? My main concern is the latency tradeoff of putting PK-table lookup/upsert directly on the action execution path. |
joeyutong
reviewed
Apr 27, 2026
joeyutong
reviewed
Apr 27, 2026
joeyutong
reviewed
Apr 27, 2026
joeyutong
reviewed
Apr 27, 2026
joeyutong
reviewed
Apr 28, 2026
…ctionStateSerialization uniformly
… optimize helper methods
joeyutong
reviewed
Apr 29, 2026
…d multi-bucket and SASL integration tests, enhance unit test coverage, and update security protocol docs.
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.
Linked issue: #627
Purpose of change
Uses Fluss log table + in-memory HashMap (similar to Kafka approach):
Table schema: (
state_key STRING, state_payload BYTES, agent_key STRING), distributed byagent_key.Tests
API
Documentation
doc-neededdoc-not-neededdoc-included