views:

222

answers:

1

If I spawn a new process on a busy node in an erlang cluster and other nodes are idle will the process automatically be spawned on one of the free nodes?

Update: I found another question similar to this one too:

http://stackoverflow.com/questions/662131/using-erlang-how-should-i-distribute-load-amongst-a-cluster

+2  A: 

No, it will not. Spawning is "not declarative".

Zed