Add DistributedPubSub message guarantee in doc (Fixes #21441) (#21713)

This commit is contained in:
Richard Imaoka 2016-10-24 19:21:07 +09:00 committed by Konrad Malawski
parent 679db55eca
commit afa92f9209
3 changed files with 20 additions and 2 deletions

View file

@ -179,6 +179,15 @@ and then it takes a while for it to be populated.
akka.extensions = ["akka.cluster.pubsub.DistributedPubSub"]
Delivery Guarantee
------------------
As in :ref:`message-general-rules` of Akka, message delivery guarantee in distributed pub sub modes is **at-most-once delivery**.
In other words, messages can be lost over the wire.
If you are looking for at-least-once delivery guarantee, we recommend `Kafka Akka Streams integration <https://github.com/akka/reactive-kafka>`_.
Dependencies
------------