[akka-user] Re: How to identify that akka cluster has formed?

2015-01-22 Thread Ngoc Dao
You can try Glokka: https://github.com/xitrum-framework/glokka It let you name your actors in a cluster, then get the actors back by name. On Monday, January 5, 2015 at 7:36:58 PM UTC+9, Krishna Kadam wrote: Hi patrik, I am doing a masters project in which I have streaming data and want to

Re: [akka-user] Re: How to identify that akka cluster has formed?

2015-01-21 Thread Martynas Mickevičius
Hi, you can not run one ActorSystem on multiple nodes, however you can run a cluster of ActorSystems on multiple nodes. Take a look at Cluster Sharding http://doc.akka.io/docs/akka/2.3.9/contrib/cluster-sharding.html. It seems it can help you in this particular case. On Mon, Jan 5, 2015 at 11:36

[akka-user] Re: How to identify that akka cluster has formed?

2015-01-05 Thread Krishna Kadam
Hi patrik, I am doing a masters project in which I have streaming data and want to send a particular type of message to the same actor every time, so that certain type of messages are processed by akka actors in their arrival order. Also I want to deploy these actors on multiple machines