From 20c97aeecf30fb96d7032125d93045097f1266ab Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 26 Sep 2016 13:03:05 +0100 Subject: [PATCH] Allow more spare threads on planet.osm.org This allows processes to hang around rather than shutting down which can cause problems if they are still serving a slow client with a large planet file. https://bz.apache.org/bugzilla/show_bug.cgi?id=53555 --- roles/planet.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/planet.rb b/roles/planet.rb index 8c2870767..d9f0112bb 100644 --- a/roles/planet.rb +++ b/roles/planet.rb @@ -42,7 +42,8 @@ default_attributes( :event => { :server_limit => 20, :max_clients => 1000, - :threads_per_child => 50 + :threads_per_child => 50, + :max_spare_threads => 525 } } ) -- 2.43.2