การสร้างตาราง MySQL ช้าอย่างบ้าคลั่ง


10

การสร้างตารางอย่างง่าย ๆ บนหนึ่งในฐานข้อมูล MySQL ของฉันใช้เวลาตลอดไป:

mysql> CREATE TABLE blah (id BIGINT UNSIGNED NOT NULL PRIMARY KEY);
Query OK, 0 rows affected (16.58 sec)

เครื่องค่อนข้างไม่ได้ใช้งาน:

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

แนวคิดใดที่จะตรวจสอบเรื่องนี้?

แก้ไข : ทำตามคำแนะนำของ DTestนี่คือโปรไฟล์การดำเนินการ:

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 เครื่องที่มีหน่วยความจำ 16GB
Adam Matan

@Phil เป็นเซิร์ฟเวอร์ที่ใช้งานจริงซึ่งมีการใช้งาน MySQL จำนวนมากดังนั้นดิสก์ไม่ควรใช้งาน
Adam Matan

คำตอบ:


10

ฉันจะเปิดการทำโปรไฟล์เพื่อให้ได้แนวคิดว่าจะใช้เวลานานขนาดไหน ตัวอย่างการใช้ CLI ของ mysql:

SET profiling = 1;
CREATE TABLE blah (id BIGINT UNSIGNED NOT NULL PRIMARY KEY);
SET profiling = 1;

คุณควรได้รับคำตอบดังนี้:

mysql> SHOW PROFILES;
| Query_ID | Duration   | Query |
+----------+------------+-------------------------------------------------------------+
|        1 | 0.00913800 | CREATE TABLE blah (id BIGINT UNSIGNED NOT NULL PRIMARY KEY) |
+----------+------------+-------------------------------------------------------------+
1 row in set (0.00 sec)

mysql> SHOW PROFILE FOR QUERY 1;
+----------------------+----------+
| Status               | Duration |
+----------------------+----------+
| starting             | 0.000071 |
| checking permissions | 0.000007 |
| Opening tables       | 0.001698 |
| System lock          | 0.000043 |
| creating table       | 0.007260 |
| After create         | 0.000004 |
| query end            | 0.000004 |
| closing tables       | 0.000015 |
| freeing items        | 0.000031 |
| logging slow query   | 0.000002 |
| cleaning up          | 0.000003 |
+----------------------+----------+
11 rows in set (0.00 sec)

1
@AdamMatan ไม่แน่ใจว่าคุณอ่านเอกสาร profiling แต่มีธงอื่น ๆ สำหรับการแสดงรายละเอียดของแบบสอบถามCPU, BLOCK IOฯลฯ ที่อาจช่วยให้คุณบนเวที 'สร้างตาราง'
Derek Downey
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.