Re: [akka-user] Distributed Data and Akka Cluster Sharding

2016-04-07 Thread Paul Cleary
Ok, so if I do remember-entities as off, then they won't auto start on failover. I might be ok with this. Thanks On Thursday, April 7, 2016 at 6:40:24 AM UTC-4, Kealan Murphy wrote: > > Sorry I quoted too much.. The part about remember-entities being off if > you want to remove akka

Re: [akka-user] Distributed Data and Akka Cluster Sharding

2016-04-07 Thread Kealan Murphy
Sorry I quoted too much.. The part about remember-entities being off if you want to remove akka persistence would hint that ddata is not yet covering that use case. On Thursday, 7 April 2016 11:18:56 UTC+1, Paul Cleary wrote: > > I do have this dependency in my build... > > "com.typesafe.akka"

Re: [akka-user] Distributed Data and Akka Cluster Sharding

2016-04-07 Thread Paul Cleary
I do have this dependency in my build... "com.typesafe.akka" %% "akka-distributed-data-experimental" % akkaV, On Thursday, April 7, 2016 at 6:16:40 AM UTC-4, Kealan Murphy wrote: > > From here > > >

Re: [akka-user] Distributed Data and Akka Cluster Sharding

2016-04-07 Thread Kealan Murphy
>From here "You must explicitly add the akka-distributed-data-experimental dependency to your build if you use this mode. It is possible to remove akka-persistence dependency from a project if it is not

Re: [akka-user] Distributed Data and Akka Cluster Sharding

2016-04-07 Thread Paul Cleary
Here is the config I am using... I am using the dynamodb akka persistence plugin right now and it works fine when it is in there. If I take out the persistence configuration all together then cluster sharding does not start up, I see this error: 16-04-07 01:06:14,514 [test] ERROR |

Re: [akka-user] Distributed Data and Akka Cluster Sharding

2016-04-07 Thread loempl
Have you **configured** Cluster Sharding to use Distributed Data? Could you paste your configuration? Cheers Heiko -- Heiko Seeberger Home: heikoseeberger.de Twitter: @hseeberger Public key: keybase.io/hseeberger

[akka-user] Distributed Data and Akka Cluster Sharding

2016-04-06 Thread Paul Cleary
I am using Cluster Sharding with the Distributed Data Module. I have remember entities on so that I can auto-start an entity during failover. Even with the distributed data module, it appears as though I _need_ to have an akka persistence journal or else my Actor system doesn't start. Is