kubra-sidekiq-throttled 1.5.3
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.txt +23 -0
- data/README.adoc +416 -0
- data/lib/sidekiq/throttled/config.rb +66 -0
- data/lib/sidekiq/throttled/cooldown.rb +55 -0
- data/lib/sidekiq/throttled/errors.rb +8 -0
- data/lib/sidekiq/throttled/expirable_set.rb +70 -0
- data/lib/sidekiq/throttled/job.rb +143 -0
- data/lib/sidekiq/throttled/message.rb +32 -0
- data/lib/sidekiq/throttled/middlewares/server.rb +28 -0
- data/lib/sidekiq/throttled/patches/basic_fetch.rb +34 -0
- data/lib/sidekiq/throttled/patches/super_fetch.rb +39 -0
- data/lib/sidekiq/throttled/patches/throttled_retriever.rb +26 -0
- data/lib/sidekiq/throttled/registry.rb +120 -0
- data/lib/sidekiq/throttled/strategy/base.rb +25 -0
- data/lib/sidekiq/throttled/strategy/concurrency.lua +61 -0
- data/lib/sidekiq/throttled/strategy/concurrency.rb +127 -0
- data/lib/sidekiq/throttled/strategy/threshold.lua +14 -0
- data/lib/sidekiq/throttled/strategy/threshold.rb +104 -0
- data/lib/sidekiq/throttled/strategy.rb +213 -0
- data/lib/sidekiq/throttled/strategy_collection.rb +73 -0
- data/lib/sidekiq/throttled/version.rb +8 -0
- data/lib/sidekiq/throttled/web/stats.rb +75 -0
- data/lib/sidekiq/throttled/web/throttled.html.erb +35 -0
- data/lib/sidekiq/throttled/web.rb +43 -0
- data/lib/sidekiq/throttled/worker.rb +13 -0
- data/lib/sidekiq/throttled.rb +116 -0
- metadata +119 -0
metadata
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kubra-sidekiq-throttled
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.5.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Peter Williams
|
8
|
+
- Alexey Zapparov
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2025-03-25 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: concurrent-ruby
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ">="
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 1.2.0
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 1.2.0
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: redis-prescription
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '2.2'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '2.2'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: sidekiq
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '6.5'
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '6.5'
|
56
|
+
description:
|
57
|
+
email:
|
58
|
+
- peter.williams@kubra.com
|
59
|
+
- alexey@zapparov.com
|
60
|
+
executables: []
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files: []
|
63
|
+
files:
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.adoc
|
66
|
+
- lib/sidekiq/throttled.rb
|
67
|
+
- lib/sidekiq/throttled/config.rb
|
68
|
+
- lib/sidekiq/throttled/cooldown.rb
|
69
|
+
- lib/sidekiq/throttled/errors.rb
|
70
|
+
- lib/sidekiq/throttled/expirable_set.rb
|
71
|
+
- lib/sidekiq/throttled/job.rb
|
72
|
+
- lib/sidekiq/throttled/message.rb
|
73
|
+
- lib/sidekiq/throttled/middlewares/server.rb
|
74
|
+
- lib/sidekiq/throttled/patches/basic_fetch.rb
|
75
|
+
- lib/sidekiq/throttled/patches/super_fetch.rb
|
76
|
+
- lib/sidekiq/throttled/patches/throttled_retriever.rb
|
77
|
+
- lib/sidekiq/throttled/registry.rb
|
78
|
+
- lib/sidekiq/throttled/strategy.rb
|
79
|
+
- lib/sidekiq/throttled/strategy/base.rb
|
80
|
+
- lib/sidekiq/throttled/strategy/concurrency.lua
|
81
|
+
- lib/sidekiq/throttled/strategy/concurrency.rb
|
82
|
+
- lib/sidekiq/throttled/strategy/threshold.lua
|
83
|
+
- lib/sidekiq/throttled/strategy/threshold.rb
|
84
|
+
- lib/sidekiq/throttled/strategy_collection.rb
|
85
|
+
- lib/sidekiq/throttled/version.rb
|
86
|
+
- lib/sidekiq/throttled/web.rb
|
87
|
+
- lib/sidekiq/throttled/web/stats.rb
|
88
|
+
- lib/sidekiq/throttled/web/throttled.html.erb
|
89
|
+
- lib/sidekiq/throttled/worker.rb
|
90
|
+
homepage: https://github.com/pezra/sidekiq-throttled
|
91
|
+
licenses:
|
92
|
+
- MIT
|
93
|
+
metadata:
|
94
|
+
homepage_uri: https://github.com/pezra/sidekiq-throttled
|
95
|
+
source_code_uri: https://github.com/pezra/sidekiq-throttled/tree/v1.5.3
|
96
|
+
bug_tracker_uri: https://github.com/pezra/sidekiq-throttled/issues
|
97
|
+
changelog_uri: https://github.com/pezra/sidekiq-throttled/blob/v1.5.3/CHANGES.md
|
98
|
+
rubygems_mfa_required: 'true'
|
99
|
+
post_install_message:
|
100
|
+
rdoc_options: []
|
101
|
+
require_paths:
|
102
|
+
- lib
|
103
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
version: '2.7'
|
108
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
requirements: []
|
114
|
+
rubygems_version: 3.1.6
|
115
|
+
signing_key:
|
116
|
+
specification_version: 4
|
117
|
+
summary: Concurrency and rate-limit throttling for Sidekiq (w/ high volume throttling
|
118
|
+
improvements) )
|
119
|
+
test_files: []
|