On my OS X machine it fails at 893 open connections. I compiled zeromq to have max_sockets = 5000 (zeromq2/src/config.hpp)
The error is:
s_849.send(msg);
Too many open files
rc == 0 (mailbox.cpp:374)
Abort trap
What am I doing wrong? Should I just have one connection to zeromq and have all my async callbacks use it? I have a comment below that describes what I am trying to build.
Thanks!
I wrote a tiny little script to test the max number of concurrent connections.
https://github.com/JustinTulloss/zeromq.node/blob/master/exa...
On my OS X machine it fails at 893 open connections. I compiled zeromq to have max_sockets = 5000 (zeromq2/src/config.hpp)
The error is:
s_849.send(msg); Too many open files rc == 0 (mailbox.cpp:374) Abort trap
What am I doing wrong? Should I just have one connection to zeromq and have all my async callbacks use it? I have a comment below that describes what I am trying to build. Thanks!