EventSourcing and Durable state in same app

Hi There,

Will it be possible to have event sourcing with Cassandra and Durable state with Postgres in a same application?

Regards,

Syed

Yes, this is possible by configuring the “default” journal, snapshot store as Cassandra, and the state plugin as Postgres (docs here).

It is also possible to even run multiple different plugins for the same type, by letting the entities specify a names journal/store to use for a specific type of entity (entries in config and APIs for the entities to say which journal/store name to use).

Thanks @johanandren, this is what I was looking for.