File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,24 +16,24 @@ The {name} includes the following features:
16
16
=== Delivery Guarantees
17
17
18
18
The {name} can be configured to ack stream messages either automatically (at-most-once delivery) or explicitly (at-least-once delivery).
19
- The default is explicit acks .
19
+ The default is at-least-once delivery .
20
20
21
- ==== Explicit Ack (default)
21
+ ==== At-Least-Once
22
22
23
23
In this mode, each stream message is acknowledged after it has been written to the corresponding topic.
24
24
25
25
[source,properties]
26
26
----
27
- redis.stream.ack=EXPLICIT
27
+ redis.stream.delivery=at-least-once
28
28
----
29
29
30
- ==== Automatic Ack
30
+ ==== At-Most-Once
31
31
32
32
In this mode, stream messages are acknowledged as soon as they are read.
33
33
34
34
[source,properties]
35
35
----
36
- redis.stream.ack=AUTO
36
+ redis.stream.delivery=at-most-once
37
37
----
38
38
39
39
[[source-tasks]]
You can’t perform that action at this time.
0 commit comments