Re: [akka-user] Overriding onUpstreamFinish behaviour for FlowOps

2017-11-27 Thread Christopher Hunt
As a follow-up, I’ve implemented a custom half close stage after having a good night’s sleep and thinking about it. :-) First, the simple half-close custom stage: https://github.com/huntc/landlord/pull/14/files#diff-b745088184322d5d8e53de44d17b9ca6R262

Re: [akka-user] Shutdown system when all actors are terminated

2017-11-27 Thread gervais.b
Hello Martynas, Thank you for your response and suggestions.I had already a supervisor so the changes was easy. The only thing that I'm not confident with is the fact to maintains a List of sent events and remove them when I have a reply so that I can kill the actor when all events are replied.

Re: [akka-user] Performance of Akka-Http 2.5.4

2017-11-27 Thread Unmesh Joshi
I am curious to know if anyone found the root cause of this. For HTTP processing, there will be an actor, ActorGraphInterpreter created to process each connection with back pressure. The way the graph stages get executed, should give similar effect as EatWhatYouKill policy in Jetty (https://web

[akka-user] How to Create Actor remotely using cluster node role (instead of node remote address)

2017-11-27 Thread prateek singhal
Hi, Can someone help me in creating actor remotely using cluster node role (instead of node remote address which contain cluster@host:port). Basically I want to create actor from one cluster node (node role "front-end") to another node running with different role (say "back-end"). As per akka