0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【MySQL】複合インデックスを貼ってみた

Posted at

はじめに

ある問題が発生し、100万件超のレコードを更新する羽目になりました。
更新バッチを作成し、動作検証したところ処理時間に問題があり、さてどうしたものかと5秒悩んだ結果、インデックスを貼れば早くなるんじゃね?と安易な考えに辿り着いたので、脳内検証を行なった後、複合インデックスを貼ってみました。
結果、劇的に速くなり、無事メンテナンス時間内に完了させることができたので、備忘として残しておきます。

複合インデックス追加

ALTER TABLE table_name ADD INDEX index_name (column_1, column_2, column_3, ...);

おわりに

複合インデックスを貼る際には、カーディナリテイが高いカラム順に指定しましょう。
因みにインデックスを貼る前後でどのくらい処理時間に差が出たかと言うと、インデックスを貼る前では数時間、インデックス貼った後では数分でした(・∀・)

おまけ(インデックス削除)

ALTER TABLE table_name DROP INDEX index_name;

参考

https://qiita.com/ichi_zamurai/items/a8e5e4a37faecf9cd77a

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?