[akka-user] Re: Consistent Hashing Group and routee death-watch / recreation

2016-08-15 Thread Muthukumaran Kothandaraman
Just in case anybody is facing similar dilemma. This snippet is working for basic cases. Have not tried all failures yet private void createCHRouterWithRoutees(){ Set routees = new HashSet(); for (int i=0;i

Re: [akka-user] Re: Access Denied Downloading standalone akka_2.11-2.4.9-RC2.zip

2016-08-15 Thread Konrad Malawski
Thanks for reporting, re-uploaded it. S3 was behaving weird it seems. -- Konrad `ktoso` Malawski Akka @ Lightbend On 15 August 2016 at 19:02:56, murtuza chhil (chil...@gmail.com) wrote: Its working now. -chhil On Monday, August 15, 2016 at 8:56:37 AM

[akka-user] Re: Access Denied Downloading standalone akka_2.11-2.4.9-RC2.zip

2016-08-15 Thread murtuza chhil
Its working now. -chhil On Monday, August 15, 2016 at 8:56:37 AM UTC+5:30, murtuza chhil wrote: > > Hello, > > Get an error downloading latest standalone release from page > http://akka.io/downloads/ > > The zip downlod link is > >

Re: [akka-user] Hot Standby Persistent Actor - https://github.com/akka/akka/issues/13938

2016-08-15 Thread Muthukumaran Kothandaraman
Thanks Patrik. I would like to follow this. I assume that the design discussions are confined to the issues link. Are there any pointers in code for understanding how recovery is currently triggered for persistent actors so that I can get warmed up ? I guess that would be a good point for me

[akka-user] Consistent Hashing Group and routee death-watch / recreation

2016-08-15 Thread Muthukumaran Kothandaraman
Hi, I am using akka 2.4.8 and creating CH Group as following (with my custom HashMapper) Set actorPaths = new HashSet(); for (int i=0;i

Re: [akka-user] What means of akka cluster roles leader?

2016-08-15 Thread Yutao Shuai
Thanks for your help Konrad. So the return value of this function is the leader of the

[akka-user] Re: ConductR sandbox linking to another container

2016-08-15 Thread Chris Baxter
Hey Christopher. Thanks for getting back to me. Glad to hear that you have this use case on your road map. In the mean time, I will use the -e option workaround that you suggested. Thanks again. On Monday, August 15, 2016 at 4:04:10 AM UTC-4, Christopher Hunt wrote: > > Hi Chris, > >

Re: [akka-user] What means of akka cluster roles leader?

2016-08-15 Thread Konrad Malawski
Duh, my bad. I keep mistaking the use of oldest and leader in this somehow. Thanks for the correction Patrik! On 15 Aug 2016 13:50, "Patrik Nordwall" wrote: > > > On Mon, Aug 15, 2016 at 11:27 AM, Konrad Malawski < > konrad.malaw...@lightbend.com> wrote: > >> Hi

Re: [akka-user] What means of akka cluster roles leader?

2016-08-15 Thread Patrik Nordwall
On Mon, Aug 15, 2016 at 11:27 AM, Konrad Malawski < konrad.malaw...@lightbend.com> wrote: > Hi Yutao, > look at the return type – Option, so it's a single element. > It returns the leader of a given role (role == multiple nodes, 1 of them > is the leader). > I.e. it would host the the Singleton

Re: [akka-user] What means of akka cluster roles leader?

2016-08-15 Thread Konrad Malawski
Hi Yutao, look at the return type – Option, so it's a single element. It returns the leader of a given role (role == multiple nodes, 1 of them is the leader). I.e. it would host the the Singleton if it were constrained to this role. -- Konrad `ktoso` Malawski Akka @ Lightbend

[akka-user] Re: ConductR sandbox linking to another container

2016-08-15 Thread Christopher Hunt
Hi Chris, There's nothing built in to do this right now. Sounds like what we need to do here is allow the service locator to be configured with an external service. We have this on our to-do list. However you should be able to pass an environment var via the -e option though and have that

Re: [akka-user] Event Adapters and custom journals

2016-08-15 Thread Patrik Nordwall
On Wed, Aug 10, 2016 at 1:13 PM, Daniel Stoner wrote: > Hi all, > > Having read the docs on EventAdapters (http://doc.akka.io/docs/akka/ > 2.4.9-RC2/java/persistence.html#event-adapters-java) and seeing the > example of how to ignore particular classes I thought this

Re: [akka-user] Akka Actor

2016-08-15 Thread Kenji Kobayashi
Sure I did have a Progress Message via the main actor which call to the workerActor to return current progress, but the user is able to call the endpoint over and over again, that meaning I need some indicator whether the actor has finished or still running. More or less like this schema..