On Fri, Jul 12, 2013 at 3:17 AM, 陈小军 <[email protected]> wrote: > When I use node.js create a server, when process a new request, I will > creata a new process, after running one week, it fork new process faile, and > log message shows ‘spawn EAGAIN' > > /Users/irteam/apps/nelo2/symbolicator_1.2.0/node_modules/thrift/lib/thrift/server.js:50 > throw e; > ^ > Error: spawn EAGAIN > at errnoException (child_process.js:847:11) > at ChildProcess.spawn (child_process.js:794:11) > at exports.spawn (child_process.js:618:9) > at Object.exports.execFile (child_process.js:510:15) > at exports.exec (child_process.js:481:18) > at ios_analyzer.do_analyze > (/Users/irteam/apps/nelo2/symbolicator_1.2.0/nelo2_ios_crash.js:287:14) > at exports.analyze_dump.analyzer.on.prefix_msg > (/Users/irteam/apps/nelo2/symbolicator_1.2.0/processor.js:211:14) > at EventEmitter.emit (events.js:96:17) > at ios_analyzer.check_symbol_file > (/Users/irteam/apps/nelo2/symbolicator_1.2.0/nelo2_ios_crash.js:129:10) > at exports.analyze_dump > (/Users/irteam/apps/nelo2/symbolicator_1.2.0/processor.js:262:12) > > Does anybody know why this error happend? Thanks~!
It sounds like you're hitting the per-user process limit, `ulimit -u`. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
