sidekiq 4.2.10 → 7.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Changes.md +932 -7
- data/LICENSE.txt +9 -0
- data/README.md +49 -50
- data/bin/multi_queue_bench +271 -0
- data/bin/sidekiq +22 -3
- data/bin/sidekiqload +218 -116
- data/bin/sidekiqmon +11 -0
- data/lib/active_job/queue_adapters/sidekiq_adapter.rb +75 -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/job_spec.rb.erb +6 -0
- data/lib/generators/sidekiq/templates/{worker_test.rb.erb → job_test.rb.erb} +1 -1
- data/lib/sidekiq/api.rb +710 -322
- data/lib/sidekiq/capsule.rb +132 -0
- data/lib/sidekiq/cli.rb +268 -248
- data/lib/sidekiq/client.rb +153 -101
- data/lib/sidekiq/component.rb +90 -0
- data/lib/sidekiq/config.rb +311 -0
- data/lib/sidekiq/deploy.rb +64 -0
- data/lib/sidekiq/embedded.rb +63 -0
- data/lib/sidekiq/fetch.rb +50 -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 +294 -0
- data/lib/sidekiq/job.rb +385 -0
- data/lib/sidekiq/job_logger.rb +52 -0
- data/lib/sidekiq/job_retry.rb +305 -0
- data/lib/sidekiq/job_util.rb +109 -0
- data/lib/sidekiq/launcher.rb +208 -108
- data/lib/sidekiq/logger.rb +131 -0
- data/lib/sidekiq/manager.rb +43 -47
- data/lib/sidekiq/metrics/query.rb +158 -0
- data/lib/sidekiq/metrics/shared.rb +106 -0
- data/lib/sidekiq/metrics/tracking.rb +148 -0
- data/lib/sidekiq/middleware/chain.rb +113 -56
- data/lib/sidekiq/middleware/current_attributes.rb +128 -0
- data/lib/sidekiq/middleware/i18n.rb +9 -7
- data/lib/sidekiq/middleware/modules.rb +23 -0
- data/lib/sidekiq/monitor.rb +147 -0
- data/lib/sidekiq/paginator.rb +33 -15
- data/lib/sidekiq/processor.rb +188 -98
- data/lib/sidekiq/rails.rb +53 -92
- data/lib/sidekiq/redis_client_adapter.rb +114 -0
- data/lib/sidekiq/redis_connection.rb +86 -77
- data/lib/sidekiq/ring_buffer.rb +32 -0
- data/lib/sidekiq/scheduled.rb +140 -51
- 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 -85
- data/lib/sidekiq/transaction_aware_client.rb +59 -0
- data/lib/sidekiq/version.rb +7 -1
- data/lib/sidekiq/web/action.rb +40 -18
- data/lib/sidekiq/web/application.rb +189 -89
- data/lib/sidekiq/web/csrf_protection.rb +183 -0
- data/lib/sidekiq/web/helpers.rb +239 -101
- data/lib/sidekiq/web/router.rb +28 -21
- data/lib/sidekiq/web.rb +123 -110
- data/lib/sidekiq/worker_compatibility_alias.rb +13 -0
- data/lib/sidekiq.rb +97 -185
- data/sidekiq.gemspec +26 -27
- 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 +194 -0
- data/web/assets/javascripts/dashboard.js +43 -280
- data/web/assets/javascripts/metrics.js +298 -0
- data/web/assets/stylesheets/application-dark.css +147 -0
- data/web/assets/stylesheets/application-rtl.css +163 -0
- data/web/assets/stylesheets/application.css +176 -196
- data/web/assets/stylesheets/bootstrap-rtl.min.css +9 -0
- data/web/assets/stylesheets/bootstrap.css +2 -2
- data/web/locales/ar.yml +87 -0
- 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 +88 -64
- data/web/locales/es.yml +70 -53
- data/web/locales/fa.yml +65 -64
- data/web/locales/fr.yml +82 -62
- data/web/locales/gd.yml +98 -0
- data/web/locales/he.yml +80 -0
- data/web/locales/hi.yml +59 -59
- data/web/locales/it.yml +85 -54
- data/web/locales/ja.yml +74 -62
- 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 +82 -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 +100 -0
- data/web/locales/uk.yml +85 -61
- data/web/locales/ur.yml +80 -0
- data/web/locales/vi.yml +83 -0
- data/web/locales/zh-cn.yml +42 -16
- data/web/locales/zh-tw.yml +41 -8
- data/web/views/_footer.erb +20 -3
- data/web/views/_job_info.erb +21 -4
- data/web/views/_metrics_period_select.erb +12 -0
- data/web/views/_nav.erb +5 -19
- data/web/views/_paging.erb +3 -1
- data/web/views/_poll_link.erb +3 -6
- data/web/views/_summary.erb +7 -7
- data/web/views/busy.erb +85 -31
- data/web/views/dashboard.erb +53 -20
- data/web/views/dead.erb +3 -3
- data/web/views/filtering.erb +6 -0
- data/web/views/layout.erb +17 -6
- data/web/views/metrics.erb +90 -0
- data/web/views/metrics_for_job.erb +59 -0
- data/web/views/morgue.erb +15 -16
- data/web/views/queue.erb +35 -25
- data/web/views/queues.erb +20 -4
- data/web/views/retries.erb +19 -16
- data/web/views/retry.erb +3 -3
- data/web/views/scheduled.erb +19 -17
- metadata +103 -194
- data/.github/contributing.md +0 -32
- data/.github/issue_template.md +0 -9
- data/.gitignore +0 -12
- data/.travis.yml +0 -18
- data/3.0-Upgrade.md +0 -70
- data/4.0-Upgrade.md +0 -53
- data/COMM-LICENSE +0 -95
- data/Ent-Changes.md +0 -173
- data/Gemfile +0 -29
- data/LICENSE +0 -9
- data/Pro-2.0-Upgrade.md +0 -138
- data/Pro-3.0-Upgrade.md +0 -44
- data/Pro-Changes.md +0 -628
- data/Rakefile +0 -12
- data/bin/sidekiqctl +0 -99
- data/code_of_conduct.md +0 -50
- data/lib/generators/sidekiq/templates/worker_spec.rb.erb +0 -6
- data/lib/generators/sidekiq/worker_generator.rb +0 -49
- data/lib/sidekiq/core_ext.rb +0 -119
- data/lib/sidekiq/exception_handler.rb +0 -31
- 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 -25
- data/lib/sidekiq/logging.rb +0 -106
- data/lib/sidekiq/middleware/server/active_record.rb +0 -13
- data/lib/sidekiq/middleware/server/logging.rb +0 -31
- data/lib/sidekiq/middleware/server/retry_jobs.rb +0 -205
- data/lib/sidekiq/util.rb +0 -63
- data/lib/sidekiq/worker.rb +0 -121
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "zlib"
|
|
4
|
+
require "sidekiq/component"
|
|
5
|
+
|
|
6
|
+
module Sidekiq
|
|
7
|
+
##
|
|
8
|
+
# Automatically retry jobs that fail in Sidekiq.
|
|
9
|
+
# Sidekiq's retry support assumes a typical development lifecycle:
|
|
10
|
+
#
|
|
11
|
+
# 0. Push some code changes with a bug in it.
|
|
12
|
+
# 1. Bug causes job processing to fail, Sidekiq's middleware captures
|
|
13
|
+
# the job and pushes it onto a retry queue.
|
|
14
|
+
# 2. Sidekiq retries jobs in the retry queue multiple times with
|
|
15
|
+
# an exponential delay, the job continues to fail.
|
|
16
|
+
# 3. After a few days, a developer deploys a fix. The job is
|
|
17
|
+
# reprocessed successfully.
|
|
18
|
+
# 4. Once retries are exhausted, Sidekiq will give up and move the
|
|
19
|
+
# job to the Dead Job Queue (aka morgue) where it must be dealt with
|
|
20
|
+
# manually in the Web UI.
|
|
21
|
+
# 5. After 6 months on the DJQ, Sidekiq will discard the job.
|
|
22
|
+
#
|
|
23
|
+
# A job looks like:
|
|
24
|
+
#
|
|
25
|
+
# { 'class' => 'HardJob', 'args' => [1, 2, 'foo'], 'retry' => true }
|
|
26
|
+
#
|
|
27
|
+
# The 'retry' option also accepts a number (in place of 'true'):
|
|
28
|
+
#
|
|
29
|
+
# { 'class' => 'HardJob', 'args' => [1, 2, 'foo'], 'retry' => 5 }
|
|
30
|
+
#
|
|
31
|
+
# The job will be retried this number of times before giving up. (If simply
|
|
32
|
+
# 'true', Sidekiq retries 25 times)
|
|
33
|
+
#
|
|
34
|
+
# Relevant options for job retries:
|
|
35
|
+
#
|
|
36
|
+
# * 'queue' - the queue for the initial job
|
|
37
|
+
# * 'retry_queue' - if job retries should be pushed to a different (e.g. lower priority) queue
|
|
38
|
+
# * 'retry_count' - number of times we've retried so far.
|
|
39
|
+
# * 'error_message' - the message from the exception
|
|
40
|
+
# * 'error_class' - the exception class
|
|
41
|
+
# * 'failed_at' - the first time it failed
|
|
42
|
+
# * 'retried_at' - the last time it was retried
|
|
43
|
+
# * 'backtrace' - the number of lines of error backtrace to store
|
|
44
|
+
#
|
|
45
|
+
# We don't store the backtrace by default as that can add a lot of overhead
|
|
46
|
+
# to the job and everyone is using an error service, right?
|
|
47
|
+
#
|
|
48
|
+
# The default number of retries is 25 which works out to about 3 weeks
|
|
49
|
+
# You can change the default maximum number of retries in your initializer:
|
|
50
|
+
#
|
|
51
|
+
# Sidekiq.default_configuration[:max_retries] = 7
|
|
52
|
+
#
|
|
53
|
+
# or limit the number of retries for a particular job and send retries to
|
|
54
|
+
# a low priority queue with:
|
|
55
|
+
#
|
|
56
|
+
# class MyJob
|
|
57
|
+
# include Sidekiq::Job
|
|
58
|
+
# sidekiq_options retry: 10, retry_queue: 'low'
|
|
59
|
+
# end
|
|
60
|
+
#
|
|
61
|
+
class JobRetry
|
|
62
|
+
# Handled means the job failed but has been dealt with
|
|
63
|
+
# (by creating a retry, rescheduling it, etc). It still
|
|
64
|
+
# needs to be logged and dispatched to error_handlers.
|
|
65
|
+
class Handled < ::RuntimeError; end
|
|
66
|
+
|
|
67
|
+
# Skip means the job failed but Sidekiq does not need to
|
|
68
|
+
# create a retry, log it or send to error_handlers.
|
|
69
|
+
class Skip < Handled; end
|
|
70
|
+
|
|
71
|
+
include Sidekiq::Component
|
|
72
|
+
|
|
73
|
+
DEFAULT_MAX_RETRY_ATTEMPTS = 25
|
|
74
|
+
|
|
75
|
+
def initialize(capsule)
|
|
76
|
+
@config = @capsule = capsule
|
|
77
|
+
@max_retries = Sidekiq.default_configuration[:max_retries] || DEFAULT_MAX_RETRY_ATTEMPTS
|
|
78
|
+
@backtrace_cleaner = Sidekiq.default_configuration[:backtrace_cleaner]
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# The global retry handler requires only the barest of data.
|
|
82
|
+
# We want to be able to retry as much as possible so we don't
|
|
83
|
+
# require the job to be instantiated.
|
|
84
|
+
def global(jobstr, queue)
|
|
85
|
+
yield
|
|
86
|
+
rescue Handled => ex
|
|
87
|
+
raise ex
|
|
88
|
+
rescue Sidekiq::Shutdown => ey
|
|
89
|
+
# ignore, will be pushed back onto queue during hard_shutdown
|
|
90
|
+
raise ey
|
|
91
|
+
rescue Exception => e
|
|
92
|
+
# ignore, will be pushed back onto queue during hard_shutdown
|
|
93
|
+
raise Sidekiq::Shutdown if exception_caused_by_shutdown?(e)
|
|
94
|
+
|
|
95
|
+
msg = Sidekiq.load_json(jobstr)
|
|
96
|
+
if msg["retry"]
|
|
97
|
+
process_retry(nil, msg, queue, e)
|
|
98
|
+
else
|
|
99
|
+
@capsule.config.death_handlers.each do |handler|
|
|
100
|
+
handler.call(msg, e)
|
|
101
|
+
rescue => handler_ex
|
|
102
|
+
handle_exception(handler_ex, {context: "Error calling death handler", job: msg})
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
raise Handled
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
# The local retry support means that any errors that occur within
|
|
110
|
+
# this block can be associated with the given job instance.
|
|
111
|
+
# This is required to support the `sidekiq_retries_exhausted` block.
|
|
112
|
+
#
|
|
113
|
+
# Note that any exception from the block is wrapped in the Skip
|
|
114
|
+
# exception so the global block does not reprocess the error. The
|
|
115
|
+
# Skip exception is unwrapped within Sidekiq::Processor#process before
|
|
116
|
+
# calling the handle_exception handlers.
|
|
117
|
+
def local(jobinst, jobstr, queue)
|
|
118
|
+
yield
|
|
119
|
+
rescue Handled => ex
|
|
120
|
+
raise ex
|
|
121
|
+
rescue Sidekiq::Shutdown => ey
|
|
122
|
+
# ignore, will be pushed back onto queue during hard_shutdown
|
|
123
|
+
raise ey
|
|
124
|
+
rescue Exception => e
|
|
125
|
+
# ignore, will be pushed back onto queue during hard_shutdown
|
|
126
|
+
raise Sidekiq::Shutdown if exception_caused_by_shutdown?(e)
|
|
127
|
+
|
|
128
|
+
msg = Sidekiq.load_json(jobstr)
|
|
129
|
+
if msg["retry"].nil?
|
|
130
|
+
msg["retry"] = jobinst.class.get_sidekiq_options["retry"]
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
raise e unless msg["retry"]
|
|
134
|
+
process_retry(jobinst, msg, queue, e)
|
|
135
|
+
# We've handled this error associated with this job, don't
|
|
136
|
+
# need to handle it at the global level
|
|
137
|
+
raise Handled
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
private
|
|
141
|
+
|
|
142
|
+
# Note that +jobinst+ can be nil here if an error is raised before we can
|
|
143
|
+
# instantiate the job instance. All access must be guarded and
|
|
144
|
+
# best effort.
|
|
145
|
+
def process_retry(jobinst, msg, queue, exception)
|
|
146
|
+
max_retry_attempts = retry_attempts_from(msg["retry"], @max_retries)
|
|
147
|
+
|
|
148
|
+
msg["queue"] = (msg["retry_queue"] || queue)
|
|
149
|
+
|
|
150
|
+
m = exception_message(exception)
|
|
151
|
+
if m.respond_to?(:scrub!)
|
|
152
|
+
m.force_encoding("utf-8")
|
|
153
|
+
m.scrub!
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
msg["error_message"] = m
|
|
157
|
+
msg["error_class"] = exception.class.name
|
|
158
|
+
count = if msg["retry_count"]
|
|
159
|
+
msg["retried_at"] = Time.now.to_f
|
|
160
|
+
msg["retry_count"] += 1
|
|
161
|
+
else
|
|
162
|
+
msg["failed_at"] = Time.now.to_f
|
|
163
|
+
msg["retry_count"] = 0
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
if msg["backtrace"]
|
|
167
|
+
backtrace = @backtrace_cleaner.call(exception.backtrace)
|
|
168
|
+
lines = if msg["backtrace"] == true
|
|
169
|
+
backtrace
|
|
170
|
+
else
|
|
171
|
+
backtrace[0...msg["backtrace"].to_i]
|
|
172
|
+
end
|
|
173
|
+
|
|
174
|
+
msg["error_backtrace"] = compress_backtrace(lines)
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
return retries_exhausted(jobinst, msg, exception) if count >= max_retry_attempts
|
|
178
|
+
|
|
179
|
+
rf = msg["retry_for"]
|
|
180
|
+
return retries_exhausted(jobinst, msg, exception) if rf && ((msg["failed_at"] + rf) < Time.now.to_f)
|
|
181
|
+
|
|
182
|
+
strategy, delay = delay_for(jobinst, count, exception, msg)
|
|
183
|
+
case strategy
|
|
184
|
+
when :discard
|
|
185
|
+
return # poof!
|
|
186
|
+
when :kill
|
|
187
|
+
return retries_exhausted(jobinst, msg, exception)
|
|
188
|
+
end
|
|
189
|
+
|
|
190
|
+
# Logging here can break retries if the logging device raises ENOSPC #3979
|
|
191
|
+
# logger.debug { "Failure! Retry #{count} in #{delay} seconds" }
|
|
192
|
+
jitter = rand(10) * (count + 1)
|
|
193
|
+
retry_at = Time.now.to_f + delay + jitter
|
|
194
|
+
payload = Sidekiq.dump_json(msg)
|
|
195
|
+
redis do |conn|
|
|
196
|
+
conn.zadd("retry", retry_at.to_s, payload)
|
|
197
|
+
end
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
# returns (strategy, seconds)
|
|
201
|
+
def delay_for(jobinst, count, exception, msg)
|
|
202
|
+
rv = begin
|
|
203
|
+
# sidekiq_retry_in can return two different things:
|
|
204
|
+
# 1. When to retry next, as an integer of seconds
|
|
205
|
+
# 2. A symbol which re-routes the job elsewhere, e.g. :discard, :kill, :default
|
|
206
|
+
block = jobinst&.sidekiq_retry_in_block
|
|
207
|
+
|
|
208
|
+
# the sidekiq_retry_in_block can be defined in a wrapped class (ActiveJob for instance)
|
|
209
|
+
unless msg["wrapped"].nil?
|
|
210
|
+
wrapped = Object.const_get(msg["wrapped"])
|
|
211
|
+
block = wrapped.respond_to?(:sidekiq_retry_in_block) ? wrapped.sidekiq_retry_in_block : nil
|
|
212
|
+
end
|
|
213
|
+
block&.call(count, exception, msg)
|
|
214
|
+
rescue Exception => e
|
|
215
|
+
handle_exception(e, {context: "Failure scheduling retry using the defined `sidekiq_retry_in` in #{jobinst.class.name}, falling back to default"})
|
|
216
|
+
nil
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
rv = rv.to_i if rv.respond_to?(:to_i)
|
|
220
|
+
delay = (count**4) + 15
|
|
221
|
+
if Integer === rv && rv > 0
|
|
222
|
+
delay = rv
|
|
223
|
+
elsif rv == :discard
|
|
224
|
+
return [:discard, nil] # do nothing, job goes poof
|
|
225
|
+
elsif rv == :kill
|
|
226
|
+
return [:kill, nil]
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
[:default, delay]
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
def retries_exhausted(jobinst, msg, exception)
|
|
233
|
+
rv = begin
|
|
234
|
+
block = jobinst&.sidekiq_retries_exhausted_block
|
|
235
|
+
|
|
236
|
+
# the sidekiq_retries_exhausted_block can be defined in a wrapped class (ActiveJob for instance)
|
|
237
|
+
unless msg["wrapped"].nil?
|
|
238
|
+
wrapped = Object.const_get(msg["wrapped"])
|
|
239
|
+
block = wrapped.respond_to?(:sidekiq_retries_exhausted_block) ? wrapped.sidekiq_retries_exhausted_block : nil
|
|
240
|
+
end
|
|
241
|
+
block&.call(msg, exception)
|
|
242
|
+
rescue => e
|
|
243
|
+
handle_exception(e, {context: "Error calling retries_exhausted", job: msg})
|
|
244
|
+
end
|
|
245
|
+
|
|
246
|
+
return if rv == :discard # poof!
|
|
247
|
+
send_to_morgue(msg) unless msg["dead"] == false
|
|
248
|
+
|
|
249
|
+
@capsule.config.death_handlers.each do |handler|
|
|
250
|
+
handler.call(msg, exception)
|
|
251
|
+
rescue => e
|
|
252
|
+
handle_exception(e, {context: "Error calling death handler", job: msg})
|
|
253
|
+
end
|
|
254
|
+
end
|
|
255
|
+
|
|
256
|
+
def send_to_morgue(msg)
|
|
257
|
+
logger.info { "Adding dead #{msg["class"]} job #{msg["jid"]}" }
|
|
258
|
+
payload = Sidekiq.dump_json(msg)
|
|
259
|
+
now = Time.now.to_f
|
|
260
|
+
|
|
261
|
+
redis do |conn|
|
|
262
|
+
conn.multi do |xa|
|
|
263
|
+
xa.zadd("dead", now.to_s, payload)
|
|
264
|
+
xa.zremrangebyscore("dead", "-inf", now - @capsule.config[:dead_timeout_in_seconds])
|
|
265
|
+
xa.zremrangebyrank("dead", 0, - @capsule.config[:dead_max_jobs])
|
|
266
|
+
end
|
|
267
|
+
end
|
|
268
|
+
end
|
|
269
|
+
|
|
270
|
+
def retry_attempts_from(msg_retry, default)
|
|
271
|
+
if msg_retry.is_a?(Integer)
|
|
272
|
+
msg_retry
|
|
273
|
+
else
|
|
274
|
+
default
|
|
275
|
+
end
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
def exception_caused_by_shutdown?(e, checked_causes = [])
|
|
279
|
+
return false unless e.cause
|
|
280
|
+
|
|
281
|
+
# Handle circular causes
|
|
282
|
+
checked_causes << e.object_id
|
|
283
|
+
return false if checked_causes.include?(e.cause.object_id)
|
|
284
|
+
|
|
285
|
+
e.cause.instance_of?(Sidekiq::Shutdown) ||
|
|
286
|
+
exception_caused_by_shutdown?(e.cause, checked_causes)
|
|
287
|
+
end
|
|
288
|
+
|
|
289
|
+
# Extract message from exception.
|
|
290
|
+
# Set a default if the message raises an error
|
|
291
|
+
def exception_message(exception)
|
|
292
|
+
# App code can stuff all sorts of crazy binary data into the error message
|
|
293
|
+
# that won't convert to JSON.
|
|
294
|
+
exception.message.to_s[0, 10_000]
|
|
295
|
+
rescue
|
|
296
|
+
+"!!! ERROR MESSAGE THREW AN ERROR !!!"
|
|
297
|
+
end
|
|
298
|
+
|
|
299
|
+
def compress_backtrace(backtrace)
|
|
300
|
+
serialized = Sidekiq.dump_json(backtrace)
|
|
301
|
+
compressed = Zlib::Deflate.deflate(serialized)
|
|
302
|
+
[compressed].pack("m0") # Base64.strict_encode64
|
|
303
|
+
end
|
|
304
|
+
end
|
|
305
|
+
end
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "securerandom"
|
|
4
|
+
require "time"
|
|
5
|
+
|
|
6
|
+
module Sidekiq
|
|
7
|
+
module JobUtil
|
|
8
|
+
# These functions encapsulate various job utilities.
|
|
9
|
+
|
|
10
|
+
TRANSIENT_ATTRIBUTES = %w[]
|
|
11
|
+
|
|
12
|
+
def validate(item)
|
|
13
|
+
raise(ArgumentError, "Job must be a Hash with 'class' and 'args' keys: `#{item}`") unless item.is_a?(Hash) && item.key?("class") && item.key?("args")
|
|
14
|
+
raise(ArgumentError, "Job args must be an Array: `#{item}`") unless item["args"].is_a?(Array) || item["args"].is_a?(Enumerator::Lazy)
|
|
15
|
+
raise(ArgumentError, "Job class must be either a Class or String representation of the class name: `#{item}`") unless item["class"].is_a?(Class) || item["class"].is_a?(String)
|
|
16
|
+
raise(ArgumentError, "Job 'at' must be a Numeric timestamp: `#{item}`") if item.key?("at") && !item["at"].is_a?(Numeric)
|
|
17
|
+
raise(ArgumentError, "Job tags must be an Array: `#{item}`") if item["tags"] && !item["tags"].is_a?(Array)
|
|
18
|
+
raise(ArgumentError, "retry_for must be a relative amount of time, e.g. 48.hours `#{item}`") if item["retry_for"] && item["retry_for"] > 1_000_000_000
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def verify_json(item)
|
|
22
|
+
job_class = item["wrapped"] || item["class"]
|
|
23
|
+
args = item["args"]
|
|
24
|
+
mode = Sidekiq::Config::DEFAULTS[:on_complex_arguments]
|
|
25
|
+
|
|
26
|
+
if mode == :raise || mode == :warn
|
|
27
|
+
if (unsafe_item = json_unsafe?(args))
|
|
28
|
+
msg = <<~EOM
|
|
29
|
+
Job arguments to #{job_class} must be native JSON types, but #{unsafe_item.inspect} is a #{unsafe_item.class}.
|
|
30
|
+
See https://github.com/sidekiq/sidekiq/wiki/Best-Practices
|
|
31
|
+
To disable this error, add `Sidekiq.strict_args!(false)` to your initializer.
|
|
32
|
+
EOM
|
|
33
|
+
|
|
34
|
+
if mode == :raise
|
|
35
|
+
raise(ArgumentError, msg)
|
|
36
|
+
else
|
|
37
|
+
warn(msg)
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def normalize_item(item)
|
|
44
|
+
validate(item)
|
|
45
|
+
|
|
46
|
+
# merge in the default sidekiq_options for the item's class and/or wrapped element
|
|
47
|
+
# this allows ActiveJobs to control sidekiq_options too.
|
|
48
|
+
defaults = normalized_hash(item["class"])
|
|
49
|
+
defaults = defaults.merge(item["wrapped"].get_sidekiq_options) if item["wrapped"].respond_to?(:get_sidekiq_options)
|
|
50
|
+
item = defaults.merge(item)
|
|
51
|
+
|
|
52
|
+
raise(ArgumentError, "Job must include a valid queue name") if item["queue"].nil? || item["queue"] == ""
|
|
53
|
+
|
|
54
|
+
# remove job attributes which aren't necessary to persist into Redis
|
|
55
|
+
TRANSIENT_ATTRIBUTES.each { |key| item.delete(key) }
|
|
56
|
+
|
|
57
|
+
item["jid"] ||= SecureRandom.hex(12)
|
|
58
|
+
item["class"] = item["class"].to_s
|
|
59
|
+
item["queue"] = item["queue"].to_s
|
|
60
|
+
item["retry_for"] = item["retry_for"].to_i if item["retry_for"]
|
|
61
|
+
item["created_at"] ||= Time.now.to_f
|
|
62
|
+
item
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def normalized_hash(item_class)
|
|
66
|
+
if item_class.is_a?(Class)
|
|
67
|
+
raise(ArgumentError, "Message must include a Sidekiq::Job class, not class name: #{item_class.ancestors.inspect}") unless item_class.respond_to?(:get_sidekiq_options)
|
|
68
|
+
item_class.get_sidekiq_options
|
|
69
|
+
else
|
|
70
|
+
Sidekiq.default_job_options
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
private
|
|
75
|
+
|
|
76
|
+
RECURSIVE_JSON_UNSAFE = {
|
|
77
|
+
Integer => ->(val) {},
|
|
78
|
+
Float => ->(val) {},
|
|
79
|
+
TrueClass => ->(val) {},
|
|
80
|
+
FalseClass => ->(val) {},
|
|
81
|
+
NilClass => ->(val) {},
|
|
82
|
+
String => ->(val) {},
|
|
83
|
+
Array => ->(val) {
|
|
84
|
+
val.each do |e|
|
|
85
|
+
unsafe_item = RECURSIVE_JSON_UNSAFE[e.class].call(e)
|
|
86
|
+
return unsafe_item unless unsafe_item.nil?
|
|
87
|
+
end
|
|
88
|
+
nil
|
|
89
|
+
},
|
|
90
|
+
Hash => ->(val) {
|
|
91
|
+
val.each do |k, v|
|
|
92
|
+
return k unless String === k
|
|
93
|
+
|
|
94
|
+
unsafe_item = RECURSIVE_JSON_UNSAFE[v.class].call(v)
|
|
95
|
+
return unsafe_item unless unsafe_item.nil?
|
|
96
|
+
end
|
|
97
|
+
nil
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
RECURSIVE_JSON_UNSAFE.default = ->(val) { val }
|
|
102
|
+
RECURSIVE_JSON_UNSAFE.compare_by_identity
|
|
103
|
+
private_constant :RECURSIVE_JSON_UNSAFE
|
|
104
|
+
|
|
105
|
+
def json_unsafe?(item)
|
|
106
|
+
RECURSIVE_JSON_UNSAFE[item.class].call(item)
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
end
|