Proto.Actor
- Distributed-Systems-Runtime Actor Framework
- url: https://proto.actor
- similarTo Orleans Akka Net
- Implementation
- uses: gRPC with protobuf
Features
- migration -> local affinity https://proto.actor/docs/local-affinity/
- "Proto.Actor uses Protobuf for serialization, a decision that vastly simplifies the way Proto.Actor works. Message based systems should be about passing information, not passing complex OOP object graphs or code."
- "Proto.Actor also uses gRPC, leveraging HTTP/2 streams for network communication."
- Proto.Persistence module allows an actor to recover its state when it is started and supports three modes of operation:
- Event Sourcing
- Snapshotting
- Event Sourcing with Snapshotting
- snapshotting becomes a performance optimisation for cases when you have large numbers of events to replay to rebuild the state of your actor
- "Just like everything else in Proto.Actor where we have re-used proven technologies such as Protobuf and gRPC, we do the same for clustering, we do not reinvent the wheel and create our own cluster mechanics. Instead, we leverage proven technologies such as Consul, ETCD or Kubernetes to power our Cluster member management."
Behaviors
- Actors can change their behavior at any time. This is achieved through the Behavior class included with the core Proto.Actor library.
Thoughts
- "Message based systems should be about passing information, not passing complex OOP object graphs or code." 1
Examples
Resources
Learning Resource
References
Backlinks