Following options is specified in the AKKA configuration file to eager load 
journals and snapshots for AKKA Cassandra persistence. We have an AKKA and 
persistence actor is started in one of the cluster nodes. but when the node 
dies the persistence actor does not automatically gets recreated on the 
other available nodes in the cluster. Actor gets created only when it is 
invoked the next time not during the node re-balance. Based on the below 
options it seems like eager loading of persistence actor is possible. But 
setting this options does not eagerly load the persistence actor on other 
nodes in the cluster during a node a failure. Can you please point to right 
options in the documentation.


   1. 
   
   persistence {
     journal {
       plugin = "cassandra-journal"
       cassandra-journal.contact-points = ["127.0.0.1"]
       auto-start-journals = ["cassandra-journal"]
     }
   
     snapshot-store {
       plugin = "cassandra-snapshot-store"
       cassandra-snapshot-store.contact-points = ["127.0.0.1"]
       auto-start-snapshot-stores = ["cassandra-snapshot-store"]
     }
   }
   
   2. 
   

-- 
>>>>>>>>>>      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 message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to akka-user+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to