Update from SVN2122 to SVN2537 - problem with apache server

All installation and configuration problems and questions

Moderators: gerski, enjay, williamconley, Op3r, Staydog, gardo, mflorell, MJCoate, mcargile, Kumba, Michael_N

Update from SVN2122 to SVN2537 - problem with apache server

Postby ZibiX » Mon May 23, 2016 2:35 am

Hi.

Yesterday i have made an update from SVN2122 to SVN2537 on my client cluster (1 x db, 1 x web, 5 x asterisk).

First problem that happen was message on web browser (when couple dozens of agents wanted to log in): MySQL connect ERROR: Cannot assign requested address

I have solved this by applying this on db and web server (according to this topic: viewtopic.php?f=4&t=31137):
echo 1 > /proc/sys/net/ipv4/tcp_tw_recycle
echo 1 > /proc/sys/net/ipv4/tcp_tw_reuse

The second problem is very high load on web server. Also processes on this server consumes almost all RAM (8GB).

Before the update, loadav on the server was low and memory usage was below 4 GB.

Do i need to modify config on apache after the update?
Last edited by ZibiX on Mon May 23, 2016 3:28 am, edited 1 time in total.
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem witch apache se

Postby ZibiX » Mon May 23, 2016 3:18 am

UPDATE:

In error_log on web server I have got thousands of this errors:
File does not exist: /srv/www/htdocs/agc/vicidial_stylesheet.css,
File does not exist: /srv/www/htdocs/agc/vicidial_stylesheet.css

and every few minutes:
PHP Warning: mysqli_connect(): (08004/1040): Too many connections in /srv/www/htdocs/agc/dbconnect_mysqli.php
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby mflorell » Mon May 23, 2016 5:43 am

The vicidial_stylesheet.css issue should be fixed now in svn/trunk

As for the mysql connection issues, yes the newer code(which switched the PHP "mysql" connection functions to "mysqli") does use more resources, but since PHP's "mysql" functions were unsupported and were going to be discontinued, we didn't have much choice in upgrading to "mysqli". So, you will need to both increase the MySQL max connections and increase the maximum open files used on your apache processes.

For most small to medium clients there was no issue, we only noticed this problem with our larger clients.

How many agents do you have logged in at any given time?

What are the hardware specs of your database and web servers?

Are you using any virtualization on any of your servers?
mflorell
Site Admin
 
Posts: 18386
Joined: Wed Jun 07, 2006 2:45 pm
Location: Florida

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby ZibiX » Mon May 23, 2016 1:38 pm

I have 120 agents logged in.

Hardware specs:
- database: i7-3770 3.40 GHz, 8 GB RAM, HDD 7200 RPM
- web: i3-3210 3.20 GHz, 8 GB RAM, HDD 7200 RPM

NO virtualization on any server.

One more information:
Database and Web servers are Vicibox 4.0.3

Questions:
- MySQL max connections are: max_connections in /etc/my.cnf ? I have set this to 2048
- Maximum open files used on my apache processes are settings in /etc/apache2/server-tunning.conf in prefork section?
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby mflorell » Mon May 23, 2016 2:29 pm

What kind of RAIDs are you using? Are you really only using one 7200RPM drive for your DB server?
mflorell
Site Admin
 
Posts: 18386
Joined: Wed Jun 07, 2006 2:45 pm
Location: Florida

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby ZibiX » Mon May 23, 2016 4:13 pm

On database server I'm using 2 x 250 HDD 7200RPM on software raid mirror (mdadm)
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby mflorell » Mon May 23, 2016 7:12 pm

Given the number of agents you have, I would recommend a LSI Logic MegaRAID card with faster harddrives. You are effectively running on the speed of a single 7200RPM drive, which cannot sustain the data throughput or seek speed necessary for 120 concurrent agents.
mflorell
Site Admin
 
Posts: 18386
Joined: Wed Jun 07, 2006 2:45 pm
Location: Florida

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby williamconley » Mon May 23, 2016 8:10 pm

ZibiX wrote:On database server I'm using 2 x 250 HDD 7200RPM on software raid mirror (mdadm)

Software RAID? That's crazy. Counterproductive, slow and will cause instability. This is not a web server.

If you remove the software mirror you may regain enough to run your system. Of course 15k SAS or SSD is better. If you require redundancy, however, RAID 10 as specified by Matt is best (well-tested and proven) including the brand name of the RAID card and 15K SAS or SSD for all drives.
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20258
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby ZibiX » Tue May 24, 2016 1:09 am

Ok, thank you for your suggestion. Today problem still exist: loadav on web server increased 100 times comparison to web server before update.
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby ZibiX » Tue May 24, 2016 1:20 am

UPDATE:
After increasing values in my.cnf and in apache config web server is more loaded (cpu 100 % all the time and memory usage goes to 8 GB in 15 minutes).

I have also noticed that in htop number of tasks increased from 700 to 900.

Maybe the problem is that apache do not kill "unused tasks" and that is way the server is overwhelmed?
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby ZibiX » Tue May 24, 2016 2:56 am

UPDATE2:
Strange thing :)

I have restored apache config to:
<IfModule prefork.c>
ServerLimit 768
StartServers 450
MinSpareServers 250
MaxSpareServers 500
MaxClients 768
MaxRequestsPerChild 800
</IfModule>

And now everything is running OK. MaxRequestsPerChild was 1200 and now 800.
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby ZibiX » Mon Jun 13, 2016 1:36 am

Hi.

Unfortunately problem still exist (74 agents calling):
Image
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby frequency » Mon Jun 13, 2016 11:47 am

Issue is the software raid. Better switch to Raid-1 or Raid 10 compelely with a card. If you cannot run a card, run without the RAID 0 which i will never ever recommened with a SSD load average shall be low and not 266.00 It should be equivalent almost to the cores of the processor. I am pretty sure your cpu usage would be very low and I/O wait time (%wa) time would be very high which is causing the load average to go up. I am pretty sure your agents would notice LAG in voice or problem in displaying data in the leads too.
frequency
 
Posts: 117
Joined: Mon Jun 13, 2016 11:18 am

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby ZibiX » Mon Jun 13, 2016 1:38 pm

frequency, this server is a web server without RAID. I have problem only with this server after update from SVN 2122 to SVN 2537. Before update 120 agents were working on this cluster without any problem. Now problems occur even with 50 agents.

I have lower settings in prefork section of apache config:
<IfModule prefork.c>
StartServers 350
MinSpareServers 150
MaxSpareServers 400
ServerLimit 768
MaxClients 768
MaxRequestsPerChild 800
</IfModule>

Then I have restarted apache and suddenly loadav dropped from 266 to 0.5. Tasks remain at 770 but running tasks dropped from 300 to 2-7 in htop.

First question: why this settings have so much impact on server performance?

I have only two big problems with apache:
1. A lot of this error in error log:
[error] [client xx.xx.xx.xx] File does not exist: /srv/www/htdocs/agc/simpletreemenu.js, referer: http://xxx.com:51522/agc/vdc_chat_display.php...

2. Every day at 10:45 apache restarts with this error in error_log:
[warn] child process 2604 still did not exit, sending a SIGTERM
[notice] SIGHUP received. Attempting to restart
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby williamconley » Mon Jun 13, 2016 1:57 pm

You may want to verify that all your "dispo_url" values are valid and able to be accessed from your server. I've bumped into this problem a couple times when a new server was unable to get through a firewall to access the dispo_url which the new server inherited from a prior server's Campaign entries in the database. Then the apache process attempts to pull the dispo url ... and the timeout problem causes all these unprocessed requests to backlog forever. Overload on CPU, system failure ...

So find out what in the apache application is causing this overload (or verify your dispo_url's specifically .. right now ... maybe you'll get lucky!).

And if that's the problem, put in an Issue Tracker request to have dispo_url with a timeout value to avoid pileups. 8-)
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20258
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby ZibiX » Wed Jun 15, 2016 4:23 am

williamconley, if you are reffering to Dispo Call URL in Campaign Detail View, I have this fields empty.

Lowering prefork settings seems to do the job.

Also I have found the reason to restart apache at 10:45 everyday. It was happening because logrotate. For unknown reason logrotate happen everyday at 10:45. I have set parametr in /etc/sysconfig/cron to:
DAILY_TIME="22:00"
and viola! Now compressing logs happen at night.
ZibiX
 
Posts: 107
Joined: Wed Jul 03, 2013 5:36 am
Location: Poland

Re: Update from SVN2122 to SVN2537 - problem with apache ser

Postby williamconley » Tue Jun 21, 2016 2:46 pm

Anther option, of course, is to turn off logging when not actively debugging the system. Asterisk has logging, apache has logging, iptables has logging, Vicidial has logging, mysql has logging ... some of these even have more than one type of logging. Turning them all off (and knowing how to turn them back on again if you need them) is ... handy on major installations.
Vicidial Installation and Repair, plus Hosting and Colocation
Newest Product: Vicidial Agent Only Beep - Beta
http://www.PoundTeam.com # 352-269-0000 # +44(203) 769-2294
williamconley
 
Posts: 20258
Joined: Wed Oct 31, 2007 4:17 pm
Location: Davenport, FL (By Disney!)


Return to Support

Who is online

Users browsing this forum: Majestic-12 [Bot] and 120 guests