Is there any implementation of reliable messaging in ProtoActor? #2068
Unanswered
AlexeyRokhin
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any implementation of reliable messaging in ProtoActor?
How does ProtoActor support such scenarios. For instance, there is a cluster with some nodes which host sharded actors (let's call these nodes as "sharded cluster nodes"). Also, there are other cluster nodes (without sharding, let's call them "frontend cluster nodes") which receive requests from web frontend and send messages to sharded actors. Any sharded cluster nodes can fail (as frontend node) but we don't want to lose in-fly messages from frontened nodes to failed sharded node.
What is proposed solution to implement messaging reliability between frontend cluster nodes and sharded cluster nodes?
P.S. Akka.net has a streaming api and numerous connectors which support reliable message handling (using RabbitMQ, Kafka etc).
Beta Was this translation helpful? Give feedback.
All reactions