ci-queue 0.22.1 → 0.23.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/lib/ci/queue/configuration.rb +4 -2
- data/lib/ci/queue/redis/build_record.rb +2 -0
- data/lib/ci/queue/redis/grind_record.rb +2 -0
- data/lib/ci/queue/redis/test_time_record.rb +2 -0
- data/lib/ci/queue/redis/worker.rb +9 -0
- data/lib/ci/queue/version.rb +1 -1
- data/lib/minitest/queue/runner.rb +11 -0
- data/lib/rspec/queue.rb +9 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 652049f77362ba8fa3fd01b79a0260c5ff17ba678751ee2424de463afe035d38
|
4
|
+
data.tar.gz: 745b2c493350d2315a10f36147d5d3b4cc74df74d5f38e82d2250f10be219d4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d47070eca76cfd6191cc003191af153ba2b40596dca4c3408325389a110ae1b798e99dcdb7e27b33c23d5bf457d6eab003dd608602a5df9de38741408d7bb48a
|
7
|
+
data.tar.gz: 0d2f4f69af4fc3714dbd6d5660d0e3106890a7bd5cef5782bae41847aa1552b35a8c9af6e77b7d8d18264b2100463062cb205f7ed45cef7646aeb2ff4ffe3bd3
|
data/README.md
CHANGED
@@ -70,3 +70,9 @@ rspec-queue --queue redis://example.com --timeout 600 --report
|
|
70
70
|
#### Limitations
|
71
71
|
|
72
72
|
Because of how `ci-queue` executes the examples, `before(:all)` and `after(:all)` hooks are not supported. `rspec-queue` will explicitly reject them.
|
73
|
+
|
74
|
+
## Custom Redis Expiry
|
75
|
+
|
76
|
+
`ci-queue` expects the Redis server to have an [eviction policy](https://redis.io/docs/manual/eviction/#eviction-policies) of `allkeys-lru`.
|
77
|
+
|
78
|
+
You can also use `--redis-ttl` to set a custom expiration time for all CI Queue keys, this defaults to 8 hours (28,800 seconds)
|
@@ -5,7 +5,7 @@ module CI
|
|
5
5
|
attr_accessor :timeout, :worker_id, :max_requeues, :grind_count, :failure_file
|
6
6
|
attr_accessor :requeue_tolerance, :namespace, :failing_test, :statsd_endpoint
|
7
7
|
attr_accessor :max_test_duration, :max_test_duration_percentile, :track_test_duration
|
8
|
-
attr_accessor :max_test_failed
|
8
|
+
attr_accessor :max_test_failed, :redis_ttl
|
9
9
|
attr_reader :circuit_breakers
|
10
10
|
attr_writer :seed, :build_id
|
11
11
|
attr_writer :queue_init_timeout
|
@@ -18,6 +18,7 @@ module CI
|
|
18
18
|
seed: env['CIRCLE_SHA1'] || env['BUILDKITE_COMMIT'] || env['TRAVIS_COMMIT'] || env['HEROKU_TEST_RUN_COMMIT_VERSION'] || env['SEMAPHORE_GIT_SHA'],
|
19
19
|
flaky_tests: load_flaky_tests(env['CI_QUEUE_FLAKY_TESTS']),
|
20
20
|
statsd_endpoint: env['CI_QUEUE_STATSD_ADDR'],
|
21
|
+
redis_ttl: env['CI_QUEUE_REDIS_TTL']&.to_i || 8 * 60 * 60,
|
21
22
|
)
|
22
23
|
end
|
23
24
|
|
@@ -34,7 +35,7 @@ module CI
|
|
34
35
|
namespace: nil, seed: nil, flaky_tests: [], statsd_endpoint: nil, max_consecutive_failures: nil,
|
35
36
|
grind_count: nil, max_duration: nil, failure_file: nil, max_test_duration: nil,
|
36
37
|
max_test_duration_percentile: 0.5, track_test_duration: false, max_test_failed: nil,
|
37
|
-
queue_init_timeout: nil
|
38
|
+
queue_init_timeout: nil, redis_ttl: 8 * 60 * 60
|
38
39
|
)
|
39
40
|
@build_id = build_id
|
40
41
|
@circuit_breakers = [CircuitBreaker::Disabled]
|
@@ -55,6 +56,7 @@ module CI
|
|
55
56
|
@worker_id = worker_id
|
56
57
|
self.max_consecutive_failures = max_consecutive_failures
|
57
58
|
self.max_duration = max_duration
|
59
|
+
@redis_ttl = redis_ttl
|
58
60
|
end
|
59
61
|
|
60
62
|
def queue_init_timeout
|
@@ -41,6 +41,7 @@ module CI
|
|
41
41
|
id.dup.force_encoding(Encoding::BINARY),
|
42
42
|
payload.dup.force_encoding(Encoding::BINARY),
|
43
43
|
)
|
44
|
+
pipeline.expire(key('error-reports'), config.redis_ttl)
|
44
45
|
record_stats(stats, pipeline: pipeline)
|
45
46
|
end
|
46
47
|
nil
|
@@ -90,6 +91,7 @@ module CI
|
|
90
91
|
return unless stats
|
91
92
|
stats.each do |stat_name, stat_value|
|
92
93
|
pipeline.hset(key(stat_name), config.worker_id, stat_value)
|
94
|
+
pipeline.expire(key(stat_name), config.redis_ttl)
|
93
95
|
end
|
94
96
|
end
|
95
97
|
|
@@ -16,6 +16,7 @@ module CI
|
|
16
16
|
key('error-reports'),
|
17
17
|
payload.force_encoding(Encoding::BINARY),
|
18
18
|
)
|
19
|
+
pipeline.expire(key('error-reports'), config.redis_ttl)
|
19
20
|
record_stats(stats, pipeline: pipeline)
|
20
21
|
end
|
21
22
|
nil
|
@@ -58,6 +59,7 @@ module CI
|
|
58
59
|
return unless stats
|
59
60
|
stats.each do |stat_name, stat_value|
|
60
61
|
pipeline.hset(key(stat_name), config.worker_id, stat_value)
|
62
|
+
pipeline.expire(key(stat_name), config.redis_ttl)
|
61
63
|
end
|
62
64
|
end
|
63
65
|
end
|
@@ -24,6 +24,7 @@ module CI
|
|
24
24
|
test_time_key(test_name),
|
25
25
|
duration.to_s.force_encoding(Encoding::BINARY),
|
26
26
|
)
|
27
|
+
pipeline.expire(test_time_key(test_name), config.redis_ttl)
|
27
28
|
end
|
28
29
|
nil
|
29
30
|
end
|
@@ -34,6 +35,7 @@ module CI
|
|
34
35
|
all_test_names_key,
|
35
36
|
test_name.dup.force_encoding(Encoding::BINARY),
|
36
37
|
)
|
38
|
+
pipeline.expire(all_test_names_key, config.redis_ttl)
|
37
39
|
end
|
38
40
|
nil
|
39
41
|
end
|
@@ -53,6 +53,10 @@ module CI
|
|
53
53
|
sleep 0.05
|
54
54
|
end
|
55
55
|
end
|
56
|
+
redis.pipelined do |pipeline|
|
57
|
+
pipeline.expire(key('worker', worker_id, 'queue'), config.redis_ttl)
|
58
|
+
pipeline.expire(key('processed'), config.redis_ttl)
|
59
|
+
end
|
56
60
|
rescue *CONNECTION_ERRORS
|
57
61
|
end
|
58
62
|
|
@@ -198,9 +202,14 @@ module CI
|
|
198
202
|
transaction.lpush(key('queue'), tests) unless tests.empty?
|
199
203
|
transaction.set(key('total'), @total)
|
200
204
|
transaction.set(key('master-status'), 'ready')
|
205
|
+
|
206
|
+
transaction.expire(key('queue'), config.redis_ttl)
|
207
|
+
transaction.expire(key('total'), config.redis_ttl)
|
208
|
+
transaction.expire(key('master-status'), config.redis_ttl)
|
201
209
|
end
|
202
210
|
end
|
203
211
|
register
|
212
|
+
redis.expire(key('workers'), config.redis_ttl)
|
204
213
|
rescue *CONNECTION_ERRORS
|
205
214
|
raise if @master
|
206
215
|
end
|
data/lib/ci/queue/version.rb
CHANGED
@@ -22,6 +22,9 @@ module Minitest
|
|
22
22
|
def initialize(argv)
|
23
23
|
@queue_config = CI::Queue::Configuration.from_env(ENV)
|
24
24
|
@command, @argv = parse(argv)
|
25
|
+
if Minitest.respond_to?(:seed=)
|
26
|
+
Minitest.seed = @queue_config.seed.to_i
|
27
|
+
end
|
25
28
|
end
|
26
29
|
|
27
30
|
def run!
|
@@ -487,6 +490,14 @@ module Minitest
|
|
487
490
|
end
|
488
491
|
end
|
489
492
|
|
493
|
+
help = <<~EOS
|
494
|
+
Defines how long the test report remain after the test run, in seconds.
|
495
|
+
Defaults to 28,800 (8 hours)
|
496
|
+
EOS
|
497
|
+
opts.on("--redis-ttl SECONDS", Integer, help) do |time|
|
498
|
+
queue.config.redis_ttl = time
|
499
|
+
end
|
500
|
+
|
490
501
|
opts.separator ""
|
491
502
|
opts.separator " retry: Replays a previous run in the same order."
|
492
503
|
|
data/lib/rspec/queue.rb
CHANGED
@@ -157,6 +157,15 @@ module RSpec
|
|
157
157
|
queue_config.max_consecutive_failures = Integer(max)
|
158
158
|
end
|
159
159
|
|
160
|
+
help = <<~EOS
|
161
|
+
Defines how long the test report remain after the test run, in seconds.
|
162
|
+
Defaults to 28,800 (8 hours)
|
163
|
+
EOS
|
164
|
+
parser.separator ""
|
165
|
+
parser.on("--redis-ttl SECONDS", Integer, help) do |time|
|
166
|
+
queue.config.redis_ttl = time
|
167
|
+
end
|
168
|
+
|
160
169
|
parser
|
161
170
|
end
|
162
171
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ci-queue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jean Boussier
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -239,7 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
239
239
|
- !ruby/object:Gem::Version
|
240
240
|
version: '0'
|
241
241
|
requirements: []
|
242
|
-
rubygems_version: 3.
|
242
|
+
rubygems_version: 3.3.3
|
243
243
|
signing_key:
|
244
244
|
specification_version: 4
|
245
245
|
summary: Distribute tests over many workers using a queue
|