Re: [akka-user][deprecated] Reliability of akka-streams and akka-http

2019-01-18 Thread Brian Maso
Akka-streams (specifically the ActorMaterializer implementation of streams) yields single-VM, ephemeral implementations of graphs. Multi-VM/multi-restart message persistence is orthogonal to its design and goals. You can use additional features of Akka (PersistentActors, DData, Akka clusters and

[akka-user][deprecated] Reliability of akka-streams and akka-http

2019-01-17 Thread adgang
This is a post(set of questions really) regarding the implications of at-most-once(maybe-once) delivery reliability offered by akka actors on APIs and software based on akka. From my understanding, even messages sent by actors to self can be lost. Till now, I have been in scenarios where