7

全局注册的进程数有限制吗?或者这仅受内存/最大原子数的限制?

Ubuntu 12.04 和 Erlang R15B01。

4

1 回答 1

12

好问题!如果您考虑以下因素,我会赌原子数。效率指南有一个关于系统限制的部分:

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 手册部分描述了可用于更改节点中进程数的标志:

+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.
于 2012-05-13T14:13:23.617 回答