Re: [akka-user] Akka Streams - Retry failed RPC call.

2017-02-24 Thread Viktor Klang
Hi Sean! There is a mistake and a misunderstanding in your code: object Test extends App { implicit val system = ActorSystem() implicit val mat = ActorMaterializer() val x: Future[Done] = Source(List("one", "two", "three")).map { value => val data = makeRPCcall(value)

[akka-user] Akka-Http 10.0.4 singleRequst ignoring "settings"?

2017-02-24 Thread Stephen Couchman
Hi, I'm attempting to process a SSE stream through Akka-Http client with the help of alpakka-sse. Alpakka offloads the connection creation to a user supplied function. I'm using the following (as a test): val connectionSettings = ConnectionPoolSettings(system).withIdleTimeout( 10.seconds)

[akka-user] ANNOUNCE: Akka 2.5-M2

2017-02-24 Thread Patrik Nordwall
Dear hakkers, we—the Akka committers—proudly present the second development milestone for Akka 2.5. Since the release of Akka 2.4.0 (already 17 months ago) we have incrementally added many new features to the 2.4.x release series, including Akka Streams and HTTP. That has worked well and we think

[akka-user] Persisted Cluster Singleton seems doesn't recover after journal fails

2017-02-24 Thread Andrey Onistchuk
Hello, guys! Recently I've came across the situation when my persisted cluster singleton actor died on short db hangup and it then hasn't been got to live ever. So, cluster singleton manager was alive, proxy was alive but the instance of actor was stopped by `Eventsourced` class via `context

[akka-user] ANNOUNCE: Akka HTTP 10.0.4 released

2017-02-24 Thread Johan Andrén
Dear hakkers, we — the Akka HTTP committers — are happy to announce the availability of the forth maintenance release of Akka HTTP 10.0. This release is a monthly maintenance release which contains mostly bug fixes and smaller improvements. We strongly recommend updating from 10.0.3 which

Re: [akka-user] akka.remote.transport.ProtocolStateActor/invoke is reporting as SLOW on NewRelic

2017-02-24 Thread Patrik Nordwall
Well, it's many invocations because all remote messages go through that actor. If you are looking for better performance you should try the new remoting, called Artery . Regards, Patrik On Thu, Feb 23, 2017 at 7:48 PM, kraythe