Hi, i am processing many http.request's against a local web server (Solr/localhost). After round about 30,000 successful requests http.request() returns EADDRNOTAVAIL. After 5 to 10 seconds the error vanishes and everything works fine again. The problem does obviously exist within node.js because http requests against the server from other clients (i.e. curl), at the same time while not being able to access it from node,js, work without any problem.
There are no parallel http.request's within node.js. Every request is only issued after the one before has been closed by res.end() and all callbacks have been called. What could be the reason that node.js is temporarily not able to connect to the server? And what makes it "self healing" after some seconds? Thanks for any hint! Jochen -- -- 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.
