我遇到了一个erlang otp 牛仔应用程序,该应用不允许我同时打开足够的文件。
如何更改光束中允许的打开文件手柄的数量?
可能会同时打开大约500个小文本文件,但看来文件限制为224。我从这个小测试程序中获得了224的值:
-module(test_fds).
-export([count/0]).
count() -> count(1, []).
count(N, Fds) ->
case file:open(integer_to_list(N), [write]) of
{ok, F} ->
count(N+1, [F| Fds]);
{error, Err} ->
[ file:close(F) || F <- Fds ],
delete(N-1),
{Err, N}
end.
delete(0) -> ok;
delete(N) ->
case file:delete(integer_to_list(N)) of
ok -> ok;
{error, _} -> meh
end,
delete(N-1).
这给出
$ erl
Erlang/OTP 20 [erts-9.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:10] [kernel-poll:false]
Eshell V9.2 (abort with ^G)
1> c(test_fds).
{ok,test_fds}
2> test_fds:count().
{emfile,224}
3>
这似乎是一个ERLANG问题,而不是Mac OSX问题,因为从命令行,我得到:
$ sysctl -h kern.maxfiles
kern.maxfiles: 49,152
$ sysctl -h kern.maxfilesperproc
kern.maxfilesperproc: 24,576
打开文件描述符的数量很可能受到您的外壳的限制。您可以通过在调用erl
之前在外壳中运行ulimit -n 1000
(或更多(来增加它。在我的系统上,默认值为7168,您的脚本可以在返回emfile
之前打开7135个文件。这是我运行带有不同ulimit
值的脚本的输出:
$ ulimit -n 64; erl -noshell -eval 'io:format("~p~n", [test_fds:count()]), erlang:halt()'
{emfile,32}
$ ulimit -n 128; erl -noshell -eval 'io:format("~p~n", [test_fds:count()]), erlang:halt()'
{emfile,96}
$ ulimit -n 256; erl -noshell -eval 'io:format("~p~n", [test_fds:count()]), erlang:halt()'
{emfile,224}
$ ulimit -n 512; erl -noshell -eval 'io:format("~p~n", [test_fds:count()]), erlang:halt()'
{emfile,480}
erl
在开始评估我们的代码之前,很可能是打开32个文件描述符,这解释了ulimit
中32的常数差异和输出。