I am having trouble figuring out if there is a way that I can set the keyspace of the cassandra-snapshot-store and cassandra-journal tables in Akka.net when using the Akka.Persistence.Cassandra plugin.
In my current setup, I have two separate keyspaces in Cassandra (one for each client) and I would like to keep their data and message histories separate.
As I understand it, these tables are created during the PreStart() methods of the CassandraJournal and CassandraSnapshotStore classes of the plugin.
I don't mind having a dummy keyspace for when the PreStart() methods are loaded but I would like to be able to change the keyspace once the system is up and running.
Any help on the matter would be greatly appreciated. Thanks!