Managing thousands of Actors with frequent, small updates #2103
-
Hi! While searching for an alternative architecture, I recently came across the actor model and pekko. This raises the question of how pekko can be used to achieve high performance. Consider the following:
Is this information sufficient to roughly determine whether pekko could quickly become a bottleneck in this case? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Just going on the information provided, this is well within means for pekko actors. There are akka/pekko systems out there with millions of actors on commodity systems as actors are extremely cheap (thats one of the core points of them). I remember reading somewhere that many-million actor systems only uses around 1 gb of heap. |
Beta Was this translation helpful? Give feedback.
-
https://github.com/arktwin/arktwin is using Pekko |
Beta Was this translation helpful? Give feedback.
Just going on the information provided, this is well within means for pekko actors. There are akka/pekko systems out there with millions of actors on commodity systems as actors are extremely cheap (thats one of the core points of them). I remember reading somewhere that many-million actor systems only uses around 1 gb of heap.