使用特定的mysql索引和rails

mik*_*aby 12 ruby mysql activerecord ruby-on-rails

我有这个ActiveRecord查询

issue = Issue.find(id)
issue.articles.includes(:category).merge(Category.where(permalink: perma))
Run Code Online (Sandbox Code Playgroud)

并将其翻译成mysql查询

SELECT `articles`.`id` AS t0_r0, `articles`.`title` AS t0_r1, 
       `articles`.`hypertitle` AS t0_r2, `articles`.`html` AS t0_r3,
       `articles`.`author` AS t0_r4, `articles`.`published` AS t0_r5,
       `articles`.`category_id` AS t0_r6, `articles`.`issue_id` AS t0_r7,
       `articles`.`date` AS t0_r8, `articles`.`created_at` AS t0_r9, 
       `articles`.`updated_at` AS t0_r10, `articles`.`photo_file_name` AS t0_r11,
       `articles`.`photo_content_type` AS t0_r12, `articles`.`photo_file_size` AS t0_r13,
       `articles`.`photo_updated_at` AS t0_r14, `categories`.`id` AS t1_r0,
       `categories`.`name` AS t1_r1, `categories`.`permalink` AS t1_r2,
       `categories`.`created_at` AS t1_r3, `categories`.`updated_at` AS t1_r4,
       `categories`.`issued` AS t1_r5, `categories`.`order_articles` AS t1_r6 
        FROM `articles` LEFT OUTER JOIN `categories` ON 
       `categories`.`id` = `articles`.`category_id` WHERE 
       `articles`.`issue_id` = 409 AND `categories`.`permalink` = '??????' LIMIT 1
Run Code Online (Sandbox Code Playgroud)

在这个查询的解释中,我看到使用了错误的索引

+----+-------------+------------+-------+---------------------------------------------------------------------------+-------------------------------+---------+-------+------+----------+-------------+
| id | select_type | table      | type  | possible_keys                                                             | key                           | key_len | ref   | rows | filtered | Extra       |
+----+-------------+------------+-------+---------------------------------------------------------------------------+-------------------------------+---------+-------+------+----------+-------------+
|  1 | SIMPLE      | categories | const | PRIMARY,index_categories_on_permalink                                     | index_categories_on_permalink | 768     | const |    1 |   100.00 |             |
|  1 | SIMPLE      | articles   | ref   | index_articles_on_issue_id_and_category_id, index_articles_on_category_id | index_articles_on_category_id | 2       | const |   10 |   100.05 | Using where |
+----+-------------+------------+-------+---------------------------------------------------------------------------+-------------------------------+---------+-------+------+----------+-------------+
Run Code Online (Sandbox Code Playgroud)

我有两个索引,category_id单独和issue_id - category_id.

在此查询我与搜索issue_idcategory_id其使用时的速度要快得多index_articles_on_issue_id_and_category_idindex_articles_on_category_id.

如何使用活动记录查询选择正确的索引?

kri*_*ard 32

您可以像这样使用索引来促进使用索引:

 class Issue
   def self.use_index(index)
     # update: OP fixed my mistake
     from("#{self.table_name} USE INDEX(#{index})")
   end
 end

 # then
 Issue.use_index("bla").where(some_condition: true)
Run Code Online (Sandbox Code Playgroud)

  • 谢谢,它适用于litle fix`from("#{self.table_name} USE INDEX(#{index})") (2认同)

Jos*_*ter 5

添加。use_indexActiveRecord::Relation

关于将其添加到 Rails 核心的讨论已有多年,但是,PR 和分支似乎已被放弃。

如果您知道您正在使用的数据库及其限制,您可以轻松地将其添加到您自己的代码库中,以便可以使用它。

与 @krichard 的解决方案非常相似,除了对所有模型使用更通用,而不仅仅是Issue.

config/initializers/active_record_relation.rb

class ActiveRecord::Relation
  # Allow passing index hints to MySQL in case the query planner gets confused.
  #
  # Example:
  #   Message.first.events.use_index( :index_events_on_eventable_type_and_eventable_id )
  #   #=> Event Load (0.5ms)  SELECT `events`.* FROM `events` USE INDEX (index_events_on_eventable_type_and_eventable_id) WHERE `events`.`eventable_id` = 123 AND `events`.`eventable_type` = 'Message'
  #
  # MySQL documentation:
  #    https://dev.mysql.com/doc/refman/5.7/en/index-hints.html
  #
  # See https://github.com/rails/rails/pull/30514
  #
  def use_index( index_name )
    self.from( "#{ self.quoted_table_name } USE INDEX ( #{ index_name } )" )
  end
end
Run Code Online (Sandbox Code Playgroud)

这将允许您使用类似的东西:

issue.articles.includes( :category ).use_index( :index_articles_on_issue_id_and_category_id )
Run Code Online (Sandbox Code Playgroud)

生成的 SQL 将包括:

FROM articles USE INDEX( index_articles_on_issue_id_and_category_id )
Run Code Online (Sandbox Code Playgroud)