sidekiq_namespaced 0.0.1
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/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +27 -0
- data/Rakefile +2 -0
- data/lib/sidekiq_namespaced/version.rb +3 -0
- data/lib/sidekiq_namespaced.rb +35 -0
- data/sidekiq_namespaced.gemspec +23 -0
- data/spec/sidekiq_namespace_spec.rb +18 -0
- metadata +97 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1fa1c95c6284821735d1212ba02fa137f2be8bfd
|
4
|
+
data.tar.gz: dc3f8485a014f439b353a03927ff01a91d0b67dc
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 742bf095783d16841444857b06c54eb948a76f84387142e57a9a7ff868bb385a9a61ea89cf5c4ef3f62de8fc4a3a81fef84316d2e2471b96fc357bbef8753d4a
|
7
|
+
data.tar.gz: 84298fc437e596ece1f0408fb9a1aa510ed76795b733d08074df9dec6f69e384d22fc5aa94033f1e9f9dbd5b9b2fdd266cde968138e842258cc42cb9a92821ec
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Alex Bartlow
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# SidekiqNamespaced
|
2
|
+
|
3
|
+
Allows simple overrides of your regularly scheduled sidekiq namespace, for
|
4
|
+
example, when you have multiple sidekiq clusters and you want to pull stats for
|
5
|
+
all of them, or use the native sidekiq methods to enqueue jobs to a different
|
6
|
+
cluster.
|
7
|
+
|
8
|
+
Requires sidekiq 3.0
|
9
|
+
|
10
|
+
## Usage
|
11
|
+
|
12
|
+
````
|
13
|
+
SidekiqNamespaced.decorate(Sidekiq)
|
14
|
+
|
15
|
+
Sidekiq.with_namespace("cluster-two") do
|
16
|
+
@stats = Sidekiq::Stats.new
|
17
|
+
# do some stuff with "cluster-two's" stats
|
18
|
+
end
|
19
|
+
````
|
20
|
+
|
21
|
+
## Contributing
|
22
|
+
|
23
|
+
1. Fork it ( https://github.com/alexbartlow/sidekiq_namespaced/fork )
|
24
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
25
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
26
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
27
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'sidekiq'
|
2
|
+
require 'redis'
|
3
|
+
require 'redis/namespace'
|
4
|
+
module SidekiqNamespaced
|
5
|
+
def with_namespace namespace, &block
|
6
|
+
begin
|
7
|
+
Thread.current[:sidekiq_namespace_override] = namespace
|
8
|
+
block.call
|
9
|
+
ensure
|
10
|
+
Thread.current[:sidekiq_namespace_override] = nil
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def redis_with_namespace &block
|
15
|
+
redis_without_namespace do |conn|
|
16
|
+
raw_client = conn.is_a?(Redis::Namespace) ? conn.redis : conn
|
17
|
+
if Thread.current[:sidekiq_namespace_override]
|
18
|
+
conn_with_namespace = Redis::Namespace.new(Thread.current[:sidekiq_namespace_override], redis: raw_client)
|
19
|
+
block.call(conn_with_namespace)
|
20
|
+
else
|
21
|
+
block.call(conn)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.decorate(base)
|
27
|
+
base.send(:extend, self)
|
28
|
+
singleton_class = class << base
|
29
|
+
self
|
30
|
+
end
|
31
|
+
singleton_class.send(:alias_method, :redis_without_namespace, :redis)
|
32
|
+
singleton_class.send(:alias_method, :redis, :redis_with_namespace)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'sidekiq_namespaced/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "sidekiq_namespaced"
|
8
|
+
spec.version = SidekiqNamespaced::VERSION
|
9
|
+
spec.authors = ["Alex Bartlow"]
|
10
|
+
spec.email = ["bartlowa@gmail.com"]
|
11
|
+
spec.summary = %q{Provides the Sidekiq.with_namepace function to access different namespaces through sidekiq's API}
|
12
|
+
spec.homepage = ""
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0")
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
spec.add_dependency "sidekiq", "~> 3.0"
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require File.expand_path("../../lib/sidekiq_namespaced", __FILE__)
|
2
|
+
|
3
|
+
describe SidekiqNamespaced do
|
4
|
+
SidekiqNamespaced.decorate(Sidekiq)
|
5
|
+
it "should allow setting namespace" do
|
6
|
+
Sidekiq.with_namespace("test-namespace") do
|
7
|
+
Sidekiq.redis do |conn|
|
8
|
+
expect(conn.namespace).to eq "test-namespace"
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should not decorate the namespace outside of the with_namespace block" do
|
14
|
+
Sidekiq.redis do |conn|
|
15
|
+
expect(conn).not_to respond_to(:namespace)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sidekiq_namespaced
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alex Bartlow
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-12-27 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: '3.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.7'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.7'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- bartlowa@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- .gitignore
|
63
|
+
- Gemfile
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- lib/sidekiq_namespaced.rb
|
68
|
+
- lib/sidekiq_namespaced/version.rb
|
69
|
+
- sidekiq_namespaced.gemspec
|
70
|
+
- spec/sidekiq_namespace_spec.rb
|
71
|
+
homepage: ''
|
72
|
+
licenses:
|
73
|
+
- MIT
|
74
|
+
metadata: {}
|
75
|
+
post_install_message:
|
76
|
+
rdoc_options: []
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - '>='
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
requirements: []
|
90
|
+
rubyforge_project:
|
91
|
+
rubygems_version: 2.2.2
|
92
|
+
signing_key:
|
93
|
+
specification_version: 4
|
94
|
+
summary: Provides the Sidekiq.with_namepace function to access different namespaces
|
95
|
+
through sidekiq's API
|
96
|
+
test_files:
|
97
|
+
- spec/sidekiq_namespace_spec.rb
|