web-dev-qa-db-ja.com

MySQLのInnoDBでの高いCPU使用率(大きなdb> 100MBでのみ発生)

私はすでに3日間検索していますが、なぜ私のMySQLサーバーが多くのCPUを使用するのかわかりません。たとえば、テーブルの1つから100行のようにSELECTするクエリを実行すると、CPUは0〜50%になり、テーブルの1つから値を取得して別のテーブルに行を挿入すると、CPUは0〜10〜30%。現在、それは170MBを使用しています、私はきれいなもので試しました、そしてCPUはいつも1%未満でした。クエリは遅くなく、0.05秒未満でジョブを完了しますが、それでも約30%のCPUを使用します。ウェブサイトに30人以上の人がいて、全員がそうしていると、ウェブサイトの速度が非常に低下します。それは少し前まで起こらなかったので、プロジェクトに取り組んでいるときにどこかで何か間違ったことをしたのかもしれません。

MySQLTunerの結果は次のとおりです。

 >>  MySQLTuner 1.7.0 - Major Hayden <[email protected]>
 >>  Bug reports, feature requests, and downloads at http://mysqltuner.com/
 >>  Run with '--help' for additional options and output filtering

[--] Skipped version check for MySQLTuner script
[OK] Logged in using credentials from debian maintenance account.
[OK] Currently running supported MySQL version 5.5.52-0+deb7u1
[OK] Operating on 64-bit architecture

-------- Storage Engine Statistics ---------------------------------------------                            --------------------
[--] Status: +ARCHIVE +BLACKHOLE +CSV -FEDERATED +InnoDB +MEMORY +MRG_MYISAM +My                            ISAM +PERFORMANCE_SCHEMA
[--] Data in MyISAM tables: 23K (Tables: 10)
[--] Data in InnoDB tables: 218M (Tables: 18)
[OK] Total fragmented tables: 0

-------- Security Recommendations ----------------------------------------------                            --------------------
[OK] There are no anonymous accounts for any database users
[OK] All database users have passwords assigned
[--] There are 612 basic passwords in the list.

-------- CVE Security Recommendations ------------------------------------------                            --------------------
[!!] CVE-2016-6662(<= 5.5.52) : "Oracle MySQL through 5.5.52
[--] False positive CVE(s) for MySQL and MariaDB 5.5.x can be found.
[--] Check careful each CVE for those particular versions
[!!] 1 CVE(s) found for your MySQL release.

-------- Performance Metrics -----------------------------------------------------------------------
[--] Up for: 13m 39s (2K q [2.452 qps], 434 conn, TX: 925K, RX: 146K)
[--] Reads / Writes: 70% / 30%
[--] Binary logging is disabled
[--] Physical Memory     : 3.8G
[--] Max MySQL memory    : 597.8M
[--] Other process memory: 63.7M
[--] Total buffers: 192.0M global + 2.7M per thread (151 max threads)
[--] P_S Max memory usage: 0B
[--] Galera GCache Max memory usage: 0B
[OK] Maximum reached memory usage: 232.3M (6.00% of installed RAM)
[OK] Maximum possible memory usage: 597.8M (15.44% of installed RAM)
[OK] Overall possible memory usage with other process is compatible with memory available
[OK] Slow queries: 0% (0/2K)
[OK] Highest usage of available connections: 9% (15/151)
[OK] Aborted connections: 0.00%  (0/434)
[!!] name resolution is active : a reverse name resolution is made for each new connection and can reduce performance
[!!] Query cache may be disabled by default due to mutex contention.
[OK] Sorts requiring temporary tables: 0% (0 temp sorts / 5 sorts)
[OK] No joins without indexes
[OK] Temporary tables created on disk: 25% (69 on disk / 273 total)
[OK] Thread cache hit rate: 96% (15 created / 434 connections)
[OK] Table cache hit rate: 91% (72 open / 79 opened)
[OK] Open file limit used: 6% (68/1K)
[OK] Table locks acquired immediately: 100% (224 immediate / 224 locks)

-------- Performance schema ------------------------------------------------------------------------
[--] Performance schema is disabled.

-------- ThreadPool Metrics ------------------------------------------------------------------------
[--] ThreadPool stat is disabled.

-------- MyISAM Metrics ----------------------------------------------------------------------------
[!!] Key buffer used: 18.2% (3M used / 16M cache)
[OK] Key buffer size / total MyISAM indexes: 16.0M/124.0K

-------- InnoDB Metrics ----------------------------------------------------------------------------
[--] InnoDB is enabled.
[--] InnoDB Thread Cucurrency: 0
[!!] InnoDB File per table is not activated
[!!] InnoDB buffer pool / data size: 128.0M/218.7M
[!!] Ratio InnoDB log file size / InnoDB Buffer pool size (3.90625 %): 5.0M/128.0M should be equal 25%
[OK] InnoDB buffer pool instances: 1
[--] InnoDB Buffer Pool Chunk Size not used or defined in your version
[OK] InnoDB Read buffer efficiency: 99.98% (4252997 hits/ 4253965 total)
[!!] InnoDB Write Log efficiency: 17.98% (16 hits/ 89 total)
[OK] InnoDB log waits: 0.00% (0 waits / 73 writes)

-------- AriaDB Metrics ----------------------------------------------------------------------------
[--] AriaDB is disabled.

-------- TokuDB Metrics ----------------------------------------------------------------------------
[--] TokuDB is disabled.

-------- XtraDB Metrics ----------------------------------------------------------------------------
[--] XtraDB is disabled.

-------- RocksDB Metrics ---------------------------------------------------------------------------
[--] RocksDB is disabled.

-------- Spider Metrics ----------------------------------------------------------------------------
[--] Spider is disabled.

-------- Connect Metrics ---------------------------------------------------------------------------
[--] Connect is disabled.

-------- Galera Metrics ----------------------------------------------------------------------------
[--] Galera is disabled.

-------- Replication Metrics -----------------------------------------------------------------------
[--] Galera Synchronous replication: NO
[--] No replication slave(s) for this server.
[--] This is a standalone server.

-------- Recommendations ---------------------------------------------------------------------------
General recommendations:
    1 CVE(s) found for your MySQL release. Consider upgrading your version !
    MySQL started within last 24 hours - recommendations may be inaccurate
    Enable the slow query log to troubleshoot bad queries
    Configure your accounts with ip or subnets only, then update your configuration with skip-name-resolve=1
Variables to adjust:
    query_cache_type (=0)
    innodb_file_per_table=ON
    innodb_buffer_pool_size (>= 218M) if possible.
    innodb_log_file_size should be equals to 1/4 of buffer pool size (=32M) if possible.

そしてここにmy.cnfがあります:

#
# * 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      = 16M
max_allowed_packet  = 16M
thread_stack        = 192K
thread_cache_size       = 8
wait_timeout = 1800
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover         = BACKUP
#max_connections        = 100
#table_cache            = 64
#thread_concurrency     = 10
#
# * Query Cache Configuration
#
query_cache_limit   = 1M
query_cache_size        = 16M
#
# * 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 = 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      = 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/

遅いクエリのログもチェックしましたが、そこに行くのに十分な速度はありませんでした。ユーザーテーブルの1つの列で1つのインデックスのみを使用します。これにより、一部のクエリが高速化されますが、それだけで、MySQLのCPU使用率はそれを使用してもしなくても同じです。

約1.000.000行の3つのテーブルがありますが、usersテーブルでは1つのインデックスのみを使用しています。これが私のクエリの1つの説明です:

EXPLAIN SELECT * FROM bets WHERE user = 76561198156588991

(これが結果です:gyazo.com/201c91cc5fd903667e30a26067001d0eで、0.02秒で実行されましたが、このクエリだけでCPUが0から15%になりました)。

1

問題には多くの理由がありますが、まず最初にあなたが始める必要があるものから

InnoDB buffer pool / data size: 128.0M

MySQLにサーバーメモリの少なくとも半分を与える

2番目-高いCPUは、クエリでのインデックス作業の不良やソート操作の多くを示します

サーバーチェックなしでは結論を出すことはできません-すべての上位クエリを監視およびプロファイルします

速度-メダルの片側のみであり、クエリは高速である可能性があります(データが非常に小さいため)。ただし、インデックスを使用しない場合、または大きなデータセットに対してgroup by/order byを作成しない場合-これにより、CPU使用率が高くなり、ボトルになります。読み込み時の首が増加します。

実際のクエリ統計を収集するために利用可能ないくつかのツールを使用してみてください。

  • MONyog
  • JetProfiler
  • Neor Profiler

上位20%のクエリを次の方法で分析してください。

  • サーバー時間の上位
  • 実行回数順

結果に基づいて-インデックスを追加し、必要に応じてクエリを変更します

この後99.99%のケースで-問題はなくなります

1
a_vlad

SHOW CREATE betsを入力してください。 userVARCHARであると言えるでしょう。 VARCHARを数値と比較するには、テーブルスキャンが必要です。これは遅いです。 76561198156588991を引用符で囲みます。

また、betsuserで始まる何らかのインデックスがあることを確認してください。

他のクエリが必要以上に遅く実行されている可能性があります。それらを見てみましょう。

innodb_buffer_pool_sizeを300Mに増やします。

0
Rick James