I've added the account_id filter to the `get_agent_ids_over_assignment_limit` method. This optimization will help the query leverage the existing composite index `conv_acid_inbid_stat_asgnid_idx (account_id, inbox_id, status, assignee_id)` for better performance. **Before:** ```sql HashAggregate (cost=224238.12..224256.27 rows=484 width=4) Group Key: assignee_id Filter: (count(*) >= 10) -> Index Scan using index_conversations_on_inbox_id on conversations (cost=0.44..223963.67 rows=54891 width=4) Index Cond: (inbox_id = ???) Filter: (status = 0) ``` **After:** ```sql GroupAggregate (cost=0.44..5688.30 rows=476 width=4) Group Key: assignee_id Filter: (count(*) >= 10) -> Index Only Scan using conv_acid_inbid_stat_asgnid_idx on conversations (cost=0.44..5640.81 rows=5928 width=4) Index Cond: ((account_id = ??) AND (inbox_id = ??) AND (status = 0)) ```
41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
module Enterprise::Inbox
|
|
def member_ids_with_assignment_capacity
|
|
return super unless enable_auto_assignment?
|
|
|
|
max_assignment_limit = auto_assignment_config['max_assignment_limit']
|
|
overloaded_agent_ids = max_assignment_limit.present? ? get_agent_ids_over_assignment_limit(max_assignment_limit) : []
|
|
super - overloaded_agent_ids
|
|
end
|
|
|
|
def active_bot?
|
|
super || captain_active?
|
|
end
|
|
|
|
def captain_active?
|
|
captain_assistant.present? && more_responses?
|
|
end
|
|
|
|
private
|
|
|
|
def more_responses?
|
|
account.usage_limits[:captain][:responses][:current_available].positive?
|
|
end
|
|
|
|
def get_agent_ids_over_assignment_limit(limit)
|
|
conversations
|
|
.open
|
|
.where(account_id: account_id)
|
|
.select(:assignee_id)
|
|
.group(:assignee_id)
|
|
.having("count(*) >= #{limit.to_i}")
|
|
.filter_map(&:assignee_id)
|
|
end
|
|
|
|
def ensure_valid_max_assignment_limit
|
|
return if auto_assignment_config['max_assignment_limit'].blank?
|
|
return if auto_assignment_config['max_assignment_limit'].to_i.positive?
|
|
|
|
errors.add(:auto_assignment_config, 'max_assignment_limit must be greater than 0')
|
|
end
|
|
end
|