Eine einfache Tabellenerstellung in einer meiner MySQL-Datenbanken dauert ewig:
mysql> CREATE TABLE blah (id BIGINT UNSIGNED NOT NULL PRIMARY KEY);
Query OK, 0 rows affected (16.58 sec)
Die Maschine ist ziemlich untätig:
01:21:26 PM CPU %user %nice %system %iowait %steal %idle
01:21:27 PM all 0.50 0.00 0.21 0.00 0.00 99.29
Irgendwelche Ideen, wie man das untersucht?
EDIT : Nach dTest Rat , das ist das Ausführungsprofil:
mysql> SHOW PROFILE FOR QUERY 1;
+----------------------+----------+
| Status | Duration |
+----------------------+----------+
| starting | 0.000044 |
| checking permissions | 0.000024 |
| creating table | 8.668129 |
| After create | 0.000014 |
| query end | 0.000005 |
| freeing items | 0.000028 |
| logging slow query | 0.000004 |
| logging slow query | 0.000206 |
| cleaning up | 0.000006 |
+----------------------+----------+
mysql
performance
Adam Matan
quelle
quelle
Antworten:
Ich würde die Profilerstellung aktivieren , um eine Vorstellung davon zu bekommen, was so lange dauert. Ein Beispiel mit der CLI von mysql:
Sie sollten eine Antwort wie diese erhalten:
quelle
CPU
,BLOCK IO
etc , die Sie auf die ‚Schaffung Tisch‘ Bühne helfen könnte.