Re: [akka-user] Re: akka.pattern.Patterns.after and akka.pattern.after

2017-02-13 Thread Eduardo Cavalcanti
Thanks for the clarification. > -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >> http://doc.akka.io/docs/akka/current/additional/faq.html >> Search the archives: https://groups.google.com/group/akka-user --- You received this

[akka-user] java: how to create a ClusterSingletonManager using AkkaGuiceSupport

2017-02-13 Thread Francis Reed
I'm trying to instantiate a ClusterSingletonManager using AkkaGuiceSupport and I'm having a real hard time figuring out the syntax. Without dependency injection it should look like this. ClusterSingletonManagerSettings settings = ClusterSingletonManagerSettings.create(system);

Re: [akka-user] FSM convenience matcher - Ev

2017-02-13 Thread Konrad Malawski
Made it a ticket though was not able to find that doc, could you point it out directly Tal? https://github.com/akka/akka/issues/22302 -- Konrad `ktoso` Malawski Akka @ Lightbend On 13 February 2017 at 20:59:27, Patrik Nordwall (patrik.nordw...@gmail.com)

Re: [akka-user] programmatically setting guardian-supervisor-strategy

2017-02-13 Thread Patrik Nordwall
That is currently not supported. The new ActorSystemSetup could possibly host such a thing if you are interested in contributing. /Patrik On Mon, Feb 6, 2017 at 4:09 PM, Mark Kaberman wrote: > I am wondering if there are way to programmatically set guardian > supervisor

Re: [akka-user] FSM convenience matcher - Ev

2017-02-13 Thread Patrik Nordwall
There is no such thing as far as I can see. Must be a documentation bug. PR fixing it would be great. On Sun, Feb 12, 2017 at 10:58 AM, Tal Pressman wrote: > Hi, > > The FSM JavaDoc mentions a convenience matcher called Ev for matching > events without the data, but I can't

Re: [akka-user] java akka cluster and number of seed nodes

2017-02-13 Thread Patrik Nordwall
10 :) On Mon, Feb 13, 2017 at 4:32 PM, Francis Reed wrote: > Perfect, this is useful knowledge to know. So if you had to design a new > cluster with around 100 nodes, what would be your prefered number of seed > nodes? I'm just trying to get a feel for how many you'd use

[akka-user] Parallel file download

2017-02-13 Thread Victor
Hi, I've created a route in my application to download a large file. But I can't figure out how to make this route handles calls in parallel. I've tried to read a different file on each request, tried with *mapAsync*, with *mapAsyncUnordered* and with a custom dispatcher, but none of the

Re: [akka-user] rolling upgrade from 2.4.16 to 2.4.17 possible?

2017-02-13 Thread Konrad Malawski
Please be more specific what you mean :-) Versions are compatible, sure. If you change the wire format, then it's of course not. If old nodes send java serialized messages, and you disable it on one node, it of course won't deserialize them - that is kind of the point. If your old nodes already

[akka-user] rolling upgrade from 2.4.16 to 2.4.17 possible?

2017-02-13 Thread Bert Robben
Given I have a cluster running Akka version 2.4.16 (using various Akka distributed features such as sharding, cluster singleton, remote actor creation, etc). Would it be possible to do a rolling upgrade of the cluster and gradually upgrade all nodes to 2.4.17 ? >From

[akka-user] Re: Akka Source.queue (Java DSL query)

2017-02-13 Thread 'Jeremy Sowden' via Akka User List
On Thursday, 14 July 2016 15:13:57 UTC+1, Daniel Stoner wrote: > > Recently I spotted a great example of how to use the Source.queue feature > in Streams to pre-materialise a flow and then pass events into it > independently. > http://stackoverflow.com/a/33415214/5142410 > > The examples