Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/streaming/structured-streaming-state-data-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ Depending on your memory requirements, you can choose the format that best suits
### Reading state changes over microbatches

If we want to understand the change of state store over microbatches instead of the whole state store at a particular microbatch, 'readChangeFeed' is the option to use.

**Note:** Not all stateful operations are supported in the change feed. Certain operations, such as range deletions, cannot be represented as individual key-value change records and will result in an error. Refer to the error message for guidance on which operation is unsupported.

For example, this is the code to read the change of state from batch 2 to the latest committed batch.

<div class="codetabs">
Expand Down