hellepoll icon indicating copy to clipboard operation
hellepoll copied to clipboard

not enough FDs

Open adrianboston opened this issue 11 years ago • 0 comments

this is really promising a simple solution. its right up there with nginx in terms of speed. in fact, a touch faster given its simplicity.

the following output came out a few times. unsure of the exact correlation with clients, number of clients, etc.

Listener[HTTP@42042] end of stream

This following output came out continuously when load testing with over 1,000 clients

Listener[HTTP@42042] internal error: not enough FDs

this seems more likely the listen queue (backlog) since helloworld isnt reading a file..

Changed Listener::create(scheduler,"HTTP",port,HelloWorld::factory,100,true);

to Listener::create(scheduler,"HTTP",port,HelloWorld::factory,100,true);

unfortunately with the same results.

im thinking it might be sysctl configurations.

adrianboston avatar Jun 29 '14 00:06 adrianboston