Hi,
I've notice some up's and down's in the load average but I con't find anything strange in the logs!
This is a 768 linode wgere I run a vB+vBseo board 250/300 users online.
I don'd find any relations between the load jumps and any other processes like backups, mysqldump, most users onlie, etc.
I use nginx proxying to apache and mysql:
Timeout 50
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 5
<IfModule mpm_prefork_module>
StartServers 3
MinSpareServers 3
MaxSpareServers 3
MaxClients 25
MaxRequestsPerChild 100
</IfModule>
Mysql:
[mysqld]
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /home/mysql
tmpdir = /tmp
language = /usr/share/mysql/english
bind-address = 127.0.0.1
myisam-recover = BACKUP
skip-innodb
back_log = 50
max_connections = 50
key_buffer_size = 64M
myisam_sort_buffer_size = 64M
join_buffer_size = 1M
read_buffer_size = 1M
sort_buffer_size = 2M
table_open_cache = 16000
table_definition_cache = 8000
thread_cache_size = 144
wait_timeout = 3600
connect_timeout = 10
tmp_table_size = 32M
max_heap_table_size = 32M
max_allowed_packet = 32M
net_buffer_length = 16384
max_connect_errors = 100000
thread_concurrency = 4
concurrent_insert = 2
table_lock_wait_timeout = 30
read_rnd_buffer_size = 786432
bulk_insert_buffer_size = 8M
query_cache_limit = 1M
query_cache_size = 48M
query_cache_type = 1
query_prealloc_size = 262144
query_alloc_block_size = 65536
transaction_alloc_block_size = 8192
transaction_prealloc_size = 4096
default-storage-engine = MyISAM
max_write_lock_count = 4
#slow_query_log = 1
#slow_query_log_file = /var/log/mysql/mysql-slow.log
#long_query_time = 3
log-error = /var/log/mysql/mysql-error.log
low_priority_updates=1
[mysqld_safe]
nice = -5
open_files_limit = 8192
[mysqldump]
quick
max_allowed_packet = 16M
[myisamchk]
key_buffer_size = 64M
sort_buffer_size = 16M
read_buffer_size = 16M
write_buffer_size = 16M
[mysqlhotcopy]
interactive-timeout
Where and what should I start looking?
Thanks
