discourse/db/migrate/20250619140739_add_index_to_posts.rb
Amanda Alves Branquinho ca36d98d55
PERF: Add indexes to improve user merger performance (#33271)
- Add indexes in some places where we were seeing bottlenecks
- Remove redundant ILIKE query

---------

Co-authored-by: Gerhard Schlager <gerhard.schlager@discourse.org>
2025-07-10 18:18:40 -03:00

56 lines
1.4 KiB
Ruby

# frozen_string_literal: true
class AddIndexToPosts < ActiveRecord::Migration[7.2]
disable_ddl_transaction!
def up
execute <<~SQL
DROP INDEX CONCURRENTLY IF EXISTS index_posts_on_deleted_by_id
SQL
execute <<~SQL
CREATE INDEX CONCURRENTLY index_posts_on_deleted_by_id ON posts(deleted_by_id) WHERE deleted_by_id IS NOT NULL
SQL
execute <<~SQL
DROP INDEX CONCURRENTLY IF EXISTS index_posts_on_last_editor_id
SQL
execute <<~SQL
CREATE INDEX CONCURRENTLY index_posts_on_last_editor_id ON posts(last_editor_id) WHERE last_editor_id IS NOT NULL
SQL
execute <<~SQL
DROP INDEX CONCURRENTLY IF EXISTS index_posts_on_locked_by_id
SQL
execute <<~SQL
CREATE INDEX CONCURRENTLY index_posts_on_locked_by_id ON posts(locked_by_id) WHERE locked_by_id IS NOT NULL
SQL
execute <<~SQL
DROP INDEX CONCURRENTLY IF EXISTS index_posts_on_reply_to_user_id
SQL
execute <<~SQL
CREATE INDEX CONCURRENTLY index_posts_on_reply_to_user_id ON posts(reply_to_user_id) WHERE reply_to_user_id IS NOT NULL
SQL
end
def down
execute <<~SQL
DROP INDEX IF EXISTS index_posts_on_deleted_by_id
SQL
execute <<~SQL
DROP INDEX IF EXISTS index_posts_on_last_editor_id
SQL
execute <<~SQL
DROP INDEX IF EXISTS index_posts_on_locked_by_id
SQL
execute <<~SQL
DROP INDEX IF EXISTS index_posts_on_reply_to_user_id
SQL
end
end