Re: [akka-user] Akka persistence in production - recommended journals?

2017-11-29 Thread Konrad “ktoso” Malawski
LevelDB is not, in any case, intended for production systems. Production ready journals would be: - the cassandra one, maintained by the akka team, it is most mature and has most features - the jdbc one, community maintained but seems to work well - we’ve heard of people using the mongo one, but

[akka-user] Recovery of persistent actor that uses BoundedDequeBasedMailbox

2017-11-29 Thread Seoras Ashby
Hi, Today my persistent actor is using the default UnboundedDequeBasedMailbox. However, to improve resiliency, I would like to use a non-blocking BoundedDequeBasedMailbox so that my persistent actor drops messages to dead letters if it is overwhelmed and cannot keep up with incoming messages.

[akka-user] Akka persistence in production - recommended journals?

2017-11-29 Thread Dobrin Ivanov
Hi, I'm trying to investigate whether to use akka persistence in production using java. I've been looking at https://doc.akka.io/docs/akka/snapshot/persistence.html And also tried this example : https://github.com/akka/akka-samples/tree/2.5/akka-sample-persistence-java The article refers to