java - max number of actors per host in akka -
how many max actors can have on 1 box in akka?
public void myactor extends akkaactor{ receive(objet obj){ // } } 1)is there limit on max number of actors instances?i planning created around 10k actors on 1 box. have 50 such boxes can scale horizontally 2)is there performance problems this?
it matter of having enough memory: overhead of 1 actor 400 bytes (plus whatever state keep within it). means on typical systems can have millions of actors. performance not depend on number of actors create, depends on how many messages send between them. should not worry if number few million per second, beyond have benchmark program against chosen hardware see if works out.
Comments
Post a Comment