English 中文(简体)
亚马逊EC2的 MySQL/试管绩效问题
原标题:MySQL/Magento Performance issues on Amazon EC2

我们正在运行两个网络服务器,分别是Magento eCommerce网站和亚马逊EC2上的 MySQL 数据库服务器。

我们正在MySQL服务器上遇到重大性能问题、僵局、锁定等待超时错误等,

我们最近将db服务器升级为m1.x大实例(从m1.大),我们仍然在继续经历这些问题。

我们一直把这些问题归咎于坏磁盘 IO, 我们经常在EC2服务器上看到,

“ Sar” 指令显示,我们在高峰期或当我们通过Magento API 创建发票等数据库密集操作时, 磁盘 IO 性能相当差。 我们经常看到 iO 等值高达 20% 以上 。

以下是一个截图的链接, 显示一个“mtop”的结果, 我们最近遇到一个问题, 询问导致整个数据库减速:

https://i.sstatic.net/iKMLk.png" rel=“不跟随 nofollow noreferrer>>https://i.sstatic.net/iKMLk.png

此屏幕截图显示一个或另一个问题, 使其余的查询无法执行。 它还显示相当低的负载平均值, 通常我们看到当执行密集命令时负载平均值会高达3. 0 。

这里是 my.cnf 设置 :

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
symbolic-links=0
innodb_file_per_table=1
key_buffer=512M
max_allowed_packet=64M
table_cache=512
innodb_thread_concurrency=5
innodb_buffer_pool_size=4976M
innodb_additional_mem_pool_size=8M
innodb_log_file_size=128M
innodb_log_buffer_size=8M
thread_cache_size=150
sort_buffer_size=4M
read_buffer_size=4M
read_rnd_buffer_size=2M
myisam_sort_buffer_size=64M
tmp_table_size=256M
query_cache_type=1
query_cache_size=128M
max_connections=400
wait_timeout=28800
innodb_lock_wait_timeout=120
max_heap_table_size=256M
long_query_time=3
log-slow-queries=...mysql-slow.log

[mysqld_safe]
log-error=...mysqld.log
pid-file=...mysqld.pid

我们广泛使用了 pt-query- digest 函数来分析 MySQL 慢速查询日志 。

基本上,我们看到 sales_flap_quote table在更新和插入方面非常缓慢,但其他一些表格也是如此。

sales_flap_quote 虽然并不特别大,但表格中只有大约100公里的行。

问题回答

可能有几个根本原因:

  • Some of your slow queries may be locking tables, thus queueing other queries
  • Your queries may not be optimized
  • Your queries may need more indexes on some tables

使用 "

mysqldumpslow

我们在我们的 Mysql EC2 服务器上观察到了类似的猪,然而,我们很快地将我们的数据库迁移到一个 RDS 实例中。 从那时以来,问题很少。 有人可能会说RDS成本高昂,EC2成本不高,但是,你也会节省管理数据库/日常备份等的时间。

我建议将您的数据库迁移到 RDS 实例 。





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签