約 100 万件のレコード ( ~350MB ) を持つ MySQL テーブルで次のクエリを実行しています。毎回約1.5秒かかります。比較を削除するOR last_updated > last_geocoded
と、クエリ時間は 1 桁改善され、100 ミリ秒未満になります。行を削除するlast_geocoded = 0
と、クエリ時間は約 1.5 秒のままです。
SELECT id, company_id, raw_address
FROM locations
WHERE
raw_address IS NOT NULL
AND (
last_geocoded = 0
OR last_updated > last_geocoded
)
LIMIT 25
クエリをちょうどに減らすとWHERE last_updated > last_geocoded
、クエリ時間は 100 ミリ秒未満になります。
SELECT id, company_id, raw_address
FROM locations
WHERE last_updated > last_geocoded
LIMIT 25
元のクエリを高速化するにはどうすればよいですか? その WHERE ステートメントがクエリの速度を大幅に低下させるのはなぜですか?
以下は、私のキーを示すテーブル スキーマです。
CREATE TABLE `locations` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`company_id` int(11) unsigned DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`description` text,
`raw_address` varchar(255) DEFAULT NULL,
`street` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`city_code` varchar(255) DEFAULT NULL,
`county` varchar(255) DEFAULT NULL,
`county_code` varchar(255) DEFAULT NULL,
`state` varchar(255) DEFAULT NULL,
`state_code` varchar(255) DEFAULT NULL,
`country` varchar(255) DEFAULT NULL,
`country_code` varchar(255) DEFAULT NULL,
`constituency` varchar(255) DEFAULT NULL,
`constituency_code` varchar(255) DEFAULT NULL,
`postal_code` int(5) unsigned zerofill DEFAULT NULL,
`lat` float(10,6) DEFAULT NULL,
`lon` float(10,6) DEFAULT NULL,
`headquarters` tinyint(1) unsigned DEFAULT NULL,
`research_and_development` tinyint(1) unsigned DEFAULT NULL,
`manufacturing` tinyint(1) unsigned DEFAULT NULL,
`distribution` tinyint(1) unsigned DEFAULT NULL,
`sales` tinyint(1) unsigned DEFAULT NULL,
`retail` tinyint(1) unsigned DEFAULT NULL,
`source_id` int(11) unsigned DEFAULT NULL,
`last_updated` datetime NOT NULL,
`last_geocoded` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `company_id` (`company_id`),
KEY `raw_address` (`raw_address`),
KEY `last_updated` (`last_updated`),
KEY `last_geocoded` (`last_geocoded`),
KEY `city` (`city`),
KEY `county` (`county`),
KEY `state` (`state`),
KEY `country` (`country`),
KEY `postal_code` (`postal_code`)
) ENGINE=InnoDB AUTO_INCREMENT=997680 DEFAULT CHARSET=latin1;
以下は、で実行される元のクエリEXPLAIN
です。
"id","select_type","table","type","possible_keys","key","key_len","ref","rows","Extra"
1,"SIMPLE","locations","range","raw_address,last_geocoded","raw_address",258,NULL,509543,"Using where"