Troubleshooting memory issues on Compute Instances
Many common issues with Compute Instances are caused by excessive memory consumption. When your Compute Instance is running low on physical memory, it may start to "swap thrash." This means it's attempting to use your swap partition heavily instead of real RAM. We recommend you limit your swap partition size to 256 MB; heavy use of swap in a virtualized environment will cause major performance problems.
Determining free memory and swap activity
You can use the following command to display memory use on your Compute Instance:
free -m
You can use the following snippet to see a list of your running processes sorted by memory use:
ps -eo pmem,pcpu,rss,vsize,args | sort -k 1 -r | less
To see IO activity on your Compute Instance, you may use the following command (you may need to install the sysstat
package under Debian or Ubuntu first):
iostat -d -x 2 5
This will give an extended device utilization report five times at two second intervals. If your Compute Instance is running out of memory, Apache, MySQL, and SpamAssassin are the usual suspects.
MySQL low-memory settings
In your MySQL configuration file (typically found in /etc/mysql/my.cnf
), change your entries for the various settings shown below to match the recommended values:
key_buffer = 16K
max_allowed_packet = 1M
thread_stack = 64K
table_cache = 4
sort_buffer = 64K
net_buffer_length = 2K
If you don't use InnoDB tables, you should disable InnoDB support by adding the following line:
skip-innodb
The settings in this section are designed to help you temporarily test and troubleshoot MySQL. We recommend that you do not permanently use these settings.
Apache 2 low-memory settings
Determine the type of MPM in use by your Apache install by issuing the following command. This will tell you which section to edit in your Apache configuration file.
Debian-based systems :
apache2 -V | grep 'MPM'
Fedora/CentOS systems :
httpd -V | grep 'MPM'
In your Apache 2 configuration file (typically found at /etc/apache2/apache2.conf
in Debian and Ubuntu systems, and /etc/httpd/httpd.conf
in CentOS and other similar systems), change your entries for the various settings shown below to match the recommended values.
KeepAlive Off
---
StartServers 1
MinSpareServers 3
MaxSpareServers 6
ServerLimit 24
MaxClients 24
MaxRequestsPerChild 3000
The settings in this section are designed to help you temporarily test and troubleshoot Apache. We recommend that you do not permanently use these settings.
Reducing SpamAssassin memory consumption
If you're filtering mail through SpamAssassin in standalone mode and running into load issues, you'll need to investigate switching to something to keep the program persistent in memory as a daemon. We suggest looking at amavisd-new.
Updated 4 months ago