I am testing event sourcing (akka-persistence) and wrote my own Journal plugin. But when running performance tests, I quickly noticed that not all CPU resources are used. The class which writes messages to the journal is an actor (e.g. is executes all write operations in serial).
Is it possible to use multiple instances of this journal actor to increase the write performance to the journal backend? If yes, how?
Thanks