Managing thousands of Actors with frequent, small updates #2103
Answered
by
mdedetrich
ChristianDoh-while
asked this question in
Q&A
|
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! |
Answered by
mdedetrich
Aug 28, 2025
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. |
0 replies
Answer selected by
ChristianDoh-while
|
https://github.com/arktwin/arktwin is using Pekko |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.