gpt4 book ai didi

mysql cpu使用率超过系统cpu

转载 作者:行者123 更新时间:2023-11-29 01:03:17 26 4
gpt4 key购买 nike

我有一台装有 Plesk 的 CentOs 服务器,它有 24 个 cpu 内核和 32 GB 内存。

当我在 linux 中使用 TOP 时,我看到 mysql cpu 使用率约为 200%,尽管总系统 cpu 约为 2% 或 3%,并且平均负载低于 3。

这种高 mysql cpu 使用率导致网页加载延迟很长,有时用户会收到错误。

我的问题是,为什么 mysql 不使用系统上可用的总 cpu 使用率?用户mysql使用cpu有限制吗?

  • 所有内核的 cpu usgae 显示大部分 cpu 处于空闲状态超过 90%
  • 这是我的最高报告:

    top - 10:16:50 up 78 days, 13:03,  1 user,  load average: 2.03, 2.66,
    2.23 Tasks: 452 total, 1 running, 451 sleeping, 0 stopped, 0 zombie
    Cpu(s): 5.6%us, 2.7%sy, 0.0%ni, 91.7%id, 0.0%wa, 0.0%hi,
    0.0%si, 0.0%st Mem: 32838268k total, 30909316k used, 1928952k free,
    346760k buffers Swap: 4737016k total, 21316k used, 4715700k free, 17724552k cached
      PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND 
    56223 mysql 20 0 12.5g 1.4g 7032 S 156.7 4.5 295:44.32 mysqld
    16674 baadraan 20 0 191m 16m 8308 S 6.9 0.1 0:01.48 php-cgi
    16677 baadraan 20 0 193m 17m 8676 S 6.3 0.1 0:01.71 php-cgi

我检查了 ulimit 是无限的

plesk 系统运行状况也显示 cpu 正常但存在服务 cpu 问题:

MySQL CPU usage     225.1 %  (?)
Total usage 10.7% used (?)
Load average 2.4

请帮助我理解为什么 mysql 显示为使用 200%+ CPU。

my.cnf 内容是:

[mysqld]
local-infile=0
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
#basedir=/var/lib/mysql
user=mysql
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
innodb_file_per_table=1
max_connections=5000
max_user_connections=2000
log-slow-queries
long_query_time = 2
safe-show-database
skip-name-resolve
query_cache_size = 4000M
table_cache = 4000
thread_cache_size = 16M
query_cache_limit = 1M
key_buffer_size = 6G
wait_timeout = 500
interactive_timeout = 300
innodb_buffer_pool_size = 1024M
innodb_flush_log_at_trx_commit = 2
innodb_log_buffer_size = 4M
sort_buffer_size = 4M
myisam_sort_buffer_size = 128M
join_buffer_size = 4M
read_buffer_size = 4M
tmp_table_size = 128M
connect_timeout = 15
max_allowed_packet = 2M
max_connect_errors = 9999
open_files_limit=3496


[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

最佳答案

reshape ,

您在“top”中看到的 mysql 负载是所有内核上所有 mysql 线程的总负载。如果你有 24 核系统,你可以通过除以 200%/24 得到大约 8% 的负载来近似单核负载,这一点也不差。如果您想详细了解正在发生的事情,请使用“htop”而不是“top”,并在其设置中启用“ TreeView ”(设置->显示选项-> TreeView )。您将在 TreeView 根上看到所有 mysql 线程及其负载和总负载(您现在看到的一个)。

根据您所写的内容,您的系统负载应该不是长网页负载的问题。我猜想数据库设计和/或查询存在一些问题。在您的配置中,我看到您启用了慢速日志。我建议您仔细查看它并跟踪缓慢、低效的查询。

此外,请查看您正在使用的表格引擎。如果您正在使用 myisam,并且有很多写入和大负载 - 请记住,每次写入 myisam 表都会在整个表上设置一个锁。

希望我已经澄清了一点:)

关于mysql cpu使用率超过系统cpu,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23798860/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com