mysql 8 对 digital ocean droplet 的内存使用率过高

mysql 8 对 digital ocean droplet 的内存使用率过高

我有一个 laravel 应用程序,它安装在运行 ubuntu 20.4、nginx、MySQL 8 和 php 7.4 的 1GB 标准 droplet 上

该应用程序尚未上线,我注意到它已经使用了超过 60% - 68% 的内存

下面是当前高内存运行进程的快照。对于甚至没有运行(即负载有限)的 laravel 应用程序来说,这种级别的内存使用是否正常?

top - 15:47:51 up 1 day, 23:53,  1 user,  load average: 0.00, 0.01, 0.00
Tasks: 100 total,   3 running,  97 sleeping,   0 stopped,   0 zombie
%Cpu(s):  0.3 us,  0.3 sy,  0.0 ni, 99.3 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
MiB Mem :    981.3 total,     89.5 free,    612.3 used,    279.5 buff/cache
MiB Swap:      0.0 total,      0.0 free,      0.0 used.    200.7 avail Mem

  PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
  815 mysql     20   0 1306168 408208   2892 S   0.3  40.6  18:20.97 mysqld
 2259 www-data  20   0  244024  38424  25504 S   0.0   3.8   0:05.27 php-fpm7.4
  388 root      19  -1  106512  38196  37008 S   0.0   3.8   0:06.24 systemd-journal
 2265 www-data  20   0  244032  37988  25108 S   0.0   3.8   0:05.14 php-fpm7.4
 2257 www-data  20   0  244004  37780  24856 S   0.0   3.8   0:05.22 php-fpm7.4
  988 root      20   0  125160  30236   4640 S   0.3   3.0   2:03.41 php
  741 root      20   0  649232  22700   6672 S   0.0   2.3   0:17.61 snapd
  544 root      rt   0  280180  17976   8184 S   0.0   1.8   0:11.26 multipathd
  743 root      20   0   31348  16972   2468 S   0.0   1.7   0:31.63 supervisord
  738 root      20   0  238392  13208   7244 S   0.0   1.3   0:09.45 php-fpm7.4
  726 do-agent  20   0  559692  11852   5560 S   0.0   1.2   0:20.79 do-agent
  825 root      20   0  108036  11804   4160 S   0.0   1.2   0:00.10 unattended-upgr
  736 root      20   0   29220  11364   3708 S   0.0   1.1   0:00.11 networkd-dispat
    1 root      20   0  168752  10208   5772 S   0.0   1.0   0:12.03 systemd
15532 sammy     20   0   18556   8488   6948 S   0.0   0.8   0:00.08 systemd
  778 www-data  20   0   71004   8276   3552 S   0.0   0.8   0:02.71 nginx
15522 root      20   0   13760   8256   6816 S   0.0   0.8   0:00.01 sshd
  623 systemd+  20   0   23912   6756   2752 S   0.0   0.7   0:00.60 systemd-resolve
15634 osama     20   0   13892   5912   4452 S   0.0   0.6   0:00.06 sshd
  747 root      20   0   16860   5564   4552 S   0.0   0.6   0:02.54 systemd-logind
15635 sammy     20   0   10032   5104   3412 S   0.0   0.5   0:00.04 bash
15537 sammy     20   0  169820   4572      0 S   0.0   0.5   0:00.00 (sd-pam)
  763 root      20   0   12160   4504   3572 S   0.0   0.4   0:01.33 sshd
  621 systemd+  20   0   18544   4292   3276 S   0.0   0.4   0:01.11 systemd-network
  659 root      20   0   18880   3808   2528 S   0.0   0.4   0:01.92 systemd-udevd

我担心的是,一旦应用程序上线并且负载增加,更多的数据库连接就会耗尽内存。我知道我可以调整 droplet 的大小并增加内存或设置一些交换空间,但对于未使用的 laravel 应用程序来说,这种内存使用量正常吗?

如何优化高内存使用率进程,例如 mysql、niginx、php。看起来 mysql8 是占用所有内存的罪魁祸首。以下是 mysql8 设置:

#
# The MySQL database server configuration file.
#
# 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

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

[mysqld]
#
# * Basic Settings
#
user            = mysql
# pid-file      = /var/run/mysqld/mysqld.pid
# socket        = /var/run/mysqld/mysqld.sock
# port          = 3306
# datadir       = /var/lib/mysql


# If MySQL is running as a replication slave, this should be
# changed. Ref https://dev.mysql.com/doc/refman/8.0/en/server-system- variables.html#sysvar_tmpdir
# tmpdir                = /tmp
#
# 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_size         = 16M
# max_allowed_packet    = 64M
# thread_stack          = 256K

# thread_cache_size       = -1

# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover-options  = BACKUP

# max_connections        = 151

# table_open_cache       = 4000

#
# * Logging and Replication
#
# Both location gets rotated by the cronjob.
#
# Log all queries
# Be aware that this log type is a performance killer.
# general_log_file        = /var/log/mysql/query.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
# slow_query_log                = 1
# slow_query_log_file   = /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
# binlog_expire_logs_seconds    = 2592000
max_binlog_size   = 100M
# binlog_do_db          = include_database_name
# binlog_ignore_db      = include_database_name   

由于这是我第一次使用 vps,因此非常感谢任何提示和建议。

*** 更新 ***

根据蒂姆的建议,关闭 mysql 性能模式已经产生了很大的不同,我现在得到以下结果:

top - 10:33:26 up 5 days, 18:39,  1 user,  load average: 0.01, 0.03, 0.00
Tasks: 114 total,   1 running, 107 sleeping,   6 stopped,   0 zombie
%Cpu(s):  0.7 us,  0.3 sy,  0.0 ni, 98.7 id,  0.3 wa,  0.0 hi,  0.0 si,  0.0 st
MiB Mem :    981.3 total,    253.8 free,    360.9 used,    366.7 buff/cache
MiB Swap:      0.0 total,      0.0 free,      0.0 used.    449.2 avail Mem

答案1

操作系统会将所有 RAM 用于缓存 - 缓存几乎可以立即释放,有助于提高性能。因此,可用的 RAM 通常并不重要,可释放的内存才是重要的。

根据以上信息:

  • 已使用 612.3
  • 279.5 缓冲区/缓存
  • 89.5 免费

您实际上有 297 + 89 = 386MB 可供使用。

我在一台拥有 512MB RAM 和 512MB 交换空间的 AWS 服务器上运行着 MySQL、PHP、Nginx 和一些实用程序,所以这是可能的。我做了一个六部分教程现在可能有点过时了,但是可以有一些有用的提示。

从记忆中可以看出,主要要做的事情是:

  • 禁用 MySQL 性能模式,因为这会大大减少 RAM 使用量,并设置适合您系统的参数(MySQL 5.6 教程
  • 限制 PHP 线程数,并限制它们使用的 RAM 量,使其仅达到所需量。PHP 会使用大量 RAM。
  • 添加一点交换空间,以防内存不足。即使有足够的 RAM,操作系统也会将任何它实际上不需要的东西推送到交换空间。

答案2

你可以从

https://www.techolac.com/linux/how-to-optimize-apache-mysql-performance-for-1gb-ram-vps-centos-rhel/

对于低内存实例的良好建议..并调低 mysql。

请注意,您将会损失性能,因此请了解您的瓶颈在哪里。

如果您有大量复杂的查询,请优化您的数据库。

您甚至可以进行非常简单的查询,并且可以改用完全不同的数据库服务器,例如 NOSQL 数据库。

因此,不仅要考虑调整您的服务器,还要查看在其上运行的代码,并可能优化您的代码。

相关内容