我已使用 Galera 为我的 Web 服务设置了 3 个集群 mariaDB,并使用 haproxy 进行负载平衡。
集群运行良好并相互同步,但是当我的网站访问者达到 3000 多名用户时,每个节点的 CPU 都会达到峰值。
top - 09:19:03 up 17:36, 1 user, load average: 3.58, 3.82, 3.85
Tasks: 169 total, 1 running, 168 sleeping, 0 stopped, 0 zombie
%Cpu(s): 17.8 us, 3.5 sy, 0.0 ni, 77.5 id, 0.3 wa, 0.0 hi, 0.5 si, 0.6 st
KiB Mem : 12300340 total, 9661112 free, 551008 used, 2088220 buff/cache
KiB Swap: 524284 total, 524284 free, 0 used. 11554364 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
4906 mysql 20 0 1370720 556596 153360 S 130.3 4.5 1052:00 mysqld
7037 root 20 0 144480 8572 7160 S 0.7 0.1 0:00.08 sshd
34 root 20 0 0 0 0 S 0.3 0.0 0:04.96 ksoftirqd/5
2102 root 0 -20 0 0 0 S 0.3 0.0 0:04.95 kworker/4:1H
3651 root 20 0 246492 20868 20156 S 0.3 0.2 0:04.33 rsyslogd
所有 3 个节点的规格相同:
192GB DISK
6 CPU Cores
12 Gig RAM
我现在需要实施哪些调整才能更有效地处理此查询请求?选择请求正在访问我的数据库表中的数十亿行,这些行同时由 2000 多个请求。每个查询结果都是唯一的。
答案1
我也有同样的问题。
检查是否存在“慢查询”。这是首要任务。不要以为没有,总会有一些东西可以发现。
使用 SSD 磁盘
这是我的设置(最重要的一次)
[galera] innodb_autoinc_lock_mode=2 wsrep_provider_options=gcache.size=512M;gcache.recover=yes wsrep_causal_reads=ON wsrep_slave_threads=24 innodb_flush_log_at_trx_commit=2 innodb_doublewrite=1 query_cache_size=512M [mysqld] transaction-isolation = READ-COMMITTED max_allowed_packet=200M max_allowed_packet=200M innodb_buffer_pool_size=1G skip_name_resolve table_open_cache=500