Re: [akka-user] Cluster sharding on a single node cluster. Does it make sense?

2015-09-04 Thread Patrik Nordwall
On Thu, Sep 3, 2015 at 8:38 PM, Amir Karimi wrote: > Thank you everybody, > > As I didn't find any help about single node cluster sharding integration > tests, I published my test environment code > . > Please let me kn

Re: [akka-user] Cluster sharding on a single node cluster. Does it make sense?

2015-09-03 Thread Amir Karimi
Thank you everybody, As I didn't find any help about single node cluster sharding integration tests, I published my test environment code. Please let me know if I did anything wrong. Regards, Amir On 09/02/2015 01:04 AM, Justin du coeur

Re: [akka-user] Cluster sharding on a single node cluster. Does it make sense?

2015-09-01 Thread Justin du coeur
Following this up with an in-practice comment: while I plan to get to proper clustering quite soon, I've been running a single-node "cluster" with heavy use of Cluster Sharding in production for months now. Works great... On Thu, Aug 27, 2015 at 3:15 AM, Amir Karimi wrote: > Hi, > > With the ki

Re: [akka-user] Cluster sharding on a single node cluster. Does it make sense?

2015-08-27 Thread Konrad Malawski
I wouldn't see it as a bad thing to use sharding locally to achieve the "lazily create actors for me" semantics that it implements. You're right that it's designed for a more powerful context - i.e. it is *cluster* sharding, to shard the load across a number of nodes, but hey - who says you won't n

[akka-user] Cluster sharding on a single node cluster. Does it make sense?

2015-08-27 Thread Amir Karimi
Hi, With the kind help of the community I came to the conclusion that I can use cluster sharding to manage resources better and the cluster sharding module is already implemented in Akka. But I just need the sharding feature of the module, not clusteri