2016-11-22 23:39:00 -05:00
# frozen_string_literal: true
2018-12-03 16:24:37 -05:00
2012-01-22 19:01:46 -05:00
require 'sidekiq/version'
2018-12-28 13:07:03 -05:00
fail " Sidekiq #{ Sidekiq :: VERSION } does not support Ruby versions below 2.4.0. " if RUBY_PLATFORM != 'java' && Gem :: Version . new ( RUBY_VERSION ) < Gem :: Version . new ( '2.4.0' )
2014-07-10 09:49:21 -04:00
2012-05-15 22:44:35 -04:00
require 'sidekiq/logging'
2012-01-22 19:01:46 -05:00
require 'sidekiq/client'
2012-01-25 16:32:51 -05:00
require 'sidekiq/worker'
2012-02-18 15:12:05 -05:00
require 'sidekiq/redis_connection'
2017-01-04 13:30:42 -05:00
require 'sidekiq/delay'
2012-02-17 16:39:36 -05:00
2013-05-12 17:33:49 -04:00
require 'json'
2012-05-25 23:21:42 -04:00
2012-02-17 16:39:36 -05:00
module Sidekiq
2018-02-16 16:01:25 -05:00
NAME = 'Sidekiq'
2012-09-03 14:34:07 -04:00
LICENSE = 'See LICENSE and the LGPL-3.0 for licensing details.'
2012-02-18 15:12:05 -05:00
2012-02-19 16:02:32 -05:00
DEFAULTS = {
2014-12-17 15:08:43 -05:00
queues : [ ] ,
labels : [ ] ,
2018-07-20 13:54:31 -04:00
concurrency : 10 ,
2014-12-17 15:08:43 -05:00
require : '.' ,
environment : nil ,
2018-09-17 14:49:01 -04:00
timeout : 25 ,
2015-04-24 11:35:47 -04:00
poll_interval_average : nil ,
2018-01-26 15:17:46 -05:00
average_scheduled_poll_interval : 5 ,
2014-12-17 15:08:43 -05:00
error_handlers : [ ] ,
2018-01-31 13:22:22 -05:00
death_handlers : [ ] ,
2014-12-17 15:08:43 -05:00
lifecycle_events : {
startup : [ ] ,
quiet : [ ] ,
shutdown : [ ] ,
2016-08-12 15:34:41 -04:00
heartbeat : [ ] ,
2015-02-04 15:33:49 -05:00
} ,
dead_max_jobs : 10_000 ,
2016-02-01 18:59:20 -05:00
dead_timeout_in_seconds : 180 * 24 * 60 * 60 , # 6 months
reloader : proc { | & block | block . call } ,
2012-02-19 16:02:32 -05:00
}
2015-04-04 20:17:13 -04:00
DEFAULT_WORKER_OPTIONS = {
'retry' = > true ,
'queue' = > 'default'
}
2016-02-25 18:18:46 -05:00
FAKE_INFO = {
" redis_version " = > " 9.9.9 " ,
" uptime_in_days " = > " 9999 " ,
" connected_clients " = > " 9999 " ,
" used_memory_human " = > " 9P " ,
" used_memory_peak_human " = > " 9P "
2018-02-16 16:01:25 -05:00
}
2016-02-25 18:18:46 -05:00
2013-03-19 18:54:55 -04:00
def self . ❨ ╯ ° □ ° ❩ ╯ ︵ ┻ ━ ┻
2015-04-21 13:06:41 -04:00
puts " Calm down, yo. "
2013-02-08 15:42:06 -05:00
end
2012-02-19 16:02:32 -05:00
def self . options
@options || = DEFAULTS . dup
end
2018-12-03 16:24:37 -05:00
2012-02-19 16:02:32 -05:00
def self . options = ( opts )
@options = opts
end
##
2012-02-20 12:46:28 -05:00
# Configuration for Sidekiq server, use like:
2012-02-19 16:02:32 -05:00
#
2012-02-20 12:46:28 -05:00
# Sidekiq.configure_server do |config|
2013-04-18 12:11:49 -04:00
# config.redis = { :namespace => 'myapp', :size => 25, :url => 'redis://myhost:8877/0' }
2012-02-19 16:02:32 -05:00
# config.server_middleware do |chain|
# chain.add MyServerHook
# end
# end
2012-02-20 12:46:28 -05:00
def self . configure_server
yield self if server?
end
##
# Configuration for Sidekiq client, use like:
#
# Sidekiq.configure_client do |config|
2013-04-18 12:11:49 -04:00
# config.redis = { :namespace => 'myapp', :size => 1, :url => 'redis://myhost:8877/0' }
2012-02-20 12:46:28 -05:00
# end
def self . configure_client
yield self unless server?
end
def self . server?
defined? ( Sidekiq :: CLI )
2012-02-19 16:02:32 -05:00
end
2015-09-11 13:55:45 -04:00
def self . redis
raise ArgumentError , " requires a block " unless block_given?
redis_pool . with do | conn |
retryable = true
begin
yield conn
rescue Redis :: CommandError = > ex
2018-12-28 13:07:03 -05:00
#2550 Failover can cause the server to become a replica, need
# to disconnect and reopen the socket to get back to the primary.
2015-09-11 13:55:45 -04:00
( conn . disconnect! ; retryable = false ; retry ) if retryable && ex . message =~ / READONLY /
raise
end
end
2014-03-24 13:20:16 -04:00
end
2016-02-25 17:29:41 -05:00
def self . redis_info
redis do | conn |
2016-02-25 18:18:46 -05:00
begin
# admin commands can't go through redis-namespace starting
# in redis-namespace 2.0
if conn . respond_to? ( :namespace )
conn . redis . info
else
conn . info
end
rescue Redis :: CommandError = > ex
#2850 return fake version when INFO command has (probably) been renamed
raise unless ex . message =~ / unknown command /
FAKE_INFO
2016-02-25 17:29:41 -05:00
end
end
end
2014-03-24 13:56:31 -04:00
def self . redis_pool
2014-03-14 00:06:39 -04:00
@redis || = Sidekiq :: RedisConnection . create
2012-02-17 16:51:46 -05:00
end
2012-02-18 15:12:05 -05:00
2012-03-01 16:41:12 -05:00
def self . redis = ( hash )
2014-03-14 00:06:39 -04:00
@redis = if hash . is_a? ( ConnectionPool )
hash
2012-04-09 11:56:34 -04:00
else
2014-03-14 00:06:39 -04:00
Sidekiq :: RedisConnection . create ( hash )
2012-03-01 16:41:12 -05:00
end
2012-02-17 16:39:36 -05:00
end
2012-02-18 15:12:05 -05:00
2013-10-24 00:58:15 -04:00
def self . client_middleware
2013-10-24 00:47:57 -04:00
@client_chain || = Middleware :: Chain . new
2012-02-18 15:12:05 -05:00
yield @client_chain if block_given?
@client_chain
end
def self . server_middleware
2015-10-07 12:40:15 -04:00
@server_chain || = default_server_middleware
2012-02-18 15:12:05 -05:00
yield @server_chain if block_given?
@server_chain
end
2015-10-07 12:40:15 -04:00
def self . default_server_middleware
2017-01-17 17:58:08 -05:00
Middleware :: Chain . new
2015-10-07 12:40:15 -04:00
end
2013-09-07 12:54:13 -04:00
def self . default_worker_options = ( hash )
2017-05-13 01:03:32 -04:00
# stringify
2017-05-15 17:50:23 -04:00
@default_worker_options = default_worker_options . merge ( Hash [ hash . map { | k , v | [ k . to_s , v ] } ] )
2013-09-07 12:54:13 -04:00
end
def self . default_worker_options
2015-04-04 20:17:13 -04:00
defined? ( @default_worker_options ) ? @default_worker_options : DEFAULT_WORKER_OPTIONS
2013-09-07 12:54:13 -04:00
end
2018-01-12 17:13:45 -05:00
##
2018-01-31 13:22:22 -05:00
# Death handlers are called when all retries for a job have been exhausted and
# the job dies. It's the notification to your application
# that this job will not succeed without manual intervention.
2018-01-12 17:13:45 -05:00
#
2016-02-04 13:28:26 -05:00
# Sidekiq.configure_server do |config|
2018-01-31 13:22:22 -05:00
# config.death_handlers << ->(job, ex) do
2016-02-04 13:28:26 -05:00
# end
# end
2018-01-31 13:22:22 -05:00
def self . death_handlers
options [ :death_handlers ]
2016-02-04 13:28:26 -05:00
end
2012-04-22 22:22:09 -04:00
def self . load_json ( string )
2013-05-12 17:33:49 -04:00
JSON . parse ( string )
2012-04-22 17:02:35 -04:00
end
2012-04-22 22:22:09 -04:00
def self . dump_json ( object )
2013-05-12 17:33:49 -04:00
JSON . generate ( object )
2012-04-22 17:02:35 -04:00
end
2012-05-15 22:44:35 -04:00
def self . logger
Sidekiq :: Logging . logger
end
2012-06-26 12:01:54 -04:00
def self . logger = ( log )
Sidekiq :: Logging . logger = log
end
2015-05-04 13:38:10 -04:00
# How frequently Redis should be checked by a random Sidekiq process for
# scheduled and retriable jobs. Each individual process will take turns by
# waiting some multiple of this value.
#
# See sidekiq/scheduled.rb for an in-depth explanation of this value
def self . average_scheduled_poll_interval = ( interval )
self . options [ :average_scheduled_poll_interval ] = interval
end
2014-03-23 18:44:37 -04:00
# Register a proc to handle any error which occurs within the Sidekiq process.
#
# Sidekiq.configure_server do |config|
2015-06-10 16:09:16 -04:00
# config.error_handlers << proc {|ex,ctx_hash| MyErrorService.notify(ex, ctx_hash) }
2014-03-23 18:44:37 -04:00
# end
#
# The default error handler logs errors to Sidekiq.logger.
2014-02-24 23:47:44 -05:00
def self . error_handlers
self . options [ :error_handlers ]
end
2014-03-23 18:44:37 -04:00
# Register a block to run at a point in the Sidekiq lifecycle.
# :startup, :quiet or :shutdown are valid events.
#
# Sidekiq.configure_server do |config|
# config.on(:shutdown) do
# puts "Goodbye cruel world!"
# end
# end
2014-03-10 23:46:19 -04:00
def self . on ( event , & block )
2014-07-10 09:49:21 -04:00
raise ArgumentError , " Symbols only please: #{ event } " unless event . is_a? ( Symbol )
2014-12-17 15:08:43 -05:00
raise ArgumentError , " Invalid event name: #{ event } " unless options [ :lifecycle_events ] . key? ( event )
2014-03-10 23:46:19 -04:00
options [ :lifecycle_events ] [ event ] << block
end
2015-10-10 01:21:39 -04:00
# We are shutting down Sidekiq but what about workers that
# are working on some long job? This error is
# raised in workers that have not finished within the hard
# timeout limit. This is needed to rollback db transactions,
# otherwise Ruby's Thread#kill will commit. See #377.
# DO NOT RESCUE THIS ERROR IN YOUR WORKERS
class Shutdown < Interrupt ; end
2012-02-17 16:39:36 -05:00
end
2013-04-18 12:11:49 -04:00
require 'sidekiq/rails' if defined? ( :: Rails :: Engine )