You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: kafka-streams-ChangelogReader.adoc
+2-2
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ a| [[register]]
20
20
void register(final StateRestorer restorer)
21
21
----
22
22
23
-
Used exclusively when `ProcessorStateManager` is requested to <<kafka-streams-ProcessorStateManager.adoc#register, register a persistent state store>> (with an underlying changelog topic)
23
+
Used exclusively when `ProcessorStateManager` is requested to <<kafka-streams-internals-ProcessorStateManager.adoc#register, register a persistent state store>> (with an underlying changelog topic)
Copy file name to clipboardexpand all lines: kafka-streams-CompositeRestoreListener.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
`CompositeRestoreListener` is a concrete `BatchingStateRestoreCallback` and a <<kafka-streams-StateRestoreListener.adoc#, StateRestoreListener>>.
4
4
5
-
`CompositeRestoreListener` is <<creating-instance, created>> exclusively when `ProcessorStateManager` is requested to <<kafka-streams-ProcessorStateManager.adoc#register, register a state store>> (and restores it from the changelog topic).
5
+
`CompositeRestoreListener` is <<creating-instance, created>> exclusively when `ProcessorStateManager` is requested to <<kafka-streams-internals-ProcessorStateManager.adoc#register, register a state store>> (and restores it from the changelog topic).
6
6
7
7
[[userRestoreListener]]
8
8
`CompositeRestoreListener` uses a <<kafka-streams-StateRestoreListener.adoc#, StateRestoreListener>> in <<onRestoreStart, onRestoreStart>>, <<onBatchRestored, onBatchRestored>> and <<onRestoreEnd, onRestoreEnd>> callbacks. A `StateRestoreListener` can be assigned using <<setUserRestoreListener, setUserRestoreListener>> method.
Copy file name to clipboardexpand all lines: kafka-streams-StateRestorer.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
`StateRestorer` uses a <<compositeRestoreListener, CompositeRestoreListener>> to propagate the events: <<restoreStarted, restoreStarted>>, <<restoreDone, restoreDone>>, <<restoreBatchCompleted, restoreBatchCompleted>>, <<restore, restore>>.
6
6
7
-
`StateRestorer` is <<creating-instance, created>> exclusively when `ProcessorStateManager` is requested to <<kafka-streams-ProcessorStateManager.adoc#register, register a state store>>.
7
+
`StateRestorer` is <<creating-instance, created>> exclusively when `ProcessorStateManager` is requested to <<kafka-streams-internals-ProcessorStateManager.adoc#register, register a state store>>.
Copy file name to clipboardexpand all lines: kafka-streams-StateStore.adoc
+3-3
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Used when:
27
27
28
28
* `AbstractStateManager` is requested to <<kafka-streams-internals-AbstractStateManager.adoc#reinitializeStateStoresForPartitions, reinitializeStateStoresForPartitions>>
29
29
30
-
* <<kafka-streams-internals-GlobalStateManagerImpl.adoc#close, GlobalStateManagerImpl>> and <<kafka-streams-ProcessorStateManager.adoc#close, ProcessorStateManager>> are requested to close
30
+
* <<kafka-streams-internals-GlobalStateManagerImpl.adoc#close, GlobalStateManagerImpl>> and <<kafka-streams-internals-ProcessorStateManager.adoc#close, ProcessorStateManager>> are requested to close
31
31
32
32
* `RocksDBStore` is requested to `toggleDbForBulkLoading`
33
33
@@ -45,7 +45,7 @@ Flushes cached data
45
45
46
46
Used when:
47
47
48
-
* <<kafka-streams-internals-GlobalStateManagerImpl.adoc#flush, GlobalStateManagerImpl>> and <<kafka-streams-ProcessorStateManager.adoc#flush, ProcessorStateManager>> are requested to flush their state stores
48
+
* <<kafka-streams-internals-GlobalStateManagerImpl.adoc#flush, GlobalStateManagerImpl>> and <<kafka-streams-internals-ProcessorStateManager.adoc#flush, ProcessorStateManager>> are requested to flush their state stores
49
49
50
50
* <<kafka-streams-StateStore-CachingKeyValueStore.adoc#close, CachingKeyValueStore>>, <<kafka-streams-StateStore-CachingSessionStore.adoc#close, CachingSessionStore>> and <<kafka-streams-StateStore-CachingWindowStore.adoc#close, CachingWindowStore>> are requested to close state stores
51
51
@@ -117,7 +117,7 @@ Used when:
117
117
118
118
* `GlobalStateManagerImpl` is <<kafka-streams-internals-GlobalStateManagerImpl.adoc#creating-instance, created>>
119
119
120
-
* `ProcessorStateManager` is requested to <<kafka-streams-ProcessorStateManager.adoc#register, register a state store>> and <<kafka-streams-ProcessorStateManager.adoc#checkpoint, checkpoint>>
120
+
* `ProcessorStateManager` is requested to <<kafka-streams-internals-ProcessorStateManager.adoc#register, register a state store>> and <<kafka-streams-internals-ProcessorStateManager.adoc#checkpoint, checkpoint>>
* `GlobalStateManagerImpl` is requested to <<kafka-streams-internals-GlobalStateManagerImpl.adoc#initialize, initialize>> and <<kafka-streams-internals-GlobalStateManagerImpl.adoc#checkpoint, checkpoint>>
41
41
42
-
* `ProcessorStateManager` is <<kafka-streams-ProcessorStateManager.adoc#, created>> and requested to <<kafka-streams-ProcessorStateManager.adoc#checkpoint, checkpoint>>
42
+
* `ProcessorStateManager` is <<kafka-streams-internals-ProcessorStateManager.adoc#, created>> and requested to <<kafka-streams-internals-ProcessorStateManager.adoc#checkpoint, checkpoint>>
43
43
44
44
| checkpointableOffsets
45
45
a| [[checkpointableOffsets]] Collection of Kafka https://kafka.apache.org/22/javadoc/index.html?org/apache/kafka/common/TopicPartition.html[TopicPartitions] with offsets (`Map<TopicPartition, Long>`)
@@ -48,7 +48,7 @@ Entries (partitions with offsets) added when:
48
48
49
49
* `GlobalStateManagerImpl` is requested to <<kafka-streams-internals-GlobalStateManagerImpl.adoc#initialize, initialize>>, <<kafka-streams-internals-GlobalStateManagerImpl.adoc#restoreState, restoreState>> and <<kafka-streams-internals-GlobalStateManagerImpl.adoc#checkpoint, checkpoint>>
50
50
51
-
* `ProcessorStateManager` is <<kafka-streams-ProcessorStateManager.adoc#, created>> and requested to <<kafka-streams-ProcessorStateManager.adoc#checkpoint, checkpoint>>
51
+
* `ProcessorStateManager` is <<kafka-streams-internals-ProcessorStateManager.adoc#, created>> and requested to <<kafka-streams-internals-ProcessorStateManager.adoc#checkpoint, checkpoint>>
52
52
53
53
| globalStores
54
54
a| [[globalStores]] Global <<kafka-streams-StateStore.adoc#, state stores>> by name (managed by <<kafka-streams-internals-GlobalStateManagerImpl.adoc#, GlobalStateManagerImpl>> _mostly_)
@@ -57,22 +57,22 @@ New state stores added when:
57
57
58
58
* `GlobalStateManagerImpl` is requested to <<kafka-streams-internals-GlobalStateManagerImpl.adoc#register, register a state store>>
59
59
60
-
* `ProcessorStateManager` is requested to <<kafka-streams-ProcessorStateManager.adoc#registerGlobalStateStores, registerGlobalStateStores>>
60
+
* `ProcessorStateManager` is requested to <<kafka-streams-internals-ProcessorStateManager.adoc#registerGlobalStateStores, registerGlobalStateStores>>
61
61
62
62
State stores removed when:
63
63
64
64
* `GlobalStateManagerImpl` is requested to <<kafka-streams-internals-GlobalStateManagerImpl.adoc#close, close>>
65
65
66
66
| stores
67
-
a| [[stores]] <<kafka-streams-StateStore.adoc#, State stores>> by name (managed by <<kafka-streams-ProcessorStateManager.adoc#, ProcessorStateManager>>)
67
+
a| [[stores]] <<kafka-streams-StateStore.adoc#, State stores>> by name (managed by <<kafka-streams-internals-ProcessorStateManager.adoc#, ProcessorStateManager>>)
68
68
69
69
New state stores added when:
70
70
71
-
* `ProcessorStateManager` is requested to <<kafka-streams-ProcessorStateManager.adoc#register, register a state store>>
71
+
* `ProcessorStateManager` is requested to <<kafka-streams-internals-ProcessorStateManager.adoc#register, register a state store>>
72
72
73
73
State stores removed when:
74
74
75
-
* `ProcessorStateManager` is requested to <<kafka-streams-ProcessorStateManager.adoc#close, close>>
75
+
* `ProcessorStateManager` is requested to <<kafka-streams-internals-ProcessorStateManager.adoc#close, close>>
* `GlobalStateManagerImpl` is requested to <<kafka-streams-internals-GlobalStateManagerImpl.adoc#reinitializeStateStoresForPartitions, reinitializeStateStoresForPartitions>>
97
97
98
-
* `ProcessorStateManager` is requested to <<kafka-streams-ProcessorStateManager.adoc#reinitializeStateStoresForPartitions, reinitializeStateStoresForPartitions>>
98
+
* `ProcessorStateManager` is requested to <<kafka-streams-internals-ProcessorStateManager.adoc#reinitializeStateStoresForPartitions, reinitializeStateStoresForPartitions>>
<<kafka-streams-ProcessorStateManager.adoc#creating-instance, Created>> when `AbstractTask` is <<creating-instance, created>>
57
+
<<kafka-streams-internals-ProcessorStateManager.adoc#creating-instance, Created>> when `AbstractTask` is <<creating-instance, created>>
58
58
59
59
Used when:
60
60
@@ -111,7 +111,7 @@ NOTE: `hasStateStores` is part of link:kafka-streams-internals-Task.adoc#hasStat
111
111
void flushState()
112
112
----
113
113
114
-
`flushState` simply requests the <<stateMgr, ProcessorStateManager>> to <<kafka-streams-ProcessorStateManager.adoc#flush, flush>>.
114
+
`flushState` simply requests the <<stateMgr, ProcessorStateManager>> to <<kafka-streams-internals-ProcessorStateManager.adoc#flush, flush>>.
115
115
116
116
NOTE: `flushState` is used exclusively when `StreamTask` is requested to <<kafka-streams-internals-StreamTask.adoc#commit, commit>> (using the custom <<kafka-streams-internals-StreamTask.adoc#flushState, flushState>>).
NOTE: `changelogPartitions` is part of <<kafka-streams-internals-Task.adoc#changelogPartitions, Task Contract>> to get the changelog partitions of a task.
148
148
149
-
`changelogPartitions` simply requests the <<stateMgr, ProcessorStateManager>> for the <<kafka-streams-ProcessorStateManager.adoc#changelogPartitions, changelogPartitions>>.
149
+
`changelogPartitions` simply requests the <<stateMgr, ProcessorStateManager>> for the <<kafka-streams-internals-ProcessorStateManager.adoc#changelogPartitions, changelogPartitions>>.
150
150
151
151
=== [[getStore]] Accessing State Store by Name -- `getStore` Method
NOTE: `getStore` is part of the <<kafka-streams-internals-Task.adoc#getStore, Task Contract>> to access the <<kafka-streams-StateStore.adoc#, state store>> by name.
159
159
160
-
`getStore` simply requests the <<stateMgr, ProcessorStateManager>> for the <<kafka-streams-ProcessorStateManager.adoc#getStore, StateStore by name>>.
160
+
`getStore` simply requests the <<stateMgr, ProcessorStateManager>> for the <<kafka-streams-internals-ProcessorStateManager.adoc#getStore, StateStore by name>>.
`reinitializeStateStoresForPartitions` simply requests the <<stateMgr, ProcessorStateManager>> to <<kafka-streams-ProcessorStateManager.adoc#reinitializeStateStoresForPartitions, reinitializeStateStores>> for the input `partitions` and the <<processorContext, InternalProcessorContext>>.
189
+
`reinitializeStateStoresForPartitions` simply requests the <<stateMgr, ProcessorStateManager>> to <<kafka-streams-internals-ProcessorStateManager.adoc#reinitializeStateStoresForPartitions, reinitializeStateStores>> for the input `partitions` and the <<processorContext, InternalProcessorContext>>.
Copy file name to clipboardexpand all lines: kafka-streams-internals-AssignedTasks.adoc
+6-6
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
`AssignedTasks` uses the following <<internal-properties, internal registries>> to determine the status of a task:
6
6
7
-
* <<running, running>> for tasks that are considered *running* (that `AssignedStreamsTasks` uses when requested to link:kafka-streams-AssignedStreamsTasks.adoc#process[process])
7
+
* <<running, running>> for tasks that are considered *running* (that `AssignedStreamsTasks` uses when requested to link:kafka-streams-internals-AssignedStreamsTasks.adoc#process[process])
8
8
9
9
* <<created, created>> for tasks that are considered *new*
10
10
@@ -26,7 +26,7 @@ NOTE: `AssignedTasks` is a Java abstract class and cannot be <<creating-instance
@@ -102,7 +102,7 @@ Transitioning [taskTypeName] [taskId] to running
102
102
103
103
`transitionToRunning` marks the task as running (by adding it to the <<running, running>> internal registry).
104
104
105
-
NOTE: Registering a task in the <<running, running>> internal registry is the only way to mark the task as running and ready for <<kafka-streams-AssignedStreamsTasks.adoc#process, processing records>>.
105
+
NOTE: Registering a task in the <<running, running>> internal registry is the only way to mark the task as running and ready for <<kafka-streams-internals-AssignedStreamsTasks.adoc#process, processing records>>.
106
106
107
107
`transitionToRunning` requests the task to <<kafka-streams-internals-Task.adoc#initializeTopology, initialize the topology of processor nodes>>.
108
108
@@ -112,7 +112,7 @@ NOTE: Registering a task in the <<running, running>> internal registry is the on
112
112
====
113
113
`transitionToRunning` is used when:
114
114
115
-
* `AssignedStreamsTasks` is requested to <<kafka-streams-AssignedStreamsTasks.adoc#updateRestored, updateRestored>>
115
+
* `AssignedStreamsTasks` is requested to <<kafka-streams-internals-AssignedStreamsTasks.adoc#updateRestored, updateRestored>>
116
116
117
117
* `AssignedTasks` is requested to <<initializeNewTasks, initialize new tasks>> and <<maybeResumeSuspendedTask, attempt to resume a suspended task>>
If the above yielded `true`, `initializeNewTasks` <<transitionToRunning, marks the task as ready for execution and processing records>>.
159
159
160
-
Otherwise, when the above <<kafka-streams-internals-Task.adoc#initializeStateStores, state store initialization>> yielded `false`, `initializeNewTasks` prints out the following DEBUG message to the logs and the concrete `AssignedStreamsTasks` is requested to <<kafka-streams-AssignedStreamsTasks.adoc#addToRestoring, register the StreamTask as restoring>>.
160
+
Otherwise, when the above <<kafka-streams-internals-Task.adoc#initializeStateStores, state store initialization>> yielded `false`, `initializeNewTasks` prints out the following DEBUG message to the logs and the concrete `AssignedStreamsTasks` is requested to <<kafka-streams-internals-AssignedStreamsTasks.adoc#addToRestoring, register the StreamTask as restoring>>.
161
161
162
162
```
163
163
Transitioning [taskTypeName] [taskId] to restoring
* `AbstractStateManager` is requested to link:kafka-streams-internals-AbstractStateManager.adoc#reinitializeStateStoresForPartitions[reinitializeStateStoresForPartitions]
51
51
* `GlobalStateManagerImpl` is requested to link:kafka-streams-internals-GlobalStateManagerImpl.adoc#checkpoint[checkpoint]
52
-
* `ProcessorStateManager` is requested to link:kafka-streams-ProcessorStateManager.adoc#checkpoint[checkpoint]
52
+
* `ProcessorStateManager` is requested to link:kafka-streams-internals-ProcessorStateManager.adoc#checkpoint[checkpoint]
`delete` simply deletes the <<file, offset checkpoint file>> if exists.
63
63
64
-
NOTE: `delete` is used exclusively when `ProcessorStateManager` is link:kafka-streams-ProcessorStateManager.adoc#creating-instance[created] (with link:kafka-streams-exactly-once-support-eos.adoc[Exactly-Once Support (EOS)] enabled).
64
+
NOTE: `delete` is used exclusively when `ProcessorStateManager` is link:kafka-streams-internals-ProcessorStateManager.adoc#creating-instance[created] (with link:kafka-streams-exactly-once-support-eos.adoc[Exactly-Once Support (EOS)] enabled).
0 commit comments