We are implementing storage plugin for akka-persistence That means 2 providers, for:
- queue-like Journal plugin API
- map-like Snapshot store plugin API
Since only Chronicle Map supports multi-node symmetric replication, we eliminate Chronicle Queue from consideration.
Question: what is the best way to create fast queue on top of the map? Thank you.
We ended up with using chronicle-queue for journal, chronicle-map for snapshot, and ditching chronicle networking layer in favor of native akka cluster replication.