Всем привет! Искал в инете, но толком ничего не нашел. Настраиваю веб сервер в связке nginx(отдает статику)+apache2+mysql Тестирую нагрузку siege'ом. 400 запросов в секунду выдерживает в течении 1мин. при 450 и выше отваливается. я так понимаю это фигня,а не нагрузка на сервер, т.к. даже половина ресурсов не загружается. По железу: 64гб оперативной памяти 3 жестких по 1 тб в программном raid 5 процессор 8-ми ядерный.
по htop видно, что mysql сильно грузит процессор. вот конфиги mysql на данный момент.
## The MySQL database server configuration file.
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock
[mysqld_safe]
socket = /var/run/mysqld/mysqld.sock
nice = 0
[mysqld]
# * Basic Settings
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
#пока что так подключение
bind-address = 0.0.0.0
# * Fine Tuning
key_buffer = 16M
key_buffer_size = 512M
key_cache_division_limit =70
max_allowed_packet = 16M
thread_stack = 192K
thread_cache_size = 2048
thread_concurrency = 8
myisam-recover = BACKUP
max_connections = 2000
max_connect_errors = 50
#-------------------------------------
#добавленный
table_cache = 2048
table_open_cache = 1024
tmp_table_size = 512M
max_heap_table_size = 256M
sort_buffer_size = 16M
join_buffer_size = 4M
#-------------------------------------
# * Query Cache Configuration
#рекомендация mysqltuner.pl
query_cache_type = OFF
query_cache_limit = 2M
query_cache_size = 128M
#
# * Logging and Replication
#
# Both location gets rotated by the cronjob.
# Be aware that this log type is a performance killer.
# As of 5.1 you can enable the log at runtime!
#general_log_file = /var/log/mysql/mysql.log
#general_log = 1
#
# Error log - should be very few entries.
#
log_error = /var/log/mysql/error.log
#
# Here you can see queries with especially long duration
log_slow_queries = /var/log/mysql/mysql-slow.log
long_query_time = 2
log-queries-not-using-indexes
#
# The following can be used as easy to replay backup logs or for replication.
# note: if you are setting up a replication slave, see README.Debian about
# other settings you may need to change.
#server-id = 1
#log_bin = /var/log/mysql/mysql-bin.log
expire_logs_days = 10
max_binlog_size = 100M
#binlog_do_db = include_database_name
#binlog_ignore_db = include_database_name
#
# * InnoDB
#
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
# Read the manual for more InnoDB related options. There are many!
#
# * Security Features
#
# Read the manual, too, if you want chroot!
# chroot = /var/lib/mysql/
#
# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
#
# ssl-ca=/etc/mysql/cacert.pem
# ssl-cert=/etc/mysql/server-cert.pem
# ssl-key=/etc/mysql/server-key.pem
[mysqldump]
quick
quote-names
max_allowed_packet = 16M
[mysql]
#no-auto-rehash # faster start of mysql but no tab completition
[isamchk]
key_buffer = 32M
#
# * IMPORTANT: Additional settings that can override those from this file!
# The files must end with '.cnf', otherwise they'll be ignored.
#
#!includedir /etc/mysql/conf.d/
Что можете посоветовать?