perf: Add database index on conversations identifier (#12715)
**Problem** Slack webhook processing was failing with 500 errors due to database timeouts. The query `Conversation.where(identifier: params[:event][:thread_ts]).first` was performing full table scans and hitting PostgreSQL statement timeout. **Solution** Added database index on conversations.identifier and account_id.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class AddIndexToConversationsIdentifier < ActiveRecord::Migration[7.1]
|
||||
disable_ddl_transaction!
|
||||
def change
|
||||
add_index :conversations, [:identifier, :account_id], name: 'index_conversations_on_identifier_and_account_id', algorithm: :concurrently
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user