Module: Sidekiq::Util

Includes:
ExceptionHandler
Included in:
CLI, Launcher, Manager, Middleware::Server::RetryJobs, Processor, Scheduled::Poller
Defined in:
lib/sidekiq/util.rb

Overview

This module is part of Sidekiq core and not intended for extensions.

Constant Summary collapse

EXPIRY =
60 * 60 * 24

Instance Method Summary collapse

Methods included from ExceptionHandler

#handle_exception

Instance Method Details

#fire_event(event, reverse = false) ⇒ Object



50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/sidekiq/util.rb', line 50

def fire_event(event, reverse=false)
  arr = Sidekiq.options[:lifecycle_events][event]
  arr.reverse! if reverse
  arr.each do |block|
    begin
      block.call
    rescue => ex
      handle_exception(ex, { context: "Exception during Sidekiq lifecycle event.", event: event })
    end
  end
  arr.clear
end

#hostnameObject



38
39
40
# File 'lib/sidekiq/util.rb', line 38

def hostname
  ENV['DYNO'] || Socket.gethostname
end

#identityObject



46
47
48
# File 'lib/sidekiq/util.rb', line 46

def identity
  @@identity ||= "#{hostname}:#{$$}:#{process_nonce}"
end

#loggerObject



30
31
32
# File 'lib/sidekiq/util.rb', line 30

def logger
  Sidekiq.logger
end

#process_nonceObject



42
43
44
# File 'lib/sidekiq/util.rb', line 42

def process_nonce
  @@process_nonce ||= SecureRandom.hex(6)
end

#redis(&block) ⇒ Object



34
35
36
# File 'lib/sidekiq/util.rb', line 34

def redis(&block)
  Sidekiq.redis(&block)
end

#safe_thread(name, &block) ⇒ Object



23
24
25
26
27
28
# File 'lib/sidekiq/util.rb', line 23

def safe_thread(name, &block)
  Thread.new do
    Thread.current['sidekiq_label'] = name
    watchdog(name, &block)
  end
end

#watchdog(last_words) ⇒ Object



16
17
18
19
20
21
# File 'lib/sidekiq/util.rb', line 16

def watchdog(last_words)
  yield
rescue Exception => ex
  handle_exception(ex, { context: last_words })
  raise ex
end