Change feed merge, unmerge and regeneration workers to use a replica (#25849)
This commit is contained in:
parent
610cf6c371
commit
a1f5188c8c
3 changed files with 23 additions and 4 deletions
|
@ -6,8 +6,13 @@ class RegenerationWorker
|
|||
sidekiq_options lock: :until_executed
|
||||
|
||||
def perform(account_id, _ = :home)
|
||||
account = Account.find(account_id)
|
||||
PrecomputeFeedService.new.call(account)
|
||||
ApplicationRecord.connected_to(role: :primary) do
|
||||
@account = Account.find(account_id)
|
||||
end
|
||||
|
||||
ApplicationRecord.connected_to(role: :read, prevent_writes: true) do
|
||||
PrecomputeFeedService.new.call(@account)
|
||||
end
|
||||
rescue ActiveRecord::RecordNotFound
|
||||
true
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue