[akka-user] Help in Running Akka Distributed Data Samples

2017-11-09 Thread Nagaraju Ajmeera
I am a newbie to the akka framework. I would like to understand how to compile and run akka -samples in Distributed Data as I am working on a project related toeventual consistency. It would be really helpful if someone could guide me in the right direction as to how to run these samples. I

[akka-user] HTTP Chunk Size Exceeds the Configured Limit

2017-11-09 Thread bordecorp
Hello, I have API response coming as a JSON string where Server won't support chunked response. I'm using below sample code to parse the JSON using *Jackson parser*. type Result = Map[String, List[(String, JValue)]] private def apiResult(resp : HttpResponse): Future[Result] = {

[akka-user] Use of PersistentFSM actor and at-least-once message protocols

2017-11-09 Thread Richard Ney
Has anyone implemented a PersistentFSM based actor with at-least-once messaging? How did you deal with duplicates and out-of-order messaging using the Stash? I would seem that you'd need to override processMsg in the PersistentFSMBase class to handle out-of-order events to get ahead of the