Module: SwitchmanInstJobs::Delayed::Pool

Defined in:
lib/switchman_inst_jobs/delayed/pool.rb

Instance Method Summary collapse

Instance Method Details

#unlock_orphaned_jobs(worker = nil, pid = nil) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/switchman_inst_jobs/delayed/pool.rb', line 4

def unlock_orphaned_jobs(worker = nil, pid = nil)
  if worker
    shards = [worker.shard]
  else
    # Since we're not unlocking for a specific worker, look through
    # the config for all shards this pool has workers for, and unlock
    # on each shard found.
    #
    # If this host used to have workers for shard X, and then it died
    # ungracefully at the same time that all workers for shard X were
    # removed, we won't properly unlock those jobs here. That's an
    # acceptable edge case though.
    #
    # We purposely don't .compact to remove nils here, since if any
    # workers are on the default jobs shard we want to unlock against
    # that shard too.
    shard_ids = @config[:workers].pluck(:shard).uniq
    shards = shard_ids.map { |shard_id| ::Delayed::Worker.shard(shard_id) }
  end
  ::Switchman::Shard.with_each_shard(shards, [:delayed_jobs]) do
    super
  end
end