OpenDevelopmentMekong / odm-deployment

Repository containing ansible/vagrant scripts for reproducing ODM's development/testing environment.
http://opendevelopmentmekong.net
1 stars 0 forks source link

Running too many processes on WF #29

Closed acorbi closed 9 years ago

acorbi commented 9 years ago

I came up with following issue after deploying the ansible scripts on a Webfaction instance:

Diagnostics:

When i ssh lfa@web409.webfaction.com i get 'Write failed: Broken pipe'

Feedback from WF Support:

The problem is that you are running too many processes, which is causing you to hit the linux kernel's per-user thread limit.

This is set to 300 and you are already using 306, thus a new process like an ssh session cannot start. See the attached processes.txt and threads.txt files for more info. From a quick glance it looks like your paster command is spawning the most.

Basically, it looks like the paster command used to serve the CKAN development instance is spawning too many threads.

acorbi commented 9 years ago

The WF support team sent this link for reference: http://pythonpaste.org/paste-httpserver-threadpool.html

acorbi commented 9 years ago

This is an issue with the googleanalytics extension https://github.com/ckan/ckanext-googleanalytics/issues/12