KAFKA-20158: Fix header-based key deserialization in MeteredSessionStoreWithHeaders iterator methods#21734
Merged
bbejeck merged 2 commits intoapache:trunkfrom Mar 14, 2026
Conversation
…ds deserializing keys
mjsax
approved these changes
Mar 14, 2026
Member
mjsax
left a comment
There was a problem hiding this comment.
Overall LGTM. Some minor suggestions. Feel free to merge after addressed.
...s/src/main/java/org/apache/kafka/streams/state/internals/MeteredSessionStoreWithHeaders.java
Outdated
Show resolved
Hide resolved
...s/src/main/java/org/apache/kafka/streams/state/internals/MeteredSessionStoreWithHeaders.java
Outdated
Show resolved
Hide resolved
...c/test/java/org/apache/kafka/streams/state/internals/MeteredSessionStoreWithHeadersTest.java
Outdated
Show resolved
Hide resolved
...c/test/java/org/apache/kafka/streams/state/internals/MeteredSessionStoreWithHeadersTest.java
Show resolved
Hide resolved
Member
Author
|
Merged #21734 into trunk |
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.
Fixes a bug where MeteredSessionStoreWithHeaders iterator methods fail
when key deserializers require headers.
The class inherits iterator-returning methods from
MeteredSessionStore: - fetch(K) / backwardFetch(K) - fetch(K, K) /
backwardFetch(K, K) - findSessions(K, long, long) /
backwardFindSessions(K, long, long) - findSessions(K, K, long, long)
/ backwardFindSessions(K, K, long, long) - findSessions(long, long)
These methods use serdes.keyFrom(bytes, new RecordHeaders()) which
provides empty headers, causing deserialization failures when headers
are required.
The fix overrides each method in MeteredSessionStoreWithHeaders with a
custom iterator that deserializes the value first to extract headers
from AggregationWithHeaders, then uses those headers to deserialize the
key.
This is the session store equivalent of #21705 which fixed the same
issue for MeteredTimestampedWindowStoreWithHeaders.
Reviewers: Matthias Sax mjsax@apache.org