Is the gist of this is that select() has a size limit (1024) which has nothing to do with the OS limit on how many file handles you can open at a time? I think Erlang still uses select on a number of platforms and IIRC kqueue on OS-X is somehow broken so Erlang is still using select() on the mac. <div>
<br></div><div>Does this really mean you can only open that many files though? I thought this limit was something else altogether. </div><div><br><div class="gmail_quote">On 21 October 2011 17:39, Dave Cottlehuber <span dir="ltr"><<a href="mailto:dave@muse.net.nz">dave@muse.net.nz</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><br>On 21 October 2011 16:49, Peer Stritzinger <<a href="mailto:peerst@gmail.com" target="_blank">peerst@gmail.com</a>> wrote:<br>
[snip]<div class="im"><br>> Little program used to find limit and reason:<br>><br>> -module(test_fds).<br>> -compile([export_all]).<br>
><br>> count() -><br>>    count(1, []).<br>><br>> count(N, Fds) -><br>>    case file:open(integer_to_list(N), [write]) of<br>>        {ok, F} -><br>>            count(N+1, [F| Fds]);<br>>        {error, Err} -><br>

>            [ file:close(F) || F <- Fds ],<br>>            {Err, N}<br>>    end.<br><br><br></div>On my built-from-source :<br>Erlang R14B03 (erts-5.8.4) [source] [smp:2:2] [rq:2] [async-threads:0]<br><br>Eshell V5.8.4  (abort with ^G)<br>

1> pwd().<br>C:/erlang/scripts<br>ok<br>2> c(limit).<br>{ok,limit}<br>3> limit:count().<br>{system_limit,1021}<br><br>
<br>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
<br></blockquote></div><br></div>