Module: Sidekiq::Util

Includes:
ExceptionHandler
Included in:
CLI, JobRetry, Launcher, Manager, 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, options = {}) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/sidekiq/util.rb', line 54

def fire_event(event, options = {})
  reverse = options[:reverse]
  reraise = options[:reraise]

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

#hostnameObject



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

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

#identityObject



50
51
52
# File 'lib/sidekiq/util.rb', line 50

def identity
  @@identity ||= "#{hostname}:#{::Process.pid}:#{process_nonce}"
end

#loggerObject



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

def logger
  Sidekiq.logger
end

#process_nonceObject



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

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.name = name
    watchdog(name, &block)
  end
end

#tidObject



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

def tid
  Thread.current["sidekiq_tid"] ||= (Thread.current.object_id ^ ::Process.pid).to_s(36)
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