两个相似查询的巨大速度差异(MySQL ORDER 子句)

Posted

技术标签:

【中文标题】两个相似查询的巨大速度差异(MySQL ORDER 子句)【英文标题】:Huge speed difference in two similar queries (MySQL ORDER clause) 【发布时间】:2018-12-02 20:51:47 【问题描述】:

重要更新(说明): 我意识到我的具有单个 DESC 顺序的查询比具有 ASC 顺序的相同查询慢 10 倍。有序字段有一个索引。这是正常行为吗?

原始问题:

我有一个包含几百个产品项目的 mysql 表。令人惊讶的是(对我来说)2 个类似的 sql 查询在性能方面有何不同。我不知道为什么。您能否给我一个提示或解释为什么差异如此之大?

此查询需要 3 毫秒:

SELECT
    *
FROM
    `product_items`
WHERE
    (product_items.shop_active = 1)
    AND (product_items.active = 1)
    AND (product_items.active_category_id is not null)
    AND (has_picture is not null)
    AND (price_orig is not null)
    AND (category_min_discount IS NOT NULL)
    AND (product_items.slug is not null)
    AND `product_items`.`active_category_id` IN (6797, 5926, 5806, 6852)
ORDER BY
    price asc
LIMIT 1

但是下面的查询已经花费了 169 毫秒... 唯一的区别是 order 子句包含 2 列。 “价格”值包含每个产品,而“价格顶部”大约只有 1% 的产品。

SELECT
    *
FROM
    `product_items`
WHERE
    (product_items.shop_active = 1)
    AND (product_items.active = 1)
    AND (product_items.active_category_id is not null)
    AND (has_picture is not null)
    AND (price_orig is not null)
    AND (category_min_discount IS NOT NULL)
    AND (product_items.slug is not null)
    AND `product_items`.`active_category_id` IN (6797, 5926, 5806, 6852)
ORDER BY
    price asc,
    price_top desc
LIMIT 1

表结构如下:

CREATE TABLE `product_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `shop_id` int(11) DEFAULT NULL,
  `item_id` varchar(255) DEFAULT NULL,
  `productname` varchar(255) DEFAULT NULL,
  `description` text,
  `url` text,
  `url_hash` varchar(255) DEFAULT NULL,
  `img_url` text,
  `price` decimal(10,2) DEFAULT NULL,
  `price_orig` decimal(10,2) DEFAULT NULL,
  `discount` decimal(10,2) DEFAULT NULL,
  `discount_percent` decimal(10,2) DEFAULT NULL,
  `manufacturer` varchar(255) DEFAULT NULL,
  `delivery_date` varchar(255) DEFAULT NULL,
  `categorytext` text,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  `active_category_id` int(11) DEFAULT NULL,
  `shop_active` int(11) DEFAULT NULL,
  `active` int(11) DEFAULT '0',
  `price_top` decimal(10,2) NOT NULL DEFAULT '0.00',
  `attention_priority` int(11) DEFAULT NULL,
  `attention_priority_over` int(11) DEFAULT NULL,
  `has_picture` varchar(255) DEFAULT NULL,
  `size` varchar(255) DEFAULT NULL,
  `category_min_discount` int(11) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `index_product_items_on_url_hash` (`url_hash`),
  KEY `index_product_items_on_shop_id` (`shop_id`),
  KEY `index_product_items_on_active_category_id` (`active_category_id`),
  KEY `index_product_items_on_productname` (`productname`),
  KEY `index_product_items_on_price` (`price`),
  KEY `index_product_items_on_discount_percent` (`discount_percent`),
  KEY `index_product_items_on_price_top` (`price_top`)
) ENGINE=InnoDB AUTO_INCREMENT=1715708 DEFAULT CHARSET=utf8;

更新 我意识到不同之处主要在于排序的类型:如果我对两列都使用 asc+asc,查询大约需要 6ms,如果我使用 asc+desc 或 desc+asc,查询大约需要 160ms..

谢谢。

【问题讨论】:

发布查询计划,m 为每个,如果没有它,我们将无法做任何事情 @CaiusJard .. 你加薪了吗??? :).. 【参考方案1】:

如果创建索引来帮助 ORDER BY 没有帮助,请尝试创建一个同时帮助 WHERE 和 ORDER BY 的索引:

CREATE INDEX product_items_i1 ON product_items (
    shop_active,
    active,
    active_category_id,
    has_picture,
    price_orig,
    category_min_discount,
    slug,
    price,
    price_top DESC
)

显然,这有点笨拙,您必须在查询的性能增益与维护索引的代价之间取得平衡。

【讨论】:

以上是关于两个相似查询的巨大速度差异(MySQL ORDER 子句)的主要内容,如果未能解决你的问题,请参考以下文章

mysql查询性能问题,加了order by速度慢了

你知道MySQL与MariaDB对子查询中order by的处理的差异吗?

MySQL:ORDER BY 显着降低查询速度

mysql order by排序查询速度问题

MySQL ORDER BY 子句将查询速度降低 4 倍

添加 Limit 可以加快 mysql 查询速度,为啥?