From c0c1af497c15b70c48be17ab3411922886cdb679 Mon Sep 17 00:00:00 2001
From: Michael Gyarmathy
implement your own custom store type.
It’s common practice to leverage an existing store type via the
Stores factory.
Note that, when using Kafka Streams, you normally don’t create or instantiate state stores directly in your code.
- Rather, you define state stores indirectly by creating a so-called StoreBuilder. This buildeer is used by
+ Rather, you define state stores indirectly by creating a so-called StoreBuilder. This builder is used by
Kafka Streams as a factory to instantiate the actual state stores locally in application instances when and where
needed.
The following store types are available out of the box.