Skip to content

Commit 23c1199

Browse files
StateStore Contract
1 parent 65e2987 commit 23c1199

2 files changed

+9
-3
lines changed

kafka-streams-StateStore.adoc

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
== [[StateStore]] StateStore Contract -- State Storage Engines
22

3-
`StateStore` is the <<contract, contract>> of <<implementations, state storage engines>> that manage a state.
3+
`StateStore` is the <<contract, contract>> of <<implementations, state storage engines>> (_state stores_) that manage a state.
44

5-
`StateStore` can be <<persistent, persistent>> or not. Among persistent stores are <<kafka-streams-internals-AbstractRocksDBSegmentedBytesStore.adoc#, AbstractRocksDBSegmentedBytesStore>>, <<kafka-streams-internals-KeyValueToTimestampedKeyValueByteStoreAdapter.adoc#, KeyValueToTimestampedKeyValueByteStoreAdapter>>, <<kafka-streams-internals-RocksDBStore.adoc#, RocksDBStore>>, <<kafka-streams-internals-WindowToTimestampedWindowByteStoreAdapter.adoc#, WindowToTimestampedWindowByteStoreAdapter>>.
5+
`StateStore` can be <<persistent, persistent>> or not (i.e. *in-memory*).
66

77
NOTE: A `StateStore` can be *local* or *global* (although it is a property of a <<kafka-streams-internals-ProcessorTopology.adoc#, ProcessorTopology>>).
88

9+
Kafka Streams developers use <<kafka-streams-Stores.adoc#, Stores>> utility for creating state stores.
10+
11+
NOTE: A `StateStore` can be backed by a changelog topic in the Kafka cluster for fault-tolerance, i.e. with logging enabled (although it is an implementation detail, and not part of the `StateStore` contract). Kafka Streams developers use <<kafka-streams-Materialized.adoc#, Materialized>> or <<kafka-streams-StoreBuilder.adoc#, StoreBuilder>> APIs to control logging.
12+
13+
NOTE: A `StateStore` can be cached for performance, i.e. with caching enabled (although it is an implementation detail, and not part of the `StateStore` contract). Kafka Streams developers use <<kafka-streams-Materialized.adoc#, Materialized>> or <<kafka-streams-StoreBuilder.adoc#, StoreBuilder>> APIs to control logging.
14+
915
[[contract]]
1016
.StateStore Contract
1117
[cols="1m,3",options="header",width="100%"]

kafka-streams-internals-WrappedStateStore.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
`WrappedStateStore` allows for composing state stores and building more sophisticated state stores (e.g. <<kafka-streams-internals-MeteredKeyValueStore.adoc#, MeteredKeyValueStore>> with <<CachingKeyValueStore, CachingKeyValueStore>> and <<ChangeLoggingKeyValueBytesStore, ChangeLoggingKeyValueBytesStore>>).
66

7-
NOTE: Kafka Streams developers use <<kafka-streams-Stores.adoc#, Stores>> factory to use the more sophisticated state stores.
7+
NOTE: Kafka Streams developers use <<kafka-streams-Stores.adoc#, Stores>> utility to use the more sophisticated state stores.
88

99
[[implementations]]
1010
.WrappedStateStores

0 commit comments

Comments
 (0)