From 6e9a5f5ef952dc4bfc8d8ed58085ba6f9020dac7 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Thu, 29 Oct 2015 17:04:15 -0700 Subject: [PATCH] Bump connection limits to handle websockets Websockets mean we make more connections to apache. Bump the connection limits to 4096 connections total as this appears to handle summit load. Change-Id: I87b6d06b5b730bde48d60fcbd6c025de5581b672 --- files/apache-connection-tuning | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/files/apache-connection-tuning b/files/apache-connection-tuning index 847fae1..158adb0 100644 --- a/files/apache-connection-tuning +++ b/files/apache-connection-tuning @@ -18,22 +18,22 @@ # spare threads around to better handle thundering herds of users (eg at the # start of summit sessions). - ServerLimit 64 + ServerLimit 128 StartServers 3 MinSpareThreads 96 MaxSpareThreads 192 ThreadLimit 64 ThreadsPerChild 32 - MaxClients 2048 + MaxClients 4096 MaxRequestsPerChild 0 - ServerLimit 64 + ServerLimit 128 StartServers 3 MinSpareThreads 96 MaxSpareThreads 192 ThreadLimit 64 ThreadsPerChild 32 - MaxClients 2048 + MaxClients 4096 MaxRequestsPerChild 0