mirror of https://github.com/dapr/docs.git
Update daprdocs/content/en/developing-applications/building-blocks/pubsub/howto-subscribe-statefulset.md
Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Signed-off-by: Artur Souza <asouza.pro@gmail.com>
This commit is contained in:
parent
40851fffc5
commit
d11849ad8b
|
@ -44,7 +44,7 @@ On scaling the number of subscribers of a given topic, each Dapr component has u
|
|||
- Broadcast: each message published to the topic will be consumed by all subscribers.
|
||||
- Shared: a message is consumed by any subscriber (but not all).
|
||||
|
||||
Kafka isolates each subscriber by `consumerID` with its own position in the topic. When an instance restarts, it reuses the same `consumerID` and continues from its last known position, without skipping messages. The component below is an example on how a Kafka component can be used by multiple Pods:
|
||||
Kafka isolates each subscriber by `consumerID` with its own position in the topic. When an instance restarts, it reuses the same `consumerID` and continues from its last known position, without skipping messages. The component below demonstrates how a Kafka component can be used by multiple Pods:
|
||||
|
||||
```yaml
|
||||
apiVersion: dapr.io/v1alpha1
|
||||
|
|
Loading…
Reference in New Issue