mirror of https://github.com/knative/docs.git
Adding a little bit more on the subject of consumer delivery guarantees (#5390)
Signed-off-by: Matthias Wessendorf <mwessend@redhat.com> Signed-off-by: Matthias Wessendorf <mwessend@redhat.com>
This commit is contained in:
parent
3132270389
commit
fb4e05a482
|
|
@ -381,10 +381,10 @@ spec:
|
||||||
|
|
||||||
The supported consumer delivery guarantees are:
|
The supported consumer delivery guarantees are:
|
||||||
|
|
||||||
* `unordered`: An unordered consumer is a non-blocking consumer that delivers messages unordered, while preserving proper offset management.
|
* `unordered`: An unordered consumer is a non-blocking consumer that delivers messages unordered, while preserving proper offset management. Useful when there is a high demand of parallel consumption and no need for explicit ordering. One example could be processing of click analytics.
|
||||||
* `ordered`: An ordered consumer is a per-partition blocking consumer that waits for a successful response from the CloudEvent subscriber before it delivers the next message of the partition.
|
* `ordered`: An ordered consumer is a per-partition blocking consumer that waits for a successful response from the CloudEvent subscriber before it delivers the next message of the partition. Useful when there is a need for more strict ordering or if there is a relationship or grouping between events. One example could be processing of customer orders.
|
||||||
|
|
||||||
`unordered` is the default ordering guarantee.
|
The `unordered` delivery is the default ordering guarantee.
|
||||||
|
|
||||||
### Additional information
|
### Additional information
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue