以下查询需要很长时间,尽管它应该立即执行:
mysql> UPDATE articles SET description='test' WHERE article_id=6;
Query OK, 1 row affected (40.80 sec)
Rows matched: 1 Changed: 1 Warnings: 0
- article_id 是 INT 自动增量
- 表只有大约 1000 条记录
我尝试分析查询,您可以看到它快速执行更新,但由于某种原因它挂起:
mysql> SHOW PROFILE FOR QUERY 1;
+----------------------+-----------+
| Status | Duration |
+----------------------+-----------+
| starting | 0.000079 |
| checking permissions | 0.000016 |
| Opening tables | 0.000020 |
| System lock | 0.000011 |
| Table lock | 0.000864 |
| init | 0.000078 |
| Updating | 0.000315 |
| end | 40.798736 |
| query end | 0.000028 |
| freeing items | 0.000014 |
| closing tables | 0.000012 |
| logging slow query | 0.000010 |
| logging slow query | 0.000046 |
| cleaning up | 0.000012 |
+----------------------+-----------+
14 rows in set (0.00 sec)
我尝试将 tmp 目录挂载到 RAM 以加快查询速度,但这也无济于事。
我发现如果我冲洗桌子,问题会暂时消失,但过一段时间又会出现。
任何帮助表示赞赏。