MySQL veritabanlarımdan birinde basit bir tablo oluşturmak sonsuza dek sürer:
mysql> CREATE TABLE blah (id BIGINT UNSIGNED NOT NULL PRIMARY KEY);
Query OK, 0 rows affected (16.58 sec)
Makine oldukça boşta:
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
Bunu nasıl araştıracağınıza dair bir fikrin var mı?
DÜZENLEME : DTest'in tavsiyelerine göre , bu yürütme profili:
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 |
+----------------------+----------+
@Phil Yaklaşık 16 GB belleğe sahip fiziksel bir makine.
—
Adam Matan
@Phil Birçok MySQL işlemine sahip bir üretim sunucusudur, bu nedenle disk boşta olmamalıdır.
—
Adam Matan