MySQL de repente, tendo 2000 ms por pedido, em vez de 200

1

UPDATE : finalmente lembrei de olhar para munin, e parece que um dos HDDs é a raiz do problema, afinal, a menos que eu esteja lendo totalmente errado. Aqui está a saída munin: link . Estou certo em pensar que um dos meus HDDs provavelmente precisa ser substituído, ou alguma outra coisa poderia explicar esses picos de E / S?

Eu tenho um servidor bastante poderoso (quad core i7, 32GB RAM) rodando um site Drupal 7 (pixelscrapper.com) em uma pilha LAMP, utilizando Varnish, Memcached, APC, CloudFlare. Recebemos cerca de 20.000 pageviews por dia e, normalmente, o site carrega em 3 a 4 segundos para usuários autenticados, com o tempo total do servidor respondendo por cerca de 0,5 segundos, dividindo bastante igualmente entre php e mysql (aproximadamente 0,2 segundos no mysql por solicitação) ... tudo conforme relatado via New Relic (lite, então não consigo ver os rastreios do banco de dados).

O tempo de carregamento da página de 3-4 segundos, com .2 segundos no mysql, tem sido assim há vários meses, de forma consistente.

Então, alguns dias atrás, o site começou a demorar muito mais para carregar, e olhando para o New Relic, notei que o mysql está demorando cerca de 2 segundos por solicitação, em vez de 0,2 segundos. Isso sem grandes alterações no site ... apenas o uso regular do site.

Então, minha pergunta é: o que poderia fazer com que o mysql passasse 2 segundos por solicitação em vez de 0,2 segundos, sem nenhuma mudança implantada no site, e sem grandes mudanças no tráfego?

O melhor instinto que tenho é que isso pode ser causado por:

  1. Alguma tabela crescendo muito, ou o total de db crescendo muito, baseado em alocações de memória atuais em my.cnf, então o que costumava ser na memória está agora debatendo os HDDs.
  2. Algum problema de hardware, como um problema com um dos HDDs causando lentidão no acesso ao disco (eu tenho dois HDDs no RAID).
A coisa é, com base em olhar para a saída do mysqltuner, as alocações de memória parecem estar bem, e com base em um teste de unidade inicial, os HDDs não parecem estar quebrados ... então ...

Quaisquer reflexões sobre o que pode fazer com que algo assim aconteça, como devo resolver isso?

Aqui está a saída do mysqltuner (o mysql está rodando por 98 dias):

-------- General Statistics --------------------------------------------------
[--] Skipped version check for MySQLTuner script
[OK] Currently running supported MySQL version 5.5.28-0ubuntu0.12.04.2-log
[OK] Operating on 64-bit architecture

-------- Storage Engine Statistics -------------------------------------------
[--] Status: -Archive -BDB -Federated +InnoDB -ISAM -NDBCluster
[--] Data in MyISAM tables: 88B (Tables: 10)
[--] Data in InnoDB tables: 1G (Tables: 582)
[--] Data in PERFORMANCE_SCHEMA tables: 0B (Tables: 17)
[!!] Total fragmented tables: 148

-------- Performance Metrics -------------------------------------------------
[--] Up for: 98d 2h 0m 34s (1B q [156.130 qps], 14M conn, TX: 3596B, RX: 225B)
[--] Reads / Writes: 72% / 28%
[--] Total buffers: 5.2G global + 3.1M per thread (300 max threads)
[OK] Maximum possible memory usage: 6.1G (19% of installed RAM)
[OK] Slow queries: 0% (32K/1B)
[OK] Highest usage of available connections: 37% (113/300)
[OK] Key buffer size / total MyISAM indexes: 128.0M/2.4M
[OK] Key buffer hit rate: 100.0% (35M cached / 545 reads)
[OK] Query cache efficiency: 71.4% (820M cached / 1B selects)
[!!] Query cache prunes per day: 43794
[OK] Sorts requiring temporary tables: 0% (15K temp sorts / 63M sorts)
[!!] Joins performed without indexes: 85938
[OK] Temporary tables created on disk: 1% (302K on disk / 17M total)
[OK] Thread cache hit rate: 99% (113K created / 14M connections)
[!!] Table cache hit rate: 13% (2K open / 19K opened)
[OK] Open file limit used: 0% (69/33K)
[OK] Table locks acquired immediately: 99% (529M immediate / 529M locks)
[OK] InnoDB data size / buffer pool: 1.5G/4.0G

-------- Recommendations -----------------------------------------------------
General recommendations:
    Run OPTIMIZE TABLE to defragment tables for better performance
    Increasing the query_cache size over 128M may reduce performance
    Adjust your join queries to always utilize indexes
    Increase table_cache gradually to avoid file descriptor limits
Variables to adjust:
    query_cache_size (> 1G) [see warning above]
    join_buffer_size (> 512.0K, or always use indexes with joins)
    table_cache (> 16384)

Aqui está my.cnf:

#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
# 
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html

# This will be passed to all mysql clients
# It has been reported that passwords should be enclosed with ticks/quotes
# escpecially if they contain "#" chars...
# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
[client]
port        = 3306
socket      = /var/run/mysqld/mysqld.sock

# Here is entries for some specific programs
# The following values assume you have at least 32M ram

# This was formally known as [safe_mysqld]. Both versions are currently parsed.
[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
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address        = 127.0.0.1
#
# * Fine Tuning
#
key_buffer      = 128M
max_allowed_packet  = 16M
thread_stack        = 192K
thread_cache_size       = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover         = BACKUP
max_connections        = 300
table_cache     = 16384
max_heap_table_size = 256M
join_buffer_size    = 512K

#thread_concurrency     = 10
#
# * Query Cache Configuration
#
query_cache_limit   = 4M
query_cache_size        = 1024M
#
# * 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 logging goes to syslog due to /etc/mysql/conf.d/mysqld_safe_syslog.cnf.
#
# Here you can see queries with especially long duration
log_slow_queries    = /var/log/mysql/mysql-slow.log
long_query_time = 3
#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!
#
innodb_file_per_table
innodb_buffer_pool_size = 4G 
innodb_flush_method = O_DIRECT

# This is crucial to avoid checkpointing all the time:
innodb_log_file_size = 512M

# Lock wait timeout. See http://stackoverflow.com/questions/6000336/how-to-debug-lock-wait-timeout-exceeded
innodb_lock_wait_timeout = 120

# * 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      = 16M

#
# * 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/

Este é o meu log de consultas lentas:

link

    
por Jordan Magnuson 18.07.2014 / 18:27

1 resposta

0

Tentou executar uma verificação do HDD no sdb, que não terminaria ... (inicialmente achei que tinha executado uma verificação do HDD que terminou, mas pensei incorretamente que estava testando o sdb quando estava realmente testando o sda).

Então, neste caso, a resposta para o meu problema foi verificar Munin, notar o disco debatendo-se (falhar) e substituí-lo.

Tudo está como estava agora.

    
por 19.07.2014 / 16:16