sidekiq-routing 0.1.0
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 +7 -0
- data/LICENSE +21 -0
- data/README.md +233 -0
- data/lib/sidekiq/routing/auto/batch_rerouter.rb +67 -0
- data/lib/sidekiq/routing/auto/configuration.rb +62 -0
- data/lib/sidekiq/routing/auto/job_duration_tracker.rb +78 -0
- data/lib/sidekiq/routing/auto/noisy_neighbor_detector.rb +52 -0
- data/lib/sidekiq/routing/auto/reroute_job.rb +93 -0
- data/lib/sidekiq/routing/auto/router.rb +25 -0
- data/lib/sidekiq/routing/configuration.rb +41 -0
- data/lib/sidekiq/routing/middleware/client.rb +36 -0
- data/lib/sidekiq/routing/middleware/server.rb +38 -0
- data/lib/sidekiq/routing/mover.rb +34 -0
- data/lib/sidekiq/routing/parked_processor.rb +41 -0
- data/lib/sidekiq/routing/store.rb +41 -0
- data/lib/sidekiq/routing/sweeper.rb +61 -0
- data/lib/sidekiq/routing/version.rb +7 -0
- data/lib/sidekiq/routing/web/views/routing.erb +74 -0
- data/lib/sidekiq/routing/web.rb +28 -0
- data/lib/sidekiq/routing/web_extension.rb +27 -0
- data/lib/sidekiq/routing.rb +208 -0
- data/lib/sidekiq-routing.rb +28 -0
- metadata +88 -0
metadata
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: sidekiq-routing
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Vishnu M
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-06-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: sidekiq
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '7.0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '7.0'
|
|
27
|
+
description: |
|
|
28
|
+
sidekiq-routing gives you runtime control over which Sidekiq queue a
|
|
29
|
+
job class lands in or runs from — without a deploy. Park a misbehaving class
|
|
30
|
+
onto a worker-less parking queue (reversible), blackhole it (drop), or let
|
|
31
|
+
the optional auto-rerouter move noisy classes between latency tiers. Ships a
|
|
32
|
+
read-only Sidekiq Web tab. Routing state lives in a single Redis hash read
|
|
33
|
+
from a process-local snapshot, so the per-job hot path stays an in-memory
|
|
34
|
+
lookup rather than a Redis round-trip.
|
|
35
|
+
email:
|
|
36
|
+
- vishnu.m@bigbinary.com
|
|
37
|
+
executables: []
|
|
38
|
+
extensions: []
|
|
39
|
+
extra_rdoc_files: []
|
|
40
|
+
files:
|
|
41
|
+
- LICENSE
|
|
42
|
+
- README.md
|
|
43
|
+
- lib/sidekiq-routing.rb
|
|
44
|
+
- lib/sidekiq/routing.rb
|
|
45
|
+
- lib/sidekiq/routing/auto/batch_rerouter.rb
|
|
46
|
+
- lib/sidekiq/routing/auto/configuration.rb
|
|
47
|
+
- lib/sidekiq/routing/auto/job_duration_tracker.rb
|
|
48
|
+
- lib/sidekiq/routing/auto/noisy_neighbor_detector.rb
|
|
49
|
+
- lib/sidekiq/routing/auto/reroute_job.rb
|
|
50
|
+
- lib/sidekiq/routing/auto/router.rb
|
|
51
|
+
- lib/sidekiq/routing/configuration.rb
|
|
52
|
+
- lib/sidekiq/routing/middleware/client.rb
|
|
53
|
+
- lib/sidekiq/routing/middleware/server.rb
|
|
54
|
+
- lib/sidekiq/routing/mover.rb
|
|
55
|
+
- lib/sidekiq/routing/parked_processor.rb
|
|
56
|
+
- lib/sidekiq/routing/store.rb
|
|
57
|
+
- lib/sidekiq/routing/sweeper.rb
|
|
58
|
+
- lib/sidekiq/routing/version.rb
|
|
59
|
+
- lib/sidekiq/routing/web.rb
|
|
60
|
+
- lib/sidekiq/routing/web/views/routing.erb
|
|
61
|
+
- lib/sidekiq/routing/web_extension.rb
|
|
62
|
+
homepage: https://github.com/neetozone/sidekiq-routing
|
|
63
|
+
licenses:
|
|
64
|
+
- MIT
|
|
65
|
+
metadata:
|
|
66
|
+
source_code_uri: https://github.com/neetozone/sidekiq-routing
|
|
67
|
+
rubygems_mfa_required: 'true'
|
|
68
|
+
post_install_message:
|
|
69
|
+
rdoc_options: []
|
|
70
|
+
require_paths:
|
|
71
|
+
- lib
|
|
72
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - ">="
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '3.1'
|
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
requirements: []
|
|
83
|
+
rubygems_version: 3.5.22
|
|
84
|
+
signing_key:
|
|
85
|
+
specification_version: 4
|
|
86
|
+
summary: 'Runtime, per-job-class queue routing for Sidekiq: park, blackhole, and auto-reroute
|
|
87
|
+
job classes without a deploy.'
|
|
88
|
+
test_files: []
|