sidekiq 6.5.12 → 7.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changes.md +303 -20
- data/README.md +43 -35
- data/bin/multi_queue_bench +271 -0
- data/bin/sidekiq +3 -8
- data/bin/sidekiqload +204 -118
- data/bin/sidekiqmon +3 -0
- data/lib/active_job/queue_adapters/sidekiq_adapter.rb +88 -0
- data/lib/generators/sidekiq/job_generator.rb +2 -0
- data/lib/sidekiq/api.rb +196 -138
- data/lib/sidekiq/capsule.rb +132 -0
- data/lib/sidekiq/cli.rb +60 -75
- data/lib/sidekiq/client.rb +87 -38
- data/lib/sidekiq/component.rb +4 -1
- data/lib/sidekiq/config.rb +305 -0
- data/lib/sidekiq/deploy.rb +64 -0
- data/lib/sidekiq/embedded.rb +63 -0
- data/lib/sidekiq/fetch.rb +11 -14
- 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 +382 -10
- data/lib/sidekiq/job_logger.rb +23 -12
- data/lib/sidekiq/job_retry.rb +42 -19
- data/lib/sidekiq/job_util.rb +53 -15
- data/lib/sidekiq/launcher.rb +71 -65
- data/lib/sidekiq/logger.rb +2 -27
- data/lib/sidekiq/manager.rb +9 -11
- data/lib/sidekiq/metrics/query.rb +9 -4
- data/lib/sidekiq/metrics/shared.rb +21 -9
- data/lib/sidekiq/metrics/tracking.rb +40 -26
- data/lib/sidekiq/middleware/chain.rb +19 -18
- data/lib/sidekiq/middleware/current_attributes.rb +70 -20
- data/lib/sidekiq/middleware/modules.rb +2 -0
- data/lib/sidekiq/monitor.rb +18 -4
- data/lib/sidekiq/paginator.rb +2 -2
- data/lib/sidekiq/processor.rb +62 -57
- data/lib/sidekiq/rails.rb +21 -10
- data/lib/sidekiq/redis_client_adapter.rb +31 -71
- data/lib/sidekiq/redis_connection.rb +44 -115
- data/lib/sidekiq/ring_buffer.rb +2 -0
- data/lib/sidekiq/scheduled.rb +22 -23
- data/lib/sidekiq/systemd.rb +2 -0
- data/lib/sidekiq/testing.rb +37 -46
- data/lib/sidekiq/transaction_aware_client.rb +11 -5
- data/lib/sidekiq/version.rb +6 -1
- data/lib/sidekiq/web/action.rb +15 -5
- data/lib/sidekiq/web/application.rb +89 -17
- data/lib/sidekiq/web/csrf_protection.rb +10 -7
- data/lib/sidekiq/web/helpers.rb +102 -42
- data/lib/sidekiq/web/router.rb +5 -2
- data/lib/sidekiq/web.rb +65 -17
- data/lib/sidekiq/worker_compatibility_alias.rb +13 -0
- data/lib/sidekiq.rb +78 -274
- data/sidekiq.gemspec +12 -10
- data/web/assets/javascripts/application.js +44 -0
- data/web/assets/javascripts/base-charts.js +106 -0
- data/web/assets/javascripts/dashboard-charts.js +192 -0
- data/web/assets/javascripts/dashboard.js +11 -233
- data/web/assets/javascripts/metrics.js +151 -115
- data/web/assets/stylesheets/application-dark.css +4 -0
- data/web/assets/stylesheets/application-rtl.css +10 -89
- data/web/assets/stylesheets/application.css +53 -298
- data/web/locales/ar.yml +70 -70
- data/web/locales/cs.yml +62 -62
- data/web/locales/da.yml +60 -53
- data/web/locales/de.yml +65 -65
- data/web/locales/el.yml +2 -7
- data/web/locales/en.yml +78 -71
- data/web/locales/es.yml +68 -68
- data/web/locales/fa.yml +65 -65
- data/web/locales/fr.yml +80 -67
- data/web/locales/gd.yml +98 -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 +67 -70
- data/web/locales/ko.yml +52 -52
- data/web/locales/lt.yml +66 -66
- 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 +78 -69
- data/web/locales/pt.yml +51 -51
- data/web/locales/ru.yml +67 -66
- 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 +64 -64
- data/web/locales/vi.yml +67 -67
- data/web/locales/zh-cn.yml +20 -19
- data/web/locales/zh-tw.yml +10 -2
- data/web/views/_footer.erb +17 -2
- data/web/views/_job_info.erb +18 -2
- data/web/views/_metrics_period_select.erb +12 -0
- data/web/views/_paging.erb +2 -0
- data/web/views/_poll_link.erb +1 -1
- data/web/views/_summary.erb +7 -7
- data/web/views/busy.erb +46 -35
- data/web/views/dashboard.erb +28 -7
- data/web/views/filtering.erb +7 -0
- data/web/views/layout.erb +6 -6
- data/web/views/metrics.erb +48 -26
- data/web/views/metrics_for_job.erb +43 -71
- data/web/views/morgue.erb +5 -9
- data/web/views/queue.erb +10 -14
- data/web/views/queues.erb +9 -3
- data/web/views/retries.erb +5 -9
- data/web/views/scheduled.erb +12 -13
- metadata +53 -39
- data/lib/sidekiq/delay.rb +0 -43
- data/lib/sidekiq/extensions/action_mailer.rb +0 -48
- data/lib/sidekiq/extensions/active_record.rb +0 -43
- data/lib/sidekiq/extensions/class_methods.rb +0 -43
- data/lib/sidekiq/extensions/generic_proxy.rb +0 -33
- data/lib/sidekiq/metrics/deploy.rb +0 -47
- data/lib/sidekiq/worker.rb +0 -370
- data/web/assets/javascripts/graph.js +0 -16
- /data/{LICENSE → LICENSE.txt} +0 -0
data/lib/sidekiq/api.rb
CHANGED
@@ -4,12 +4,8 @@ require "sidekiq"
|
|
4
4
|
|
5
5
|
require "zlib"
|
6
6
|
require "set"
|
7
|
-
require "base64"
|
8
7
|
|
9
|
-
|
10
|
-
require "sidekiq/metrics/deploy"
|
11
|
-
require "sidekiq/metrics/query"
|
12
|
-
end
|
8
|
+
require "sidekiq/metrics/query"
|
13
9
|
|
14
10
|
#
|
15
11
|
# Sidekiq's Data API provides a Ruby object model on top
|
@@ -70,7 +66,18 @@ module Sidekiq
|
|
70
66
|
end
|
71
67
|
|
72
68
|
def queues
|
73
|
-
Sidekiq
|
69
|
+
Sidekiq.redis do |conn|
|
70
|
+
queues = conn.sscan("queues").to_a
|
71
|
+
|
72
|
+
lengths = conn.pipelined { |pipeline|
|
73
|
+
queues.each do |queue|
|
74
|
+
pipeline.llen("queue:#{queue}")
|
75
|
+
end
|
76
|
+
}
|
77
|
+
|
78
|
+
array_of_arrays = queues.zip(lengths).sort_by { |_, size| -size }
|
79
|
+
array_of_arrays.to_h
|
80
|
+
end
|
74
81
|
end
|
75
82
|
|
76
83
|
# O(1) redis calls
|
@@ -84,11 +91,11 @@ module Sidekiq
|
|
84
91
|
pipeline.zcard("retry")
|
85
92
|
pipeline.zcard("dead")
|
86
93
|
pipeline.scard("processes")
|
87
|
-
pipeline.
|
94
|
+
pipeline.lindex("queue:default", -1)
|
88
95
|
end
|
89
96
|
}
|
90
97
|
|
91
|
-
default_queue_latency = if (entry = pipe1_res[6]
|
98
|
+
default_queue_latency = if (entry = pipe1_res[6])
|
92
99
|
job = begin
|
93
100
|
Sidekiq.load_json(entry)
|
94
101
|
rescue
|
@@ -117,11 +124,11 @@ module Sidekiq
|
|
117
124
|
# @api private
|
118
125
|
def fetch_stats_slow!
|
119
126
|
processes = Sidekiq.redis { |conn|
|
120
|
-
conn.
|
127
|
+
conn.sscan("processes").to_a
|
121
128
|
}
|
122
129
|
|
123
130
|
queues = Sidekiq.redis { |conn|
|
124
|
-
conn.
|
131
|
+
conn.sscan("queues").to_a
|
125
132
|
}
|
126
133
|
|
127
134
|
pipe2_res = Sidekiq.redis { |conn|
|
@@ -133,7 +140,7 @@ module Sidekiq
|
|
133
140
|
|
134
141
|
s = processes.size
|
135
142
|
workers_size = pipe2_res[0...s].sum(&:to_i)
|
136
|
-
enqueued = pipe2_res[s
|
143
|
+
enqueued = pipe2_res[s..].sum(&:to_i)
|
137
144
|
|
138
145
|
@stats[:workers_size] = workers_size
|
139
146
|
@stats[:enqueued] = enqueued
|
@@ -168,25 +175,8 @@ module Sidekiq
|
|
168
175
|
@stats[s] || raise(ArgumentError, "Unknown stat #{s}")
|
169
176
|
end
|
170
177
|
|
171
|
-
class Queues
|
172
|
-
def lengths
|
173
|
-
Sidekiq.redis do |conn|
|
174
|
-
queues = conn.sscan_each("queues").to_a
|
175
|
-
|
176
|
-
lengths = conn.pipelined { |pipeline|
|
177
|
-
queues.each do |queue|
|
178
|
-
pipeline.llen("queue:#{queue}")
|
179
|
-
end
|
180
|
-
}
|
181
|
-
|
182
|
-
array_of_arrays = queues.zip(lengths).sort_by { |_, size| -size }
|
183
|
-
array_of_arrays.to_h
|
184
|
-
end
|
185
|
-
end
|
186
|
-
end
|
187
|
-
|
188
178
|
class History
|
189
|
-
def initialize(days_previous, start_date = nil)
|
179
|
+
def initialize(days_previous, start_date = nil, pool: nil)
|
190
180
|
# we only store five years of data in Redis
|
191
181
|
raise ArgumentError if days_previous < 1 || days_previous > (5 * 365)
|
192
182
|
@days_previous = days_previous
|
@@ -211,15 +201,10 @@ module Sidekiq
|
|
211
201
|
|
212
202
|
keys = dates.map { |datestr| "stat:#{stat}:#{datestr}" }
|
213
203
|
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
stat_hash[dates[idx]] = value ? value.to_i : 0
|
218
|
-
end
|
204
|
+
Sidekiq.redis do |conn|
|
205
|
+
conn.mget(keys).each_with_index do |value, idx|
|
206
|
+
stat_hash[dates[idx]] = value ? value.to_i : 0
|
219
207
|
end
|
220
|
-
rescue RedisConnection.adapter::CommandError
|
221
|
-
# mget will trigger a CROSSSLOT error when run against a Cluster
|
222
|
-
# TODO Someone want to add Cluster support?
|
223
208
|
end
|
224
209
|
|
225
210
|
stat_hash
|
@@ -247,7 +232,7 @@ module Sidekiq
|
|
247
232
|
#
|
248
233
|
# @return [Array<Sidekiq::Queue>]
|
249
234
|
def self.all
|
250
|
-
Sidekiq.redis { |c| c.
|
235
|
+
Sidekiq.redis { |c| c.sscan("queues").to_a }.sort.map { |q| Sidekiq::Queue.new(q) }
|
251
236
|
end
|
252
237
|
|
253
238
|
attr_reader :name
|
@@ -278,8 +263,8 @@ module Sidekiq
|
|
278
263
|
# @return [Float] in seconds
|
279
264
|
def latency
|
280
265
|
entry = Sidekiq.redis { |conn|
|
281
|
-
conn.
|
282
|
-
}
|
266
|
+
conn.lindex(@rname, -1)
|
267
|
+
}
|
283
268
|
return 0 unless entry
|
284
269
|
job = Sidekiq.load_json(entry)
|
285
270
|
now = Time.now.to_f
|
@@ -388,12 +373,7 @@ module Sidekiq
|
|
388
373
|
def display_class
|
389
374
|
# Unwrap known wrappers so they show up in a human-friendly manner in the Web UI
|
390
375
|
@klass ||= self["display_class"] || begin
|
391
|
-
|
392
|
-
when /\ASidekiq::Extensions::Delayed/
|
393
|
-
safe_load(args[0], klass) do |target, method, _|
|
394
|
-
"#{target}.#{method}"
|
395
|
-
end
|
396
|
-
when "ActiveJob::QueueAdapters::SidekiqAdapter::JobWrapper"
|
376
|
+
if klass == "ActiveJob::QueueAdapters::SidekiqAdapter::JobWrapper" || klass == "Sidekiq::ActiveJob::Wrapper"
|
397
377
|
job_class = @item["wrapped"] || args[0]
|
398
378
|
if job_class == "ActionMailer::DeliveryJob" || job_class == "ActionMailer::MailDeliveryJob"
|
399
379
|
# MailerClass#mailer_method
|
@@ -409,23 +389,14 @@ module Sidekiq
|
|
409
389
|
|
410
390
|
def display_args
|
411
391
|
# Unwrap known wrappers so they show up in a human-friendly manner in the Web UI
|
412
|
-
@display_args ||=
|
413
|
-
|
414
|
-
safe_load(args[0], args) do |_, _, arg, kwarg|
|
415
|
-
if !kwarg || kwarg.empty?
|
416
|
-
arg
|
417
|
-
else
|
418
|
-
[arg, kwarg]
|
419
|
-
end
|
420
|
-
end
|
421
|
-
when "ActiveJob::QueueAdapters::SidekiqAdapter::JobWrapper"
|
422
|
-
job_args = self["wrapped"] ? args[0]["arguments"] : []
|
392
|
+
@display_args ||= if klass == "ActiveJob::QueueAdapters::SidekiqAdapter::JobWrapper" || klass == "Sidekiq::ActiveJob::Wrapper"
|
393
|
+
job_args = self["wrapped"] ? deserialize_argument(args[0]["arguments"]) : []
|
423
394
|
if (self["wrapped"] || args[0]) == "ActionMailer::DeliveryJob"
|
424
395
|
# remove MailerClass, mailer_method and 'deliver_now'
|
425
396
|
job_args.drop(3)
|
426
397
|
elsif (self["wrapped"] || args[0]) == "ActionMailer::MailDeliveryJob"
|
427
398
|
# remove MailerClass, mailer_method and 'deliver_now'
|
428
|
-
job_args.drop(3).first
|
399
|
+
job_args.drop(3).first.values_at("params", "args")
|
429
400
|
else
|
430
401
|
job_args
|
431
402
|
end
|
@@ -446,6 +417,10 @@ module Sidekiq
|
|
446
417
|
self["jid"]
|
447
418
|
end
|
448
419
|
|
420
|
+
def bid
|
421
|
+
self["bid"]
|
422
|
+
end
|
423
|
+
|
449
424
|
def enqueued_at
|
450
425
|
self["enqueued_at"] ? Time.at(self["enqueued_at"]).utc : nil
|
451
426
|
end
|
@@ -491,32 +466,34 @@ module Sidekiq
|
|
491
466
|
|
492
467
|
private
|
493
468
|
|
494
|
-
|
495
|
-
|
496
|
-
rescue => ex
|
497
|
-
# #1761 in dev mode, it's possible to have jobs enqueued which haven't been loaded into
|
498
|
-
# memory yet so the YAML can't be loaded.
|
499
|
-
# TODO is this still necessary? Zeitwerk reloader should handle?
|
500
|
-
Sidekiq.logger.warn "Unable to load YAML: #{ex.message}" unless Sidekiq.options[:environment] == "development"
|
501
|
-
default
|
502
|
-
end
|
469
|
+
ACTIVE_JOB_PREFIX = "_aj_"
|
470
|
+
GLOBALID_KEY = "_aj_globalid"
|
503
471
|
|
504
|
-
def
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
# Handle old jobs with marshalled backtrace format
|
515
|
-
# TODO Remove in 7.x
|
516
|
-
Marshal.load(uncompressed)
|
472
|
+
def deserialize_argument(argument)
|
473
|
+
case argument
|
474
|
+
when Array
|
475
|
+
argument.map { |arg| deserialize_argument(arg) }
|
476
|
+
when Hash
|
477
|
+
if serialized_global_id?(argument)
|
478
|
+
argument[GLOBALID_KEY]
|
479
|
+
else
|
480
|
+
argument.transform_values { |v| deserialize_argument(v) }
|
481
|
+
.reject { |k, _| k.start_with?(ACTIVE_JOB_PREFIX) }
|
517
482
|
end
|
483
|
+
else
|
484
|
+
argument
|
518
485
|
end
|
519
486
|
end
|
487
|
+
|
488
|
+
def serialized_global_id?(hash)
|
489
|
+
hash.size == 1 && hash.include?(GLOBALID_KEY)
|
490
|
+
end
|
491
|
+
|
492
|
+
def uncompress_backtrace(backtrace)
|
493
|
+
strict_base64_decoded = backtrace.unpack1("m")
|
494
|
+
uncompressed = Zlib::Inflate.inflate(strict_base64_decoded)
|
495
|
+
Sidekiq.load_json(uncompressed)
|
496
|
+
end
|
520
497
|
end
|
521
498
|
|
522
499
|
# Represents a job within a Redis sorted set where the score
|
@@ -593,7 +570,7 @@ module Sidekiq
|
|
593
570
|
def remove_job
|
594
571
|
Sidekiq.redis do |conn|
|
595
572
|
results = conn.multi { |transaction|
|
596
|
-
transaction.
|
573
|
+
transaction.zrange(parent.name, score, score, "BYSCORE")
|
597
574
|
transaction.zremrangebyscore(parent.name, score, score)
|
598
575
|
}.first
|
599
576
|
|
@@ -656,7 +633,7 @@ module Sidekiq
|
|
656
633
|
|
657
634
|
match = "*#{match}*" unless match.include?("*")
|
658
635
|
Sidekiq.redis do |conn|
|
659
|
-
conn.
|
636
|
+
conn.zscan(name, match: match, count: count) do |entry, score|
|
660
637
|
yield SortedEntry.new(self, score, entry)
|
661
638
|
end
|
662
639
|
end
|
@@ -701,7 +678,7 @@ module Sidekiq
|
|
701
678
|
range_start = page * page_size + offset_size
|
702
679
|
range_end = range_start + page_size - 1
|
703
680
|
elements = Sidekiq.redis { |conn|
|
704
|
-
conn.zrange name, range_start, range_end, withscores
|
681
|
+
conn.zrange name, range_start, range_end, "withscores"
|
705
682
|
}
|
706
683
|
break if elements.empty?
|
707
684
|
page -= 1
|
@@ -728,7 +705,7 @@ module Sidekiq
|
|
728
705
|
end
|
729
706
|
|
730
707
|
elements = Sidekiq.redis { |conn|
|
731
|
-
conn.
|
708
|
+
conn.zrange(name, begin_score, end_score, "BYSCORE", "withscores")
|
732
709
|
}
|
733
710
|
|
734
711
|
elements.each_with_object([]) do |element, result|
|
@@ -746,8 +723,8 @@ module Sidekiq
|
|
746
723
|
# @return [SortedEntry] the record or nil
|
747
724
|
def find_job(jid)
|
748
725
|
Sidekiq.redis do |conn|
|
749
|
-
conn.
|
750
|
-
job =
|
726
|
+
conn.zscan(name, match: "*#{jid}*", count: 100) do |entry, score|
|
727
|
+
job = Sidekiq.load_json(entry)
|
751
728
|
matched = job["jid"] == jid
|
752
729
|
return SortedEntry.new(self, score, entry) if matched
|
753
730
|
end
|
@@ -769,7 +746,7 @@ module Sidekiq
|
|
769
746
|
# @api private
|
770
747
|
def delete_by_jid(score, jid)
|
771
748
|
Sidekiq.redis do |conn|
|
772
|
-
elements = conn.
|
749
|
+
elements = conn.zrange(name, score, score, "BYSCORE")
|
773
750
|
elements.each do |element|
|
774
751
|
if element.index(jid)
|
775
752
|
message = Sidekiq.load_json(element)
|
@@ -792,15 +769,11 @@ module Sidekiq
|
|
792
769
|
# example where I'm selecting jobs based on some complex logic
|
793
770
|
# and deleting them from the scheduled set.
|
794
771
|
#
|
795
|
-
#
|
796
|
-
#
|
797
|
-
# scheduled.klass == 'Sidekiq::Extensions::DelayedClass' &&
|
798
|
-
# scheduled.args[0] == 'User' &&
|
799
|
-
# scheduled.args[1] == 'setup_new_subscriber'
|
800
|
-
# end.map(&:delete)
|
772
|
+
# See the API wiki page for usage notes and examples.
|
773
|
+
#
|
801
774
|
class ScheduledSet < JobSet
|
802
775
|
def initialize
|
803
|
-
super
|
776
|
+
super("schedule")
|
804
777
|
end
|
805
778
|
end
|
806
779
|
|
@@ -810,15 +783,11 @@ module Sidekiq
|
|
810
783
|
# example where I'm selecting all jobs of a certain type
|
811
784
|
# and deleting them from the retry queue.
|
812
785
|
#
|
813
|
-
#
|
814
|
-
#
|
815
|
-
# retri.klass == 'Sidekiq::Extensions::DelayedClass' &&
|
816
|
-
# retri.args[0] == 'User' &&
|
817
|
-
# retri.args[1] == 'setup_new_subscriber'
|
818
|
-
# end.map(&:delete)
|
786
|
+
# See the API wiki page for usage notes and examples.
|
787
|
+
#
|
819
788
|
class RetrySet < JobSet
|
820
789
|
def initialize
|
821
|
-
super
|
790
|
+
super("retry")
|
822
791
|
end
|
823
792
|
|
824
793
|
# Enqueues all jobs pending within the retry set.
|
@@ -839,27 +808,33 @@ module Sidekiq
|
|
839
808
|
#
|
840
809
|
class DeadSet < JobSet
|
841
810
|
def initialize
|
842
|
-
super
|
811
|
+
super("dead")
|
843
812
|
end
|
844
813
|
|
845
814
|
# Add the given job to the Dead set.
|
846
815
|
# @param message [String] the job data as JSON
|
816
|
+
# @option opts [Boolean] :notify_failure (true) Whether death handlers should be called
|
817
|
+
# @option opts [Exception] :ex (RuntimeError) An exception to pass to the death handlers
|
847
818
|
def kill(message, opts = {})
|
848
819
|
now = Time.now.to_f
|
849
820
|
Sidekiq.redis do |conn|
|
850
821
|
conn.multi do |transaction|
|
851
822
|
transaction.zadd(name, now.to_s, message)
|
852
|
-
transaction.zremrangebyscore(name, "-inf", now -
|
853
|
-
transaction.zremrangebyrank(name, 0, -
|
823
|
+
transaction.zremrangebyscore(name, "-inf", now - Sidekiq::Config::DEFAULTS[:dead_timeout_in_seconds])
|
824
|
+
transaction.zremrangebyrank(name, 0, - Sidekiq::Config::DEFAULTS[:dead_max_jobs])
|
854
825
|
end
|
855
826
|
end
|
856
827
|
|
857
828
|
if opts[:notify_failure] != false
|
858
829
|
job = Sidekiq.load_json(message)
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
830
|
+
if opts[:ex]
|
831
|
+
ex = opts[:ex]
|
832
|
+
else
|
833
|
+
ex = RuntimeError.new("Job killed by API")
|
834
|
+
ex.set_backtrace(caller)
|
835
|
+
end
|
836
|
+
Sidekiq.default_configuration.death_handlers.each do |handle|
|
837
|
+
handle.call(job, ex)
|
863
838
|
end
|
864
839
|
end
|
865
840
|
true
|
@@ -869,18 +844,6 @@ module Sidekiq
|
|
869
844
|
def retry_all
|
870
845
|
each(&:retry) while size > 0
|
871
846
|
end
|
872
|
-
|
873
|
-
# The maximum size of the Dead set. Older entries will be trimmed
|
874
|
-
# to stay within this limit. Default value is 10,000.
|
875
|
-
def self.max_jobs
|
876
|
-
Sidekiq[:dead_max_jobs]
|
877
|
-
end
|
878
|
-
|
879
|
-
# The time limit for entries within the Dead set. Older entries will be thrown away.
|
880
|
-
# Default value is six months.
|
881
|
-
def self.timeout
|
882
|
-
Sidekiq[:dead_timeout_in_seconds]
|
883
|
-
end
|
884
847
|
end
|
885
848
|
|
886
849
|
##
|
@@ -893,6 +856,24 @@ module Sidekiq
|
|
893
856
|
class ProcessSet
|
894
857
|
include Enumerable
|
895
858
|
|
859
|
+
def self.[](identity)
|
860
|
+
exists, (info, busy, beat, quiet, rss, rtt_us) = Sidekiq.redis { |conn|
|
861
|
+
conn.multi { |transaction|
|
862
|
+
transaction.sismember("processes", identity)
|
863
|
+
transaction.hmget(identity, "info", "busy", "beat", "quiet", "rss", "rtt_us")
|
864
|
+
}
|
865
|
+
}
|
866
|
+
|
867
|
+
return nil if exists == 0 || info.nil?
|
868
|
+
|
869
|
+
hash = Sidekiq.load_json(info)
|
870
|
+
Process.new(hash.merge("busy" => busy.to_i,
|
871
|
+
"beat" => beat.to_f,
|
872
|
+
"quiet" => quiet,
|
873
|
+
"rss" => rss.to_i,
|
874
|
+
"rtt_us" => rtt_us.to_i))
|
875
|
+
end
|
876
|
+
|
896
877
|
# :nodoc:
|
897
878
|
# @api private
|
898
879
|
def initialize(clean_plz = true)
|
@@ -905,11 +886,11 @@ module Sidekiq
|
|
905
886
|
# @api private
|
906
887
|
def cleanup
|
907
888
|
# dont run cleanup more than once per minute
|
908
|
-
return 0 unless Sidekiq.redis { |conn| conn.set("process_cleanup", "1",
|
889
|
+
return 0 unless Sidekiq.redis { |conn| conn.set("process_cleanup", "1", "NX", "EX", "60") }
|
909
890
|
|
910
891
|
count = 0
|
911
892
|
Sidekiq.redis do |conn|
|
912
|
-
procs = conn.
|
893
|
+
procs = conn.sscan("processes").to_a
|
913
894
|
heartbeats = conn.pipelined { |pipeline|
|
914
895
|
procs.each do |key|
|
915
896
|
pipeline.hget(key, "info")
|
@@ -929,7 +910,7 @@ module Sidekiq
|
|
929
910
|
|
930
911
|
def each
|
931
912
|
result = Sidekiq.redis { |conn|
|
932
|
-
procs = conn.
|
913
|
+
procs = conn.sscan("processes").to_a.sort
|
933
914
|
|
934
915
|
# We're making a tradeoff here between consuming more memory instead of
|
935
916
|
# making more roundtrips to Redis, but if you have hundreds or thousands of workers,
|
@@ -941,7 +922,7 @@ module Sidekiq
|
|
941
922
|
end
|
942
923
|
}
|
943
924
|
|
944
|
-
result.each do |info, busy,
|
925
|
+
result.each do |info, busy, beat, quiet, rss, rtt_us|
|
945
926
|
# If a process is stopped between when we query Redis for `procs` and
|
946
927
|
# when we query for `result`, we will have an item in `result` that is
|
947
928
|
# composed of `nil` values.
|
@@ -949,10 +930,10 @@ module Sidekiq
|
|
949
930
|
|
950
931
|
hash = Sidekiq.load_json(info)
|
951
932
|
yield Process.new(hash.merge("busy" => busy.to_i,
|
952
|
-
"beat" =>
|
933
|
+
"beat" => beat.to_f,
|
953
934
|
"quiet" => quiet,
|
954
935
|
"rss" => rss.to_i,
|
955
|
-
"rtt_us" =>
|
936
|
+
"rtt_us" => rtt_us.to_i))
|
956
937
|
end
|
957
938
|
end
|
958
939
|
|
@@ -1008,6 +989,7 @@ module Sidekiq
|
|
1008
989
|
# 'busy' => 10,
|
1009
990
|
# 'beat' => <last heartbeat>,
|
1010
991
|
# 'identity' => <unique string identifying the process>,
|
992
|
+
# 'embedded' => true,
|
1011
993
|
# }
|
1012
994
|
class Process
|
1013
995
|
# :nodoc:
|
@@ -1021,7 +1003,7 @@ module Sidekiq
|
|
1021
1003
|
end
|
1022
1004
|
|
1023
1005
|
def labels
|
1024
|
-
|
1006
|
+
self["labels"].to_a
|
1025
1007
|
end
|
1026
1008
|
|
1027
1009
|
def [](key)
|
@@ -1036,11 +1018,25 @@ module Sidekiq
|
|
1036
1018
|
self["queues"]
|
1037
1019
|
end
|
1038
1020
|
|
1021
|
+
def weights
|
1022
|
+
self["weights"]
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
def version
|
1026
|
+
self["version"]
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
def embedded?
|
1030
|
+
self["embedded"]
|
1031
|
+
end
|
1032
|
+
|
1039
1033
|
# Signal this process to stop processing new jobs.
|
1040
1034
|
# It will continue to execute jobs it has already fetched.
|
1041
1035
|
# This method is *asynchronous* and it can take 5-10
|
1042
1036
|
# seconds for the process to quiet.
|
1043
1037
|
def quiet!
|
1038
|
+
raise "Can't quiet an embedded process" if embedded?
|
1039
|
+
|
1044
1040
|
signal("TSTP")
|
1045
1041
|
end
|
1046
1042
|
|
@@ -1049,6 +1045,8 @@ module Sidekiq
|
|
1049
1045
|
# This method is *asynchronous* and it can take 5-10
|
1050
1046
|
# seconds for the process to start shutting down.
|
1051
1047
|
def stop!
|
1048
|
+
raise "Can't stop an embedded process" if embedded?
|
1049
|
+
|
1052
1050
|
signal("TERM")
|
1053
1051
|
end
|
1054
1052
|
|
@@ -1107,8 +1105,7 @@ module Sidekiq
|
|
1107
1105
|
all_works = nil
|
1108
1106
|
|
1109
1107
|
Sidekiq.redis do |conn|
|
1110
|
-
procs = conn.
|
1111
|
-
|
1108
|
+
procs = conn.sscan("processes").to_a.sort
|
1112
1109
|
all_works = conn.pipelined do |pipeline|
|
1113
1110
|
procs.each do |key|
|
1114
1111
|
pipeline.hgetall("#{key}:work")
|
@@ -1118,17 +1115,11 @@ module Sidekiq
|
|
1118
1115
|
|
1119
1116
|
procs.zip(all_works).each do |key, workers|
|
1120
1117
|
workers.each_pair do |tid, json|
|
1121
|
-
|
1122
|
-
|
1123
|
-
hsh = Sidekiq.load_json(json)
|
1124
|
-
p = hsh["payload"]
|
1125
|
-
# avoid breaking API, this is a side effect of the JSON optimization in #4316
|
1126
|
-
hsh["payload"] = Sidekiq.load_json(p) if p.is_a?(String)
|
1127
|
-
results << [key, tid, hsh]
|
1118
|
+
results << [key, tid, Sidekiq::Work.new(key, tid, Sidekiq.load_json(json))] unless json.empty?
|
1128
1119
|
end
|
1129
1120
|
end
|
1130
1121
|
|
1131
|
-
results.sort_by { |(_, _, hsh)| hsh
|
1122
|
+
results.sort_by { |(_, _, hsh)| hsh.raw("run_at") }.each(&block)
|
1132
1123
|
end
|
1133
1124
|
|
1134
1125
|
# Note that #size is only as accurate as Sidekiq's heartbeat,
|
@@ -1139,7 +1130,7 @@ module Sidekiq
|
|
1139
1130
|
# which can easily get out of sync with crashy processes.
|
1140
1131
|
def size
|
1141
1132
|
Sidekiq.redis do |conn|
|
1142
|
-
procs = conn.
|
1133
|
+
procs = conn.sscan("processes").to_a
|
1143
1134
|
if procs.empty?
|
1144
1135
|
0
|
1145
1136
|
else
|
@@ -1151,7 +1142,74 @@ module Sidekiq
|
|
1151
1142
|
end
|
1152
1143
|
end
|
1153
1144
|
end
|
1145
|
+
|
1146
|
+
##
|
1147
|
+
# Find the work which represents a job with the given JID.
|
1148
|
+
# *This is a slow O(n) operation*. Do not use for app logic.
|
1149
|
+
#
|
1150
|
+
# @param jid [String] the job identifier
|
1151
|
+
# @return [Sidekiq::Work] the work or nil
|
1152
|
+
def find_work_by_jid(jid)
|
1153
|
+
each do |_process_id, _thread_id, work|
|
1154
|
+
job = work.job
|
1155
|
+
return work if job.jid == jid
|
1156
|
+
end
|
1157
|
+
nil
|
1158
|
+
end
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
# Sidekiq::Work represents a job which is currently executing.
|
1162
|
+
class Work
|
1163
|
+
attr_reader :process_id
|
1164
|
+
attr_reader :thread_id
|
1165
|
+
|
1166
|
+
def initialize(pid, tid, hsh)
|
1167
|
+
@process_id = pid
|
1168
|
+
@thread_id = tid
|
1169
|
+
@hsh = hsh
|
1170
|
+
@job = nil
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
def queue
|
1174
|
+
@hsh["queue"]
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
def run_at
|
1178
|
+
Time.at(@hsh["run_at"])
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
def job
|
1182
|
+
@job ||= Sidekiq::JobRecord.new(@hsh["payload"])
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
def payload
|
1186
|
+
@hsh["payload"]
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
# deprecated
|
1190
|
+
def [](key)
|
1191
|
+
kwargs = {uplevel: 1}
|
1192
|
+
kwargs[:category] = :deprecated if RUBY_VERSION > "3.0" # TODO
|
1193
|
+
warn("Direct access to `Sidekiq::Work` attributes is deprecated, please use `#payload`, `#queue`, `#run_at` or `#job` instead", **kwargs)
|
1194
|
+
|
1195
|
+
@hsh[key]
|
1196
|
+
end
|
1197
|
+
|
1198
|
+
# :nodoc:
|
1199
|
+
# @api private
|
1200
|
+
def raw(name)
|
1201
|
+
@hsh[name]
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
def method_missing(*all)
|
1205
|
+
@hsh.send(*all)
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
def respond_to_missing?(name, *args)
|
1209
|
+
@hsh.respond_to?(name)
|
1210
|
+
end
|
1154
1211
|
end
|
1212
|
+
|
1155
1213
|
# Since "worker" is a nebulous term, we've deprecated the use of this class name.
|
1156
1214
|
# Is "worker" a process, a type of job, a thread? Undefined!
|
1157
1215
|
# WorkSet better describes the data.
|