ฉันมีฐานข้อมูลเดียวประมาณ 100 ตารางเพื่อจัดเก็บข้อมูลประเภทต่างๆ
ตารางที่สำคัญที่สุดคือตารางคำสั่งของเราซึ่งใช้ในการจัดเก็บคำสั่งซื้อของลูกค้าและมีมากกว่า 100,000 รายการ ณ ปัจจุบันและเพิ่มขึ้นเรื่อย ๆ
ตารางนี้เป็นตารางที่มีการสืบค้นมากที่สุดในฐานข้อมูลของเราสำหรับส่วนต่างๆของข้อมูลที่ต้องการจากแดชบอร์ดคำสั่งซื้อแบบเรียลไทม์สถิติการวิเคราะห์และอื่น ๆ
ฉันตรวจสอบฐานข้อมูลเป็นประจำและเปิดใช้งานแบบสอบถามช้าในฐานข้อมูลเพื่อติดตามปัญหา
ฉันใช้สคริปต์เช่น mysqltuner เพื่อคายแบบสอบถามออกทุกวัน
ฉันยังใช้ mysqlsla เพื่อรวบรวมข้อมูลเกี่ยวกับการสืบค้นที่ช้าที่สุด 10 อันดับแรกในฐานข้อมูลของเรา
sample stat
Count : 11.48k (30.66%)
Time : 19.623758 s total, 1.709 ms avg, 239 µs to 2.475017 s max (18.64%)
95% of Time : 5.246833 s total, 481 µs avg, 239 µs to 1.095 ms max
Lock Time (s) : 14.460071 s total, 1.259 ms avg, 53 µs to 2.462555 s max (41.38%)
95% of Lock : 806.43 ms total, 74 µs avg, 53 µs to 137 µs max
Rows sent : 1 avg, 0 to 9 max (0.99%)
Rows examined : 6 avg, 1 to 28 max (0.15%)
แบบสอบถามที่ช้าที่สุดส่วนใหญ่เกี่ยวข้องกับตารางคำสั่งซื้อที่กล่าวถึงข้างต้น ฉันใช้ MyISAM เป็นเครื่องมือจัดเก็บข้อมูลของฉันดังนั้นปัญหาที่อาจเกิดขึ้น:
- ล็อคโต๊ะ
- ปัญหาการจัดทำดัชนี
ฉันจะปรับปรุงสถิติเหล่านี้ได้อย่างไรฉันมีการจัดทำดัชนีสำหรับตารางเหล่านี้และปรับเปลี่ยนพวกเขาเพื่อปรับปรุงข้อความค้นหาที่อ่าน
สคีมาตาราง
`orderid` int(11) NOT NULL AUTO_INCREMENT,
`cityid` tinyint(3) unsigned NOT NULL DEFAULT '1',
`model_type` tinyint(1) unsigned DEFAULT '1',
`userid` int(11) DEFAULT NULL,
`usertype` char(1) DEFAULT NULL,
`time` time DEFAULT NULL,
`ordercode` char(8) DEFAULT NULL,
`restid` smallint(3) unsigned NOT NULL,
`areaid` smallint(3) unsigned DEFAULT NULL,
`restname` varchar(50) DEFAULT NULL,
`date` date NOT NULL,
`del_time` time NOT NULL,
`status` tinyint(3) unsigned NOT NULL,
`amount` float NOT NULL,
`deliverycharge` smallint(4) unsigned DEFAULT '0',
`tax` float NOT NULL,
`total` float NOT NULL,
`extras` varchar(255) DEFAULT NULL,
`requests` varchar(255) DEFAULT NULL,
`discount` float DEFAULT NULL,
`rdiscount` float DEFAULT NULL,
`reason` varchar(255) DEFAULT NULL,
`rest_order` tinyint(1) unsigned DEFAULT NULL,
`admin_user` varchar(25) DEFAULT NULL,
`mode` char(1) NOT NULL,
`priority_order` tinyint(1) unsigned DEFAULT '0',
`payment_mode` tinyint(1) unsigned DEFAULT '0',
`km` tinyint(3) unsigned DEFAULT NULL,
`order_type` tinyint(1) NOT NULL DEFAULT '1',
`coupon_discount` smallint(3) DEFAULT '0',
`pickup_time` time NOT NULL,
PRIMARY KEY (`orderid`),
KEY `cityid` (`cityid`),
KEY `date_3` (`date`,`status`,`mode`),
KEY `orderid` (`orderid`),
KEY `time` (`time`),
KEY `userid` (`userid`,`usertype`),
KEY `restid` (`restid`,`date`,`status`)
แบบสอบถามบันทึกช้า
SELECT `a`.`orderid`, `a`.`date`, `a`.`status`, `a`.`restname`, `a`.`admin_user`, `a`.`model_type`, `b`.`name` as cityname
FROM `tk_order_queue` AS a
INNER JOIN `tk_cities` AS b ON `a`.`cityid` = `b`.`id`
WHERE `a`.`date` = '2012-06-30'
AND `a`.`status` = 0
AND `a`.`mode` = 1
ORDER BY `a`.`orderid` desc;
SHOW CREATE TABLE orders\G
และโพสต์ในคำถาม