If I've got a persistence store using one particular persistence plugin and I want to change to another, what would I have to do? I can see I could run a utility program that opened the old store and sent the messages to another processor to persist them, but can I run with 2 different plugins at the same time? Currently you cannot have 2 journals in 1 actor system. You’d have to run 2 actor systems (can be the same jvm) and configure them differently.
We are prepared in the current sources to extend this, so each actor could get it’s own journal implementation (grep for `journalFor` if curious), so we’ll get to it at some point :-) I noticed we don’t have a ticket for it currently, would you mind opening one? https://github.com/akka/akka/issues?direction=desc&labels=t%3Apersistence&page=1&sort=updated&state=open Thanks in advance! And what if I want to serialise differently in the second store? In the above example you have 2 systems, so it’s easy. Currently serialisation is configured per actor system too, so this is an open question for a time when we implement multiple journals in one actor system - only then this problem will appear. Thanks for the feedback! -- Konrad 'ktoso' Malawski hAkker @ typesafe http://akka.io -- >>>>>>>>>> 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
