Re: [akka-user] Akka Unix Domain Socket support interest given code written

2017-12-02 Thread Christopher Hunt
As a follow-up in order to close off this thread, I've now submitted a PR for Alpakka: https://github.com/akka/alpakka/pull/623 -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >> http://doc.akka.io/docs/akka/current/additional/faq.html >>

[akka-user] Re: is Akka remoting good for communication to another Akka system ?

2017-12-02 Thread gurpreet . badhan . 28
John, is *Akka Cluster* supporting load-balancer like HA-Proxy etc. ?, for example: if One Akka component communicating to Another Akka component through LB(load balancer). -- Gurpreet On Friday, December 1, 2017 at 7:31:27 PM UTC+5:30, Johan Andrén wrote: > > Akka Remoting is nowadays

[akka-user] [HTTP] stream a subpart of another stream

2017-12-02 Thread Guillaume
Hi folks, I'm stuck with an HttpRequest query processing. I try to return a stream who contains a subpart of a a REST stream response. eg: GET /foo => { bar: {}, results: [ {foo: 1}, {foo: 2}, {foo: 3}, {foo: 4}, {foo: 5}, {foo: 100} ] } What I want to stream