当前位置: 首页 > 工具软件 > Olivia > 使用案例 >

MySQL中max_used_connections设置#Olivia丶长歌#

后星河
2023-12-01
mysql> show variables like 'max_connections';
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 2000  |
+-----------------+-------+
1 row in set (0.04 sec)
MySQL的最大连接数是2000
mysql> show global status like 'max_used_connections';
+----------------------+-------+
| Variable_name        | Value |
+----------------------+-------+
| Max_used_connections | 1     |
+----------------------+-------+
1 row in set (0.01 sec)
MySQL服务器过去的最大连接数是245,没有达到最大连接数的上限,不会出现(*******1040错误*******)。
比较理想的设置是
max_used_connections/max_connections*100%≈85%
最大连接数占上限连接数的85%左右,如果发现比例在10%以下,MySQL服务器连接数上限设置的过高了。
 类似资料: