[akka-user] [DesignProposal] AKKA cluster in Docker Swarm Environment

2017-03-07 Thread Evgeny Shepelyuk
Another example but for Kubernetes. Without using ConstructR. https://medium.com/google-cloud/clustering-akka-in-kubernetes-with-statefulset-and-deployment-459c0e05f2ea#.vmm894fk1 -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >>

[akka-user] Scheduled event for sharded entity

2017-03-07 Thread Arno Haase
I am working on a social media kind of system, and we have users represented as sharded persistent entities. Now we want to react to users' inactivity, e.g. sending out 'come back' emails to users who were inactive for a week. Any suggestions for how to implement that? Scheduling (and mostly

[akka-user] AKKA HTTP: Is this a valid use of Route.seal?

2017-03-07 Thread Alan Burlison
I have an Akka HTTP route for a REST API that first checks the base path, then checks the user authentication is valid, adds some custom headers and extracts the base URI before processing the sub-routes. However if the URL doesn't match any of the sub-routes, request processing "rolls back" to

[akka-user] NoSuchMethodError: Akka 2.5-M2 and Akka-Http 10.0.4

2017-03-07 Thread Rob Crawford
>From my understanding of the binary compatibility statement, these should work together, but after I start an Akka-http server, I get this exception: java.lang.NoSuchMethodError: akka.actor.ActorCell.addFunctionRef(Lscala/Function2;)Lakka/actor/FunctionRef; at

Re: [akka-user] AKKA crashed using kryo serialization sometimes

2017-03-07 Thread Любен
No, it's all done in the akka serializer thread. I am sure also for LZ4Java that it does not use any parallelism itself. On Tue, Mar 7, 2017 at 5:48 AM, Patrik Nordwall wrote: > Is Kryo (or the library) delegating to a different thread somehow? > > mån 6 mars 2017 kl.

[akka-user] How to define contract between two actor systems

2017-03-07 Thread suyog choudhari
Hi, Is there any recommended practice to define contract between multiple actor systems? In short, how one actor system should release document of what all actors it contains and what kind of messages each actor can expect? Something similar to swagger docs in REST API world. Regards, Suyog

[akka-user] akka cluster, dual cluster routers against the same pool of actors

2017-03-07 Thread Arkaitz Jimenez
Hi, I've created an EchoActor that seems to work 100% when I have a receiver node and a sender node in the cluster. However, when I have 2 senders in the cluster, it seems that it can only receive from one of them, and it changes every second from one to the other, the disconnected one receives

[akka-user] Akka Http :- URL path parameters

2017-03-07 Thread Madabhattula Rajesh Kumar
Hi, How to read url path parameters in Akka Http POST method with multiform form data. Please help me on this. Regards, Rajesh -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >> http://doc.akka.io/docs/akka/current/additional/faq.html