全局注册进程的最大数量

时间:2012-05-13 13:57:51

标签: erlang otp

可以在全球注册的进程数量是否有限制?或者这只受内存/最大原子数的限制?

Ubuntu 12.04和Erlang R15B01。

1 个答案:

答案 0 :(得分:11)

好问题!如果考虑到以下因素,我会打赌原子数量。 Efficiency Guide有一个关于系统限制的部分:

Processes
The maximum number of simultaneously alive Erlang processes is by default 32768. This limit can be raised up to at most 268435456 processes at startup (see documentation of the system flag +P in the erl(1) documentation). The maximum limit of 268435456 processes will at least on a 32-bit architecture be impossible to reach due to memory shortage.

Distributed nodes
Known nodes
A remote node Y has to be known to node X if there exist any pids, ports, references, or funs (Erlang data types) from Y on X, or if X and Y are connected. The maximum number of remote nodes simultaneously/ever known to a node is limited by the maximum number of atoms available for node names. All data concerning remote nodes, except for the node name atom, are garbage-collected.

此外,erl manual section描述了可用于更改节点中进程数的标志:

+P Number
Sets the maximum number of concurrent processes for this system. Number must be in the range 16..134217727. Default is 32768.

由于您可以更改每个节点的并发进程数,但是您无法更改允许的原子数,并且进程名称是每个节点在副本中复制的原子,这应该是全局注册进程的总允许数量

希望有所帮助:)

编辑:事实上,你可以改变允许的原子数:)

    Atoms
By default, the maximum number of atoms is 1048576. This limit can be raised or lowered using the +t option.

+t size
Set the maximum number of atoms the VM can handle. Default is 1048576.