sidekiq 5.1.3 → 7.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Changes.md +756 -8
- data/LICENSE.txt +9 -0
- data/README.md +48 -51
- data/bin/multi_queue_bench +271 -0
- data/bin/sidekiq +22 -3
- data/bin/sidekiqload +213 -115
- data/bin/sidekiqmon +11 -0
- data/lib/generators/sidekiq/job_generator.rb +59 -0
- data/lib/generators/sidekiq/templates/{worker.rb.erb → job.rb.erb} +2 -2
- data/lib/generators/sidekiq/templates/{worker_spec.rb.erb → job_spec.rb.erb} +1 -1
- data/lib/generators/sidekiq/templates/{worker_test.rb.erb → job_test.rb.erb} +1 -1
- data/lib/sidekiq/api.rb +640 -330
- data/lib/sidekiq/capsule.rb +132 -0
- data/lib/sidekiq/cli.rb +244 -257
- data/lib/sidekiq/client.rb +132 -103
- data/lib/sidekiq/component.rb +68 -0
- data/lib/sidekiq/config.rb +293 -0
- data/lib/sidekiq/deploy.rb +64 -0
- data/lib/sidekiq/embedded.rb +63 -0
- data/lib/sidekiq/fetch.rb +49 -42
- data/lib/sidekiq/iterable_job.rb +55 -0
- data/lib/sidekiq/job/interrupt_handler.rb +24 -0
- data/lib/sidekiq/job/iterable/active_record_enumerator.rb +53 -0
- data/lib/sidekiq/job/iterable/csv_enumerator.rb +47 -0
- data/lib/sidekiq/job/iterable/enumerators.rb +135 -0
- data/lib/sidekiq/job/iterable.rb +231 -0
- data/lib/sidekiq/job.rb +385 -0
- data/lib/sidekiq/job_logger.rb +49 -12
- data/lib/sidekiq/job_retry.rb +167 -103
- data/lib/sidekiq/job_util.rb +109 -0
- data/lib/sidekiq/launcher.rb +209 -102
- data/lib/sidekiq/logger.rb +131 -0
- data/lib/sidekiq/manager.rb +43 -46
- data/lib/sidekiq/metrics/query.rb +158 -0
- data/lib/sidekiq/metrics/shared.rb +97 -0
- data/lib/sidekiq/metrics/tracking.rb +148 -0
- data/lib/sidekiq/middleware/chain.rb +113 -56
- data/lib/sidekiq/middleware/current_attributes.rb +113 -0
- data/lib/sidekiq/middleware/i18n.rb +7 -7
- data/lib/sidekiq/middleware/modules.rb +23 -0
- data/lib/sidekiq/monitor.rb +147 -0
- data/lib/sidekiq/paginator.rb +28 -16
- data/lib/sidekiq/processor.rb +175 -112
- data/lib/sidekiq/rails.rb +54 -39
- data/lib/sidekiq/redis_client_adapter.rb +114 -0
- data/lib/sidekiq/redis_connection.rb +65 -86
- data/lib/sidekiq/ring_buffer.rb +31 -0
- data/lib/sidekiq/scheduled.rb +139 -48
- data/lib/sidekiq/sd_notify.rb +149 -0
- data/lib/sidekiq/systemd.rb +26 -0
- data/lib/sidekiq/testing/inline.rb +6 -5
- data/lib/sidekiq/testing.rb +95 -94
- data/lib/sidekiq/transaction_aware_client.rb +51 -0
- data/lib/sidekiq/version.rb +3 -1
- data/lib/sidekiq/web/action.rb +22 -12
- data/lib/sidekiq/web/application.rb +225 -76
- data/lib/sidekiq/web/csrf_protection.rb +183 -0
- data/lib/sidekiq/web/helpers.rb +215 -118
- data/lib/sidekiq/web/router.rb +23 -19
- data/lib/sidekiq/web.rb +114 -106
- data/lib/sidekiq/worker_compatibility_alias.rb +13 -0
- data/lib/sidekiq.rb +95 -182
- data/sidekiq.gemspec +26 -23
- data/web/assets/images/apple-touch-icon.png +0 -0
- data/web/assets/javascripts/application.js +157 -61
- data/web/assets/javascripts/base-charts.js +106 -0
- data/web/assets/javascripts/chart.min.js +13 -0
- data/web/assets/javascripts/chartjs-plugin-annotation.min.js +7 -0
- data/web/assets/javascripts/dashboard-charts.js +192 -0
- data/web/assets/javascripts/dashboard.js +35 -283
- data/web/assets/javascripts/metrics.js +298 -0
- data/web/assets/stylesheets/application-dark.css +147 -0
- data/web/assets/stylesheets/application-rtl.css +10 -93
- data/web/assets/stylesheets/application.css +169 -522
- data/web/assets/stylesheets/bootstrap.css +2 -2
- data/web/locales/ar.yml +71 -64
- data/web/locales/cs.yml +62 -62
- data/web/locales/da.yml +60 -53
- data/web/locales/de.yml +65 -53
- data/web/locales/el.yml +43 -24
- data/web/locales/en.yml +86 -65
- data/web/locales/es.yml +70 -54
- data/web/locales/fa.yml +65 -65
- data/web/locales/fr.yml +83 -62
- data/web/locales/gd.yml +99 -0
- data/web/locales/he.yml +65 -64
- data/web/locales/hi.yml +59 -59
- data/web/locales/it.yml +53 -53
- data/web/locales/ja.yml +75 -64
- data/web/locales/ko.yml +52 -52
- data/web/locales/lt.yml +83 -0
- data/web/locales/nb.yml +61 -61
- data/web/locales/nl.yml +52 -52
- data/web/locales/pl.yml +45 -45
- data/web/locales/pt-br.yml +83 -55
- data/web/locales/pt.yml +51 -51
- data/web/locales/ru.yml +68 -63
- data/web/locales/sv.yml +53 -53
- data/web/locales/ta.yml +60 -60
- data/web/locales/tr.yml +101 -0
- data/web/locales/uk.yml +62 -61
- data/web/locales/ur.yml +64 -64
- data/web/locales/vi.yml +83 -0
- data/web/locales/zh-cn.yml +43 -16
- data/web/locales/zh-tw.yml +42 -8
- data/web/views/_footer.erb +18 -3
- data/web/views/_job_info.erb +21 -4
- data/web/views/_metrics_period_select.erb +12 -0
- data/web/views/_nav.erb +4 -18
- data/web/views/_paging.erb +2 -0
- data/web/views/_poll_link.erb +3 -6
- data/web/views/_summary.erb +7 -7
- data/web/views/busy.erb +79 -29
- data/web/views/dashboard.erb +49 -19
- data/web/views/dead.erb +3 -3
- data/web/views/filtering.erb +7 -0
- data/web/views/layout.erb +9 -7
- data/web/views/metrics.erb +91 -0
- data/web/views/metrics_for_job.erb +59 -0
- data/web/views/morgue.erb +14 -15
- data/web/views/queue.erb +33 -23
- data/web/views/queues.erb +19 -5
- data/web/views/retries.erb +19 -16
- data/web/views/retry.erb +3 -3
- data/web/views/scheduled.erb +17 -15
- metadata +84 -129
- data/.github/contributing.md +0 -32
- data/.github/issue_template.md +0 -11
- data/.gitignore +0 -13
- data/.travis.yml +0 -14
- data/3.0-Upgrade.md +0 -70
- data/4.0-Upgrade.md +0 -53
- data/5.0-Upgrade.md +0 -56
- data/COMM-LICENSE +0 -95
- data/Ent-Changes.md +0 -216
- data/Gemfile +0 -8
- data/LICENSE +0 -9
- data/Pro-2.0-Upgrade.md +0 -138
- data/Pro-3.0-Upgrade.md +0 -44
- data/Pro-4.0-Upgrade.md +0 -35
- data/Pro-Changes.md +0 -729
- data/Rakefile +0 -8
- data/bin/sidekiqctl +0 -99
- data/code_of_conduct.md +0 -50
- data/lib/generators/sidekiq/worker_generator.rb +0 -49
- data/lib/sidekiq/core_ext.rb +0 -1
- data/lib/sidekiq/delay.rb +0 -42
- data/lib/sidekiq/exception_handler.rb +0 -29
- data/lib/sidekiq/extensions/action_mailer.rb +0 -57
- data/lib/sidekiq/extensions/active_record.rb +0 -40
- data/lib/sidekiq/extensions/class_methods.rb +0 -40
- data/lib/sidekiq/extensions/generic_proxy.rb +0 -31
- data/lib/sidekiq/logging.rb +0 -122
- data/lib/sidekiq/middleware/server/active_record.rb +0 -23
- data/lib/sidekiq/util.rb +0 -66
- data/lib/sidekiq/worker.rb +0 -204
@@ -0,0 +1,132 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "sidekiq/component"
|
4
|
+
|
5
|
+
module Sidekiq
|
6
|
+
# A Sidekiq::Capsule is the set of resources necessary to
|
7
|
+
# process one or more queues with a given concurrency.
|
8
|
+
# One "default" Capsule is started but the user may declare additional
|
9
|
+
# Capsules in their initializer.
|
10
|
+
#
|
11
|
+
# This capsule will pull jobs from the "single" queue and process
|
12
|
+
# the jobs with one thread, meaning the jobs will be processed serially.
|
13
|
+
#
|
14
|
+
# Sidekiq.configure_server do |config|
|
15
|
+
# config.capsule("single-threaded") do |cap|
|
16
|
+
# cap.concurrency = 1
|
17
|
+
# cap.queues = %w(single)
|
18
|
+
# end
|
19
|
+
# end
|
20
|
+
class Capsule
|
21
|
+
include Sidekiq::Component
|
22
|
+
extend Forwardable
|
23
|
+
|
24
|
+
attr_reader :name
|
25
|
+
attr_reader :queues
|
26
|
+
attr_accessor :concurrency
|
27
|
+
attr_reader :mode
|
28
|
+
attr_reader :weights
|
29
|
+
|
30
|
+
def_delegators :@config, :[], :[]=, :fetch, :key?, :has_key?, :merge!, :dig
|
31
|
+
|
32
|
+
def initialize(name, config)
|
33
|
+
@name = name
|
34
|
+
@config = config
|
35
|
+
@queues = ["default"]
|
36
|
+
@weights = {"default" => 0}
|
37
|
+
@concurrency = config[:concurrency]
|
38
|
+
@mode = :strict
|
39
|
+
end
|
40
|
+
|
41
|
+
def fetcher
|
42
|
+
@fetcher ||= begin
|
43
|
+
inst = (config[:fetch_class] || Sidekiq::BasicFetch).new(self)
|
44
|
+
inst.setup(config[:fetch_setup]) if inst.respond_to?(:setup)
|
45
|
+
inst
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
def stop
|
50
|
+
fetcher&.bulk_requeue([])
|
51
|
+
end
|
52
|
+
|
53
|
+
# Sidekiq checks queues in three modes:
|
54
|
+
# - :strict - all queues have 0 weight and are checked strictly in order
|
55
|
+
# - :weighted - queues have arbitrary weight between 1 and N
|
56
|
+
# - :random - all queues have weight of 1
|
57
|
+
def queues=(val)
|
58
|
+
@weights = {}
|
59
|
+
@queues = Array(val).each_with_object([]) do |qstr, memo|
|
60
|
+
arr = qstr
|
61
|
+
arr = qstr.split(",") if qstr.is_a?(String)
|
62
|
+
name, weight = arr
|
63
|
+
@weights[name] = weight.to_i
|
64
|
+
[weight.to_i, 1].max.times do
|
65
|
+
memo << name
|
66
|
+
end
|
67
|
+
end
|
68
|
+
@mode = if @weights.values.all?(&:zero?)
|
69
|
+
:strict
|
70
|
+
elsif @weights.values.all? { |x| x == 1 }
|
71
|
+
:random
|
72
|
+
else
|
73
|
+
:weighted
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
# Allow the middleware to be different per-capsule.
|
78
|
+
# Avoid if possible and add middleware globally so all
|
79
|
+
# capsules share the same chains. Easier to debug that way.
|
80
|
+
def client_middleware
|
81
|
+
@client_chain ||= config.client_middleware.copy_for(self)
|
82
|
+
yield @client_chain if block_given?
|
83
|
+
@client_chain
|
84
|
+
end
|
85
|
+
|
86
|
+
def server_middleware
|
87
|
+
@server_chain ||= config.server_middleware.copy_for(self)
|
88
|
+
yield @server_chain if block_given?
|
89
|
+
@server_chain
|
90
|
+
end
|
91
|
+
|
92
|
+
def redis_pool
|
93
|
+
Thread.current[:sidekiq_redis_pool] || local_redis_pool
|
94
|
+
end
|
95
|
+
|
96
|
+
def local_redis_pool
|
97
|
+
# connection pool is lazy, it will not create connections unless you actually need them
|
98
|
+
# so don't be skimpy!
|
99
|
+
@redis ||= config.new_redis_pool(@concurrency, name)
|
100
|
+
end
|
101
|
+
|
102
|
+
def redis
|
103
|
+
raise ArgumentError, "requires a block" unless block_given?
|
104
|
+
redis_pool.with do |conn|
|
105
|
+
retryable = true
|
106
|
+
begin
|
107
|
+
yield conn
|
108
|
+
rescue RedisClientAdapter::BaseError => ex
|
109
|
+
# 2550 Failover can cause the server to become a replica, need
|
110
|
+
# to disconnect and reopen the socket to get back to the primary.
|
111
|
+
# 4495 Use the same logic if we have a "Not enough replicas" error from the primary
|
112
|
+
# 4985 Use the same logic when a blocking command is force-unblocked
|
113
|
+
# The same retry logic is also used in client.rb
|
114
|
+
if retryable && ex.message =~ /READONLY|NOREPLICAS|UNBLOCKED/
|
115
|
+
conn.close
|
116
|
+
retryable = false
|
117
|
+
retry
|
118
|
+
end
|
119
|
+
raise
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
def lookup(name)
|
125
|
+
config.lookup(name)
|
126
|
+
end
|
127
|
+
|
128
|
+
def logger
|
129
|
+
config.logger
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|