[akka-user] Re: AKKA 2.0-Message Delivery Gurantee-1 million SMS need to be sent

2014-06-26 Thread Ryan Tanner
Akka offers only two guarantees: * At-most-once delivery. Each message will be delivered either 0 or 1 times. There is no guarantee of exactly-once delivery. * Messages will be received in order for a given pair of actors.

Re: [akka-user] Re: AKKA 2.0-Message Delivery Gurantee-1 million SMS need to be sent

2014-06-26 Thread Filippo De Luca
I believe that exactly one is something very difficult to achieve anyway. But with Akka and ack messages you can achieve at-least-one that for an SMS is good enough. My 2cents On Jun 26, 2014 6:18 PM, Ryan Tanner ryan.tan...@gmail.com wrote: Akka offers only two guarantees: * At-most-once

Re: [akka-user] Re: AKKA 2.0-Message Delivery Gurantee-1 million SMS need to be sent

2014-06-26 Thread Konrad Malawski
If at any point you catch yourself thinking 100%, re-read this post: http://aphyr.com/posts/288-the-network-is-reliable of multiple multiple failure examples with even redundant datacenter providers etc ;-) On Thu, Jun 26, 2014 at 8:24 PM, √iktor Ҡlang viktor.kl...@gmail.com wrote: I'd even