inst-jobs 2.3.3 → 2.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/db/migrate/20101216224513_create_delayed_jobs.rb +9 -7
- data/db/migrate/20110531144916_cleanup_delayed_jobs_indexes.rb +8 -13
- data/db/migrate/20110610213249_optimize_delayed_jobs.rb +8 -8
- data/db/migrate/20110831210257_add_delayed_jobs_next_in_strand.rb +25 -25
- data/db/migrate/20120510004759_delayed_jobs_delete_trigger_lock_for_update.rb +4 -8
- data/db/migrate/20120531150712_drop_psql_jobs_pop_fn.rb +1 -3
- data/db/migrate/20120607164022_delayed_jobs_use_advisory_locks.rb +11 -15
- data/db/migrate/20120607181141_index_jobs_on_locked_by.rb +1 -1
- data/db/migrate/20120608191051_add_jobs_run_at_index.rb +2 -2
- data/db/migrate/20120927184213_change_delayed_jobs_handler_to_text.rb +1 -1
- data/db/migrate/20140505215510_copy_failed_jobs_original_id.rb +2 -3
- data/db/migrate/20150807133223_add_max_concurrent_to_jobs.rb +9 -13
- data/db/migrate/20151210162949_improve_max_concurrent.rb +4 -8
- data/db/migrate/20161206323555_add_back_default_string_limits_jobs.rb +3 -2
- data/db/migrate/20181217155351_speed_up_max_concurrent_triggers.rb +13 -17
- data/db/migrate/20200330230722_add_id_to_get_delayed_jobs_index.rb +8 -8
- data/db/migrate/20200824222232_speed_up_max_concurrent_delete_trigger.rb +72 -77
- data/db/migrate/20200825011002_add_strand_order_override.rb +93 -97
- data/db/migrate/20210809145804_add_n_strand_index.rb +3 -3
- data/db/migrate/20210812210128_add_singleton_column.rb +200 -0
- data/exe/inst_jobs +3 -2
- data/lib/delayed/backend/active_record.rb +183 -149
- data/lib/delayed/backend/base.rb +80 -75
- data/lib/delayed/batch.rb +11 -9
- data/lib/delayed/cli.rb +98 -84
- data/lib/delayed/core_ext/kernel.rb +4 -2
- data/lib/delayed/daemon.rb +70 -74
- data/lib/delayed/job_tracking.rb +26 -25
- data/lib/delayed/lifecycle.rb +27 -24
- data/lib/delayed/log_tailer.rb +17 -17
- data/lib/delayed/logging.rb +13 -16
- data/lib/delayed/message_sending.rb +43 -52
- data/lib/delayed/performable_method.rb +6 -8
- data/lib/delayed/periodic.rb +66 -65
- data/lib/delayed/plugin.rb +2 -4
- data/lib/delayed/pool.rb +198 -193
- data/lib/delayed/server/helpers.rb +6 -6
- data/lib/delayed/server.rb +51 -54
- data/lib/delayed/settings.rb +93 -81
- data/lib/delayed/testing.rb +21 -22
- data/lib/delayed/version.rb +1 -1
- data/lib/delayed/work_queue/in_process.rb +21 -18
- data/lib/delayed/work_queue/parent_process/client.rb +54 -55
- data/lib/delayed/work_queue/parent_process/server.rb +215 -209
- data/lib/delayed/work_queue/parent_process.rb +52 -53
- data/lib/delayed/worker/consul_health_check.rb +21 -19
- data/lib/delayed/worker/health_check.rb +21 -12
- data/lib/delayed/worker/null_health_check.rb +3 -1
- data/lib/delayed/worker/process_helper.rb +8 -9
- data/lib/delayed/worker.rb +271 -265
- data/lib/delayed/yaml_extensions.rb +12 -10
- data/lib/delayed_job.rb +37 -38
- data/lib/inst-jobs.rb +1 -1
- data/spec/active_record_job_spec.rb +129 -136
- data/spec/delayed/cli_spec.rb +7 -7
- data/spec/delayed/daemon_spec.rb +8 -8
- data/spec/delayed/message_sending_spec.rb +16 -9
- data/spec/delayed/periodic_spec.rb +13 -12
- data/spec/delayed/server_spec.rb +38 -38
- data/spec/delayed/settings_spec.rb +26 -25
- data/spec/delayed/work_queue/in_process_spec.rb +7 -7
- data/spec/delayed/work_queue/parent_process/client_spec.rb +15 -11
- data/spec/delayed/work_queue/parent_process/server_spec.rb +43 -40
- data/spec/delayed/work_queue/parent_process_spec.rb +21 -21
- data/spec/delayed/worker/consul_health_check_spec.rb +22 -22
- data/spec/delayed/worker/health_check_spec.rb +51 -49
- data/spec/delayed/worker_spec.rb +28 -25
- data/spec/sample_jobs.rb +45 -15
- data/spec/shared/delayed_batch.rb +74 -67
- data/spec/shared/delayed_method.rb +143 -102
- data/spec/shared/performable_method.rb +39 -38
- data/spec/shared/shared_backend.rb +534 -441
- data/spec/shared/testing.rb +14 -14
- data/spec/shared/worker.rb +155 -147
- data/spec/shared_jobs_specs.rb +13 -13
- data/spec/spec_helper.rb +43 -40
- metadata +81 -59
- data/lib/delayed/backend/redis/bulk_update.lua +0 -50
- data/lib/delayed/backend/redis/destroy_job.lua +0 -2
- data/lib/delayed/backend/redis/enqueue.lua +0 -29
- data/lib/delayed/backend/redis/fail_job.lua +0 -5
- data/lib/delayed/backend/redis/find_available.lua +0 -3
- data/lib/delayed/backend/redis/functions.rb +0 -59
- data/lib/delayed/backend/redis/get_and_lock_next_available.lua +0 -17
- data/lib/delayed/backend/redis/includes/jobs_common.lua +0 -203
- data/lib/delayed/backend/redis/job.rb +0 -528
- data/lib/delayed/backend/redis/set_running.lua +0 -5
- data/lib/delayed/backend/redis/tickle_strand.lua +0 -2
- data/spec/gemfiles/52.gemfile +0 -7
- data/spec/gemfiles/60.gemfile +0 -7
- data/spec/gemfiles/60.gemfile.lock +0 -246
- data/spec/gemfiles/61.gemfile +0 -7
- data/spec/redis_job_spec.rb +0 -148
@@ -1,246 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../..
|
3
|
-
specs:
|
4
|
-
inst-jobs (2.3.1)
|
5
|
-
activerecord (>= 5.2)
|
6
|
-
activesupport (>= 5.2)
|
7
|
-
after_transaction_commit (>= 1.0, < 3)
|
8
|
-
debug_inspector (~> 1.0)
|
9
|
-
fugit (~> 1.3)
|
10
|
-
railties (>= 5.2)
|
11
|
-
redis (> 3.0)
|
12
|
-
redis-scripting (~> 1.0.1)
|
13
|
-
|
14
|
-
GEM
|
15
|
-
remote: https://rubygems.org/
|
16
|
-
specs:
|
17
|
-
actioncable (6.0.3.7)
|
18
|
-
actionpack (= 6.0.3.7)
|
19
|
-
nio4r (~> 2.0)
|
20
|
-
websocket-driver (>= 0.6.1)
|
21
|
-
actionmailbox (6.0.3.7)
|
22
|
-
actionpack (= 6.0.3.7)
|
23
|
-
activejob (= 6.0.3.7)
|
24
|
-
activerecord (= 6.0.3.7)
|
25
|
-
activestorage (= 6.0.3.7)
|
26
|
-
activesupport (= 6.0.3.7)
|
27
|
-
mail (>= 2.7.1)
|
28
|
-
actionmailer (6.0.3.7)
|
29
|
-
actionpack (= 6.0.3.7)
|
30
|
-
actionview (= 6.0.3.7)
|
31
|
-
activejob (= 6.0.3.7)
|
32
|
-
mail (~> 2.5, >= 2.5.4)
|
33
|
-
rails-dom-testing (~> 2.0)
|
34
|
-
actionpack (6.0.3.7)
|
35
|
-
actionview (= 6.0.3.7)
|
36
|
-
activesupport (= 6.0.3.7)
|
37
|
-
rack (~> 2.0, >= 2.0.8)
|
38
|
-
rack-test (>= 0.6.3)
|
39
|
-
rails-dom-testing (~> 2.0)
|
40
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
41
|
-
actiontext (6.0.3.7)
|
42
|
-
actionpack (= 6.0.3.7)
|
43
|
-
activerecord (= 6.0.3.7)
|
44
|
-
activestorage (= 6.0.3.7)
|
45
|
-
activesupport (= 6.0.3.7)
|
46
|
-
nokogiri (>= 1.8.5)
|
47
|
-
actionview (6.0.3.7)
|
48
|
-
activesupport (= 6.0.3.7)
|
49
|
-
builder (~> 3.1)
|
50
|
-
erubi (~> 1.4)
|
51
|
-
rails-dom-testing (~> 2.0)
|
52
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
53
|
-
activejob (6.0.3.7)
|
54
|
-
activesupport (= 6.0.3.7)
|
55
|
-
globalid (>= 0.3.6)
|
56
|
-
activemodel (6.0.3.7)
|
57
|
-
activesupport (= 6.0.3.7)
|
58
|
-
activerecord (6.0.3.7)
|
59
|
-
activemodel (= 6.0.3.7)
|
60
|
-
activesupport (= 6.0.3.7)
|
61
|
-
activestorage (6.0.3.7)
|
62
|
-
actionpack (= 6.0.3.7)
|
63
|
-
activejob (= 6.0.3.7)
|
64
|
-
activerecord (= 6.0.3.7)
|
65
|
-
marcel (~> 1.0.0)
|
66
|
-
activesupport (6.0.3.7)
|
67
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
68
|
-
i18n (>= 0.7, < 2)
|
69
|
-
minitest (~> 5.1)
|
70
|
-
tzinfo (~> 1.1)
|
71
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
72
|
-
addressable (2.7.0)
|
73
|
-
public_suffix (>= 2.0.2, < 5.0)
|
74
|
-
after_transaction_commit (2.2.2)
|
75
|
-
activerecord (>= 5.2)
|
76
|
-
builder (3.2.4)
|
77
|
-
bump (0.10.0)
|
78
|
-
byebug (11.1.3)
|
79
|
-
coderay (1.1.3)
|
80
|
-
concurrent-ruby (1.1.9)
|
81
|
-
crack (0.4.5)
|
82
|
-
rexml
|
83
|
-
crass (1.0.6)
|
84
|
-
database_cleaner (2.0.1)
|
85
|
-
database_cleaner-active_record (~> 2.0.0)
|
86
|
-
database_cleaner-active_record (2.0.0)
|
87
|
-
activerecord (>= 5.a)
|
88
|
-
database_cleaner-core (~> 2.0.0)
|
89
|
-
database_cleaner-core (2.0.1)
|
90
|
-
debug_inspector (1.1.0)
|
91
|
-
deep_merge (1.2.1)
|
92
|
-
diff-lcs (1.4.4)
|
93
|
-
diplomat (2.5.1)
|
94
|
-
deep_merge (~> 1.2)
|
95
|
-
faraday (>= 0.9)
|
96
|
-
erubi (1.10.0)
|
97
|
-
et-orbi (1.2.4)
|
98
|
-
tzinfo
|
99
|
-
faraday (1.4.1)
|
100
|
-
faraday-excon (~> 1.1)
|
101
|
-
faraday-net_http (~> 1.0)
|
102
|
-
faraday-net_http_persistent (~> 1.1)
|
103
|
-
multipart-post (>= 1.2, < 3)
|
104
|
-
ruby2_keywords (>= 0.0.4)
|
105
|
-
faraday-excon (1.1.0)
|
106
|
-
faraday-net_http (1.0.1)
|
107
|
-
faraday-net_http_persistent (1.1.0)
|
108
|
-
fugit (1.4.5)
|
109
|
-
et-orbi (~> 1.1, >= 1.1.8)
|
110
|
-
raabro (~> 1.4)
|
111
|
-
globalid (0.4.2)
|
112
|
-
activesupport (>= 4.2.0)
|
113
|
-
hashdiff (1.0.1)
|
114
|
-
i18n (1.8.10)
|
115
|
-
concurrent-ruby (~> 1.0)
|
116
|
-
loofah (2.10.0)
|
117
|
-
crass (~> 1.0.2)
|
118
|
-
nokogiri (>= 1.5.9)
|
119
|
-
mail (2.7.1)
|
120
|
-
mini_mime (>= 0.1.1)
|
121
|
-
marcel (1.0.1)
|
122
|
-
method_source (1.0.0)
|
123
|
-
mini_mime (1.1.0)
|
124
|
-
minitest (5.14.4)
|
125
|
-
multi_json (1.15.0)
|
126
|
-
multipart-post (2.1.1)
|
127
|
-
mustermann (1.1.1)
|
128
|
-
ruby2_keywords (~> 0.0.1)
|
129
|
-
nio4r (2.5.7)
|
130
|
-
nokogiri (1.11.7-x86_64-darwin)
|
131
|
-
racc (~> 1.4)
|
132
|
-
pg (1.2.3)
|
133
|
-
pry (0.14.1)
|
134
|
-
coderay (~> 1.1)
|
135
|
-
method_source (~> 1.0)
|
136
|
-
public_suffix (4.0.6)
|
137
|
-
raabro (1.4.0)
|
138
|
-
racc (1.5.2)
|
139
|
-
rack (2.2.3)
|
140
|
-
rack-protection (2.1.0)
|
141
|
-
rack
|
142
|
-
rack-test (1.1.0)
|
143
|
-
rack (>= 1.0, < 3)
|
144
|
-
rails (6.0.3.7)
|
145
|
-
actioncable (= 6.0.3.7)
|
146
|
-
actionmailbox (= 6.0.3.7)
|
147
|
-
actionmailer (= 6.0.3.7)
|
148
|
-
actionpack (= 6.0.3.7)
|
149
|
-
actiontext (= 6.0.3.7)
|
150
|
-
actionview (= 6.0.3.7)
|
151
|
-
activejob (= 6.0.3.7)
|
152
|
-
activemodel (= 6.0.3.7)
|
153
|
-
activerecord (= 6.0.3.7)
|
154
|
-
activestorage (= 6.0.3.7)
|
155
|
-
activesupport (= 6.0.3.7)
|
156
|
-
bundler (>= 1.3.0)
|
157
|
-
railties (= 6.0.3.7)
|
158
|
-
sprockets-rails (>= 2.0.0)
|
159
|
-
rails-dom-testing (2.0.3)
|
160
|
-
activesupport (>= 4.2.0)
|
161
|
-
nokogiri (>= 1.6)
|
162
|
-
rails-html-sanitizer (1.3.0)
|
163
|
-
loofah (~> 2.3)
|
164
|
-
railties (6.0.3.7)
|
165
|
-
actionpack (= 6.0.3.7)
|
166
|
-
activesupport (= 6.0.3.7)
|
167
|
-
method_source
|
168
|
-
rake (>= 0.8.7)
|
169
|
-
thor (>= 0.20.3, < 2.0)
|
170
|
-
rake (13.0.3)
|
171
|
-
redis (4.2.5)
|
172
|
-
redis-scripting (1.0.1)
|
173
|
-
redis (>= 3.0)
|
174
|
-
rexml (3.2.5)
|
175
|
-
rspec (3.10.0)
|
176
|
-
rspec-core (~> 3.10.0)
|
177
|
-
rspec-expectations (~> 3.10.0)
|
178
|
-
rspec-mocks (~> 3.10.0)
|
179
|
-
rspec-core (3.10.1)
|
180
|
-
rspec-support (~> 3.10.0)
|
181
|
-
rspec-expectations (3.10.1)
|
182
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
183
|
-
rspec-support (~> 3.10.0)
|
184
|
-
rspec-mocks (3.10.2)
|
185
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
186
|
-
rspec-support (~> 3.10.0)
|
187
|
-
rspec-support (3.10.2)
|
188
|
-
ruby2_keywords (0.0.4)
|
189
|
-
sinatra (2.1.0)
|
190
|
-
mustermann (~> 1.0)
|
191
|
-
rack (~> 2.2)
|
192
|
-
rack-protection (= 2.1.0)
|
193
|
-
tilt (~> 2.0)
|
194
|
-
sinatra-contrib (2.1.0)
|
195
|
-
multi_json
|
196
|
-
mustermann (~> 1.0)
|
197
|
-
rack-protection (= 2.1.0)
|
198
|
-
sinatra (= 2.1.0)
|
199
|
-
tilt (~> 2.0)
|
200
|
-
sprockets (4.0.2)
|
201
|
-
concurrent-ruby (~> 1.0)
|
202
|
-
rack (> 1, < 3)
|
203
|
-
sprockets-rails (3.2.2)
|
204
|
-
actionpack (>= 4.0)
|
205
|
-
activesupport (>= 4.0)
|
206
|
-
sprockets (>= 3.0.0)
|
207
|
-
thor (1.1.0)
|
208
|
-
thread_safe (0.3.6)
|
209
|
-
tilt (2.0.10)
|
210
|
-
timecop (0.9.4)
|
211
|
-
tzinfo (1.2.9)
|
212
|
-
thread_safe (~> 0.1)
|
213
|
-
webmock (3.13.0)
|
214
|
-
addressable (>= 2.3.6)
|
215
|
-
crack (>= 0.3.2)
|
216
|
-
hashdiff (>= 0.4.0, < 2.0.0)
|
217
|
-
websocket-driver (0.7.5)
|
218
|
-
websocket-extensions (>= 0.1.0)
|
219
|
-
websocket-extensions (0.1.5)
|
220
|
-
wwtd (1.4.1)
|
221
|
-
zeitwerk (2.4.2)
|
222
|
-
|
223
|
-
PLATFORMS
|
224
|
-
x86_64-darwin-20
|
225
|
-
|
226
|
-
DEPENDENCIES
|
227
|
-
bump
|
228
|
-
byebug
|
229
|
-
database_cleaner (~> 2.0)
|
230
|
-
database_cleaner-active_record (~> 2.0)
|
231
|
-
diplomat (~> 2.5.1)
|
232
|
-
inst-jobs!
|
233
|
-
pg
|
234
|
-
pry
|
235
|
-
rack-test
|
236
|
-
rails (~> 6.0.0)
|
237
|
-
rake
|
238
|
-
rspec (~> 3.10)
|
239
|
-
sinatra (~> 2.0)
|
240
|
-
sinatra-contrib (~> 2.0)
|
241
|
-
timecop (= 0.9.4)
|
242
|
-
webmock
|
243
|
-
wwtd (~> 1.4.0)
|
244
|
-
|
245
|
-
BUNDLED WITH
|
246
|
-
2.2.17
|
data/spec/gemfiles/61.gemfile
DELETED
data/spec/redis_job_spec.rb
DELETED
@@ -1,148 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require File.expand_path("../spec_helper", __FILE__)
|
4
|
-
|
5
|
-
describe 'Delayed::Backend::Redis::Job' do
|
6
|
-
before :all do
|
7
|
-
Delayed.select_backend(Delayed::Backend::Redis::Job)
|
8
|
-
end
|
9
|
-
|
10
|
-
before do
|
11
|
-
Delayed::Testing.clear_all!
|
12
|
-
end
|
13
|
-
|
14
|
-
include_examples 'a delayed_jobs implementation'
|
15
|
-
|
16
|
-
describe "tickle_strand" do
|
17
|
-
it "should continue trying to tickle until the strand is empty" do
|
18
|
-
jobs = []
|
19
|
-
3.times { jobs << "test".delay(ignore_transaction: true, strand: "s1").to_s }
|
20
|
-
job = "test".delay(strand: "s1", ignore_transaction: true).to_s
|
21
|
-
# manually delete the first jobs, bypassing the strand book-keeping
|
22
|
-
jobs.each { |j| Delayed::Job.redis.del(Delayed::Job::Keys::JOB[j.id]) }
|
23
|
-
Delayed::Job.redis.llen(Delayed::Job::Keys::STRAND['s1']).should == 4
|
24
|
-
job.destroy
|
25
|
-
Delayed::Job.redis.llen(Delayed::Job::Keys::STRAND['s1']).should == 0
|
26
|
-
end
|
27
|
-
|
28
|
-
it "should tickle until it finds an existing job" do
|
29
|
-
jobs = []
|
30
|
-
3.times { jobs << "test".delay(strand: "s1", ignore_transaction: true).to_s }
|
31
|
-
job = "test".delay(strand: "s1", ignore_transaction: true).to_s
|
32
|
-
# manually delete the first jobs, bypassing the strand book-keeping
|
33
|
-
jobs[0...-1].each { |j| Delayed::Job.redis.del(Delayed::Job::Keys::JOB[j.id]) }
|
34
|
-
Delayed::Job.redis.llen(Delayed::Job::Keys::STRAND['s1']).should == 4
|
35
|
-
jobs[-1].destroy
|
36
|
-
Delayed::Job.redis.lrange(Delayed::Job::Keys::STRAND['s1'], 0, -1).should == [job.id]
|
37
|
-
found = [Delayed::Job.get_and_lock_next_available('test worker'),
|
38
|
-
Delayed::Job.get_and_lock_next_available('test worker')]
|
39
|
-
found.should =~ [job, nil]
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
describe "missing jobs in queues" do
|
44
|
-
before do
|
45
|
-
@job = "test".delay(ignore_transaction: true).to_s
|
46
|
-
@job2 = "test".delay(ignore_transaction: true).to_s
|
47
|
-
# manually delete the job from redis
|
48
|
-
Delayed::Job.redis.del(Delayed::Job::Keys::JOB[@job.id])
|
49
|
-
end
|
50
|
-
|
51
|
-
it "should discard when trying to lock" do
|
52
|
-
found = [Delayed::Job.get_and_lock_next_available("test worker"),
|
53
|
-
Delayed::Job.get_and_lock_next_available("test worker")]
|
54
|
-
found.should =~ [@job2, nil]
|
55
|
-
end
|
56
|
-
|
57
|
-
it "should filter for find_available" do
|
58
|
-
found = [Delayed::Job.find_available(1),
|
59
|
-
Delayed::Job.find_available(1)]
|
60
|
-
found.should be_include([@job2])
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
|
-
describe "delay" do
|
65
|
-
it "should schedule job on transaction commit" do
|
66
|
-
before_count = Delayed::Job.jobs_count(:current)
|
67
|
-
ActiveRecord::Base.transaction do
|
68
|
-
job = "string".delay.reverse
|
69
|
-
job.should be_nil
|
70
|
-
Delayed::Job.jobs_count(:current).should == before_count
|
71
|
-
end
|
72
|
-
Delayed::Job.jobs_count(:current) == before_count + 1
|
73
|
-
end
|
74
|
-
end
|
75
|
-
|
76
|
-
context 'n_strand' do
|
77
|
-
it "should default to 1" do
|
78
|
-
expect(Delayed::Job).to receive(:rand).never
|
79
|
-
job = Delayed::Job.enqueue(SimpleJob.new, :n_strand => 'njobs')
|
80
|
-
job.strand.should == "njobs"
|
81
|
-
end
|
82
|
-
|
83
|
-
it "should pick a strand randomly out of N" do
|
84
|
-
change_setting(Delayed::Settings, :num_strands, ->(strand_name) { expect(strand_name).to eql "njobs"; "3" }) do
|
85
|
-
expect(Delayed::Job).to receive(:rand).with(3).and_return(1)
|
86
|
-
job = Delayed::Job.enqueue(SimpleJob.new, :n_strand => 'njobs')
|
87
|
-
job.strand.should == "njobs:2"
|
88
|
-
end
|
89
|
-
end
|
90
|
-
|
91
|
-
context "with two parameters" do
|
92
|
-
it "should use the first param as the setting to read" do
|
93
|
-
job = Delayed::Job.enqueue(SimpleJob.new, n_strand: ["njobs", "123"])
|
94
|
-
job.strand.should == "njobs/123"
|
95
|
-
change_setting(Delayed::Settings, :num_strands, ->(strand_name) {
|
96
|
-
case strand_name
|
97
|
-
when "njobs"; 3
|
98
|
-
else nil
|
99
|
-
end
|
100
|
-
}) do
|
101
|
-
expect(Delayed::Job).to receive(:rand).with(3).and_return(1)
|
102
|
-
job = Delayed::Job.enqueue(SimpleJob.new, n_strand: ["njobs", "123"])
|
103
|
-
job.strand.should == "njobs/123:2"
|
104
|
-
end
|
105
|
-
end
|
106
|
-
|
107
|
-
it "should allow overridding the setting based on the second param" do
|
108
|
-
change_setting(Delayed::Settings, :num_strands, ->(strand_name) {
|
109
|
-
case strand_name
|
110
|
-
when "njobs/123"; 5
|
111
|
-
else nil
|
112
|
-
end
|
113
|
-
}) do
|
114
|
-
expect(Delayed::Job).to receive(:rand).with(5).and_return(3)
|
115
|
-
job = Delayed::Job.enqueue(SimpleJob.new, n_strand: ["njobs", "123"])
|
116
|
-
job.strand.should == "njobs/123:4"
|
117
|
-
job = Delayed::Job.enqueue(SimpleJob.new, n_strand: ["njobs", "456"])
|
118
|
-
job.strand.should == "njobs/456"
|
119
|
-
end
|
120
|
-
|
121
|
-
change_setting(Delayed::Settings, :num_strands, ->(strand_name) {
|
122
|
-
case strand_name
|
123
|
-
when "njobs/123"; 5
|
124
|
-
when "njobs"; 3
|
125
|
-
else nil
|
126
|
-
end
|
127
|
-
}) do
|
128
|
-
expect(Delayed::Job).to receive(:rand).with(5).and_return(2)
|
129
|
-
expect(Delayed::Job).to receive(:rand).with(3).and_return(1)
|
130
|
-
job = Delayed::Job.enqueue(SimpleJob.new, n_strand: ["njobs", "123"])
|
131
|
-
job.strand.should == "njobs/123:3"
|
132
|
-
job = Delayed::Job.enqueue(SimpleJob.new, n_strand: ["njobs", "456"])
|
133
|
-
job.strand.should == "njobs/456:2"
|
134
|
-
end
|
135
|
-
end
|
136
|
-
end
|
137
|
-
end
|
138
|
-
|
139
|
-
it "allows the API for fetching multiple jobs at once" do
|
140
|
-
jobs = 3.times.map { Delayed::Job.create :payload_object => SimpleJob.new }
|
141
|
-
locked_jobs = Delayed::Job.get_and_lock_next_available(['worker1', 'worker2'])
|
142
|
-
locked_jobs.length.should == 1
|
143
|
-
locked_jobs.keys.should == ['worker1']
|
144
|
-
jobs.map(&:id).should be_include(locked_jobs.values.first.id)
|
145
|
-
jobs.map { |j| Delayed::Job.find(j.id).locked_by }.compact.should == ['worker1']
|
146
|
-
end
|
147
|
-
|
148
|
-
end
|