clustered_rpc 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/.rspec +3 -0
- data/.travis.yml +7 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +63 -0
- data/LICENSE.txt +21 -0
- data/README.md +53 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/clustered_rpc.gemspec +40 -0
- data/lib/clustered_rpc.rb +65 -0
- data/lib/clustered_rpc/info.rb +59 -0
- data/lib/clustered_rpc/methods.rb +14 -0
- data/lib/clustered_rpc/proxy.rb +18 -0
- data/lib/clustered_rpc/transport/base.rb +46 -0
- data/lib/clustered_rpc/transport/local_process.rb +20 -0
- data/lib/clustered_rpc/transport/redis_cluster.rb +112 -0
- data/lib/clustered_rpc/version.rb +3 -0
- metadata +177 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b9bc292ea42805f08ade35dbd5ccc1856fecfdebff8443c943ee9bc4f9dd4a72
|
4
|
+
data.tar.gz: 3d18c96eecd6b8fe288a9130a9f15b660cc4031495d196c0fed5ea1a7aad1fb6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 54f0b6a5c19a38ef87c0acd1c75449a307fc4605812baa6986fb5ae0e4f1ac6abce3211e5b4989329212b885f7de9f9d99b89f115287ab4c6f5b89bbfe2d628d
|
7
|
+
data.tar.gz: 1e9fe2a6c30c8c8e970ee648b6fd57e8f9a31900507a820b5bddccccd140d68c905798fc0d40c1ae7da61f637b2c01dbc35886cd865187e2f59e65759376cbd3
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
clustered_rpc (0.1.0)
|
5
|
+
activesupport
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activesupport (6.1.3.1)
|
11
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
|
+
i18n (>= 1.6, < 2)
|
13
|
+
minitest (>= 5.1)
|
14
|
+
tzinfo (~> 2.0)
|
15
|
+
zeitwerk (~> 2.3)
|
16
|
+
awesome_print (1.8.0)
|
17
|
+
byebug (11.1.3)
|
18
|
+
concurrent-ruby (1.1.8)
|
19
|
+
diff-lcs (1.4.4)
|
20
|
+
docile (1.3.2)
|
21
|
+
i18n (1.8.10)
|
22
|
+
concurrent-ruby (~> 1.0)
|
23
|
+
json (2.3.0)
|
24
|
+
minitest (5.14.4)
|
25
|
+
rake (10.5.0)
|
26
|
+
redis (4.2.2)
|
27
|
+
rspec (3.10.0)
|
28
|
+
rspec-core (~> 3.10.0)
|
29
|
+
rspec-expectations (~> 3.10.0)
|
30
|
+
rspec-mocks (~> 3.10.0)
|
31
|
+
rspec-core (3.10.0)
|
32
|
+
rspec-support (~> 3.10.0)
|
33
|
+
rspec-expectations (3.10.0)
|
34
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
35
|
+
rspec-support (~> 3.10.0)
|
36
|
+
rspec-mocks (3.10.0)
|
37
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
38
|
+
rspec-support (~> 3.10.0)
|
39
|
+
rspec-support (3.10.0)
|
40
|
+
simplecov (0.17.1)
|
41
|
+
docile (~> 1.1)
|
42
|
+
json (>= 1.8, < 3)
|
43
|
+
simplecov-html (~> 0.10.0)
|
44
|
+
simplecov-html (0.10.2)
|
45
|
+
tzinfo (2.0.4)
|
46
|
+
concurrent-ruby (~> 1.0)
|
47
|
+
zeitwerk (2.4.2)
|
48
|
+
|
49
|
+
PLATFORMS
|
50
|
+
ruby
|
51
|
+
|
52
|
+
DEPENDENCIES
|
53
|
+
awesome_print
|
54
|
+
bundler (~> 2.0)
|
55
|
+
byebug
|
56
|
+
clustered_rpc!
|
57
|
+
rake (~> 10.0)
|
58
|
+
redis
|
59
|
+
rspec (~> 3.0)
|
60
|
+
simplecov
|
61
|
+
|
62
|
+
BUNDLED WITH
|
63
|
+
2.0.2
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 dhicks@verisys.com
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
# ClusteredRpc
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/clustered`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'clustered_rpc'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install clustered_rpc
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
Works on *static* class methods!!!
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
class MyClass
|
29
|
+
include ClusteredRpc::Methods
|
30
|
+
|
31
|
+
def self.do_the_thing
|
32
|
+
# important code living on many servers in the cluster
|
33
|
+
puts "I'm important!"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
# Run the method on every process running in the cluster
|
38
|
+
MyClass.clustered_rpc.do_the_thing
|
39
|
+
```
|
40
|
+
|
41
|
+
## Development
|
42
|
+
|
43
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
44
|
+
|
45
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
46
|
+
|
47
|
+
## Contributing
|
48
|
+
|
49
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/clustered.
|
50
|
+
|
51
|
+
## License
|
52
|
+
|
53
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "clustered"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
lib = File.expand_path("lib", __dir__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require "clustered_rpc/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "clustered_rpc"
|
7
|
+
spec.version = ClusteredRpc::VERSION
|
8
|
+
spec.authors = ["megalithtracers@gmail.com"]
|
9
|
+
spec.email = ["megalithtracers@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = %q{Allows Ruby RPC across clustered rails processes}
|
12
|
+
spec.description = %q{When you need to run code on all rails processes within a cluster. AppServers, Sidekiq, Resque, etc...}
|
13
|
+
spec.homepage = "http://megalithtracers.com"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
17
|
+
|
18
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
19
|
+
spec.metadata["source_code_uri"] = "https://github.com/megalithtracers/clustered_rpc"
|
20
|
+
spec.metadata["changelog_uri"] = "https://github.com/megalithtracers/clustered_rpc/CHANGELOG.md"
|
21
|
+
|
22
|
+
# Specify which files should be added to the gem when it is released.
|
23
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
24
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
25
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
26
|
+
end
|
27
|
+
spec.bindir = "exe"
|
28
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
29
|
+
spec.require_paths = ["lib"]
|
30
|
+
|
31
|
+
spec.add_dependency "activesupport"
|
32
|
+
|
33
|
+
spec.add_development_dependency "awesome_print"
|
34
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
35
|
+
spec.add_development_dependency "byebug"
|
36
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
37
|
+
spec.add_development_dependency "redis"
|
38
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
39
|
+
spec.add_development_dependency "simplecov"
|
40
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require "clustered_rpc/version"
|
2
|
+
require "securerandom"
|
3
|
+
require "logger"
|
4
|
+
require "json"
|
5
|
+
require "active_support/concern"
|
6
|
+
require "clustered_rpc/proxy"
|
7
|
+
require "clustered_rpc/transport/base"
|
8
|
+
|
9
|
+
module ClusteredRpc
|
10
|
+
class Error < StandardError; end
|
11
|
+
|
12
|
+
@@instance_id = SecureRandom.hex(5)
|
13
|
+
@@logger = ::Logger.new(STDOUT)
|
14
|
+
@@transport_class = nil
|
15
|
+
@@transport = nil
|
16
|
+
@@options = {}
|
17
|
+
|
18
|
+
def self.logger=(logger); @@logger = logger; end
|
19
|
+
def self.logger; @@logger; end
|
20
|
+
|
21
|
+
def self.instance_id=(instance_id); @@instance_id = instance_id; end
|
22
|
+
def self.instance_id; @@instance_id; end
|
23
|
+
|
24
|
+
def self.transport_class=(transport_class); @@transport_class = transport_class; end
|
25
|
+
def self.transport_class; @@transport_class; end
|
26
|
+
|
27
|
+
def self.options=(options); @@options = options; end
|
28
|
+
def self.options; @@options; end
|
29
|
+
|
30
|
+
# request_id should have been returned from the call to #cluster_send
|
31
|
+
def self.get_result(request_id, wait_seconds = 1.0)
|
32
|
+
sleep(wait_seconds) if wait_seconds
|
33
|
+
results = @@transport.get_result(request_id)
|
34
|
+
results.keys.each{|k| results[k] = JSON.parse(results[k])}
|
35
|
+
results # ??? Rails anyone? .with_indifferent_access
|
36
|
+
end
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
def self.config(force=false, &block)
|
41
|
+
block.call(self)
|
42
|
+
|
43
|
+
@@instance_id ||= SecureRandom.hex(5)
|
44
|
+
raise "Please set transport_class in ClusteredRpc.config" if transport_class.nil?
|
45
|
+
logger.info "Clustered using #{@@transport_class}"
|
46
|
+
@@transport = @@transport_class.new
|
47
|
+
@@transport.connect
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
def self.reconnect
|
52
|
+
@@transport.reconnect
|
53
|
+
@@transport
|
54
|
+
end
|
55
|
+
|
56
|
+
# payload will likely have keys: [:klass, :method, :args]
|
57
|
+
def self.publish(payload={})
|
58
|
+
# if :request_id is already present, then we're responding with a process-level response
|
59
|
+
# otherwise we're creating a new clustered_request and should generate a :request_io
|
60
|
+
payload[:request_id] ||= SecureRandom.hex(8)
|
61
|
+
@@transport.publish payload
|
62
|
+
payload[:request_id]
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'clustered/rpc_methods'
|
2
|
+
require 'open3'
|
3
|
+
|
4
|
+
module ClusteredRpc
|
5
|
+
class Info
|
6
|
+
include ClusteredRpc::Methods
|
7
|
+
|
8
|
+
def self.stats
|
9
|
+
require 'objspace'
|
10
|
+
{ instance_id: ClusteredRpc.instance_id,
|
11
|
+
transport_class: ClusteredRpc.transport_class.name.to_s,
|
12
|
+
options: ClusteredRpc.options,
|
13
|
+
process_id: Process.pid,
|
14
|
+
uptime: get_uptime,
|
15
|
+
used_mb: memory_used,
|
16
|
+
startup_command: startup_command,
|
17
|
+
process_type: lookup_process_type(startup_command),
|
18
|
+
count_objects_size: ObjectSpace.count_objects_size,
|
19
|
+
gc: GC.stat,
|
20
|
+
count_nodes: ObjectSpace.count_nodes
|
21
|
+
}
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.startup_command
|
26
|
+
"#{$0} #{$*}"
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.memory_used
|
30
|
+
(((100.0 * (`ps -o rss -p #{$$}`.strip.split.last.to_f / 1024.0)).to_i) / 100.0)
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.get_uptime
|
34
|
+
Open3.capture3("ps", "-p", Process.pid.to_s, "-o", "etime=").first.split("\n").first
|
35
|
+
end
|
36
|
+
|
37
|
+
def self.lookup_process_type(sc = startup_command)
|
38
|
+
process_type = if (sc == "script/rails []") || (sc == "bin/rails []") || ( sc =~ /spring app/)
|
39
|
+
"Rails Console"
|
40
|
+
elsif (sc =~ /sidekiq/)
|
41
|
+
"Sidekiq"
|
42
|
+
elsif (sc =~ /puma/)
|
43
|
+
"Web Server"
|
44
|
+
elsif (sc =~ /rspec/)
|
45
|
+
"Rspec"
|
46
|
+
elsif sc =~ /scheduler/
|
47
|
+
"Resque Scheduler"
|
48
|
+
elsif sc =~ /resque:work/
|
49
|
+
"Resque Worker"
|
50
|
+
elsif sc =~ /rules:redis/
|
51
|
+
"Rules Engine"
|
52
|
+
else
|
53
|
+
sc
|
54
|
+
end
|
55
|
+
process_type
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module ClusteredRpc
|
2
|
+
class Proxy
|
3
|
+
def initialize(target, options)
|
4
|
+
@target = target
|
5
|
+
@options = options
|
6
|
+
end
|
7
|
+
|
8
|
+
def method_missing(method, *args, **kwargs)
|
9
|
+
wait_seconds = (@options[:wait_seconds] || ENV['CLUSTERED_RPC_WAIT_SECONDS'] || 1.0).to_i
|
10
|
+
request_id = ::ClusteredRpc.publish({'klass' => @target.name, 'method' => method, 'args' => args, 'kwargs' => kwargs}.merge(@options))
|
11
|
+
{request_id: request_id, success: true, results: ::ClusteredRpc.get_result(request_id, wait_seconds)}
|
12
|
+
rescue => e
|
13
|
+
ClusteredRpc.logger.error "ClusteredRpc::Proxy encountered errror: #{e.message}"
|
14
|
+
{request_id: "Error", success: false, results: e.message}
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
module ClusteredRpc
|
2
|
+
module Transport
|
3
|
+
class Base
|
4
|
+
|
5
|
+
def get_result(request_id)
|
6
|
+
raise "Subclassers must implement this to retrieve results"
|
7
|
+
end
|
8
|
+
|
9
|
+
def connect
|
10
|
+
# Subclassers should implement this
|
11
|
+
end
|
12
|
+
|
13
|
+
def subscribed?
|
14
|
+
# Subclassers should implement this if they offer keep_alive guarantees
|
15
|
+
end
|
16
|
+
|
17
|
+
def reconnect
|
18
|
+
# Subclassers should implement this if they offer keep_alive guarantees
|
19
|
+
end
|
20
|
+
|
21
|
+
def run_method_from_message(payload)
|
22
|
+
klass=payload['klass']
|
23
|
+
method=payload['method']
|
24
|
+
klass = Object.const_get(klass) rescue nil if klass.is_a? String
|
25
|
+
if klass
|
26
|
+
start_time = Time.now
|
27
|
+
args = payload['args']
|
28
|
+
kwargs = payload['kwargs']
|
29
|
+
kwargs = Hash[kwargs.map{|k,v| [k.to_sym, v] }] if kwargs
|
30
|
+
result = if args && args.length > 0 && kwargs && kwargs.length > 0
|
31
|
+
klass.send method.to_sym, *args, **kwargs
|
32
|
+
elsif kwargs && kwargs.length > 0
|
33
|
+
klass.send method.to_sym, **kwargs
|
34
|
+
elsif args && args.length > 0
|
35
|
+
klass.send method.to_sym, *args
|
36
|
+
else
|
37
|
+
klass.send method.to_sym
|
38
|
+
end
|
39
|
+
seconds = Time.now - start_time
|
40
|
+
end
|
41
|
+
{seconds: seconds, result: result}
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module ClusteredRpc
|
2
|
+
module Transport
|
3
|
+
class LocalProcess < ClusteredRpc::Transport::Base
|
4
|
+
|
5
|
+
|
6
|
+
def publish(payload={})
|
7
|
+
result = run_method_from_message(payload)
|
8
|
+
Thread.current[:clustered_pass_through_result] = { ClusteredRpc.instance_id => result.to_json}
|
9
|
+
end
|
10
|
+
|
11
|
+
def get_result(request_id)
|
12
|
+
Thread.current[:clustered_pass_through_result]
|
13
|
+
end
|
14
|
+
|
15
|
+
def method_missing(method, *args)
|
16
|
+
raise "LocalProcess cluster attempted to call missing method [#{method}]. Do you have missing Redis configuration?"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,112 @@
|
|
1
|
+
require 'redis'
|
2
|
+
|
3
|
+
module ClusteredRpc
|
4
|
+
module Transport
|
5
|
+
class RedisCluster < ClusteredRpc::Transport::Base
|
6
|
+
|
7
|
+
def initialize
|
8
|
+
@redis_subscriber = nil
|
9
|
+
@redis_publish = nil
|
10
|
+
@redis_message_pubsub_key = "__cluster_messages"
|
11
|
+
connect
|
12
|
+
end
|
13
|
+
|
14
|
+
def publish(payload={})
|
15
|
+
@redis_publish.publish @redis_message_pubsub_key, payload.to_json
|
16
|
+
rescue => e
|
17
|
+
ClusteredRpc.logger.error "ClusteredRpc.publish encountered errror: #{e.message}"
|
18
|
+
raise e
|
19
|
+
end
|
20
|
+
|
21
|
+
def get_result(request_id)
|
22
|
+
hgetall("request:#{request_id}")
|
23
|
+
end
|
24
|
+
|
25
|
+
def reconnect
|
26
|
+
@redis_publish = nil
|
27
|
+
if @subscriber_thread
|
28
|
+
ClusteredRpc.logger.warn "ClusteredRpc: killing subscriber thread"
|
29
|
+
@subscriber_thread.kill
|
30
|
+
@redis_subscriber = nil
|
31
|
+
end
|
32
|
+
connect
|
33
|
+
end
|
34
|
+
|
35
|
+
def hgetall(key_name)
|
36
|
+
@redis_publish.hgetall key_name
|
37
|
+
end
|
38
|
+
|
39
|
+
def subscribed?
|
40
|
+
@subscribed
|
41
|
+
end
|
42
|
+
|
43
|
+
def connect
|
44
|
+
return if !@redis_subscriber.nil? # already connected - call reconnect...
|
45
|
+
@redis_subscriber = ::Redis.new(ClusteredRpc.options)
|
46
|
+
@redis_publish = ::Redis.new(ClusteredRpc.options)
|
47
|
+
@subscribed = false
|
48
|
+
@subscriber_thread = Thread.new do
|
49
|
+
begin
|
50
|
+
@redis_subscriber.subscribe( @redis_message_pubsub_key ) do |on|
|
51
|
+
on.subscribe do |channel, subscriptions|
|
52
|
+
@retry_count = 0
|
53
|
+
ClusteredRpc.logger.info {"ClusteredRpc: Subscribed to ##{channel} (#{subscriptions} subscriptions)"}
|
54
|
+
@subscribed = true
|
55
|
+
end
|
56
|
+
|
57
|
+
on.message do |channel, message|
|
58
|
+
ClusteredRpc.logger.debug {"ClusteredRpc: Handling message ##{channel}: #{message}"}
|
59
|
+
begin
|
60
|
+
message = JSON.parse(message) rescue message
|
61
|
+
if message.is_a? Hash
|
62
|
+
result = run_method_from_message(message)
|
63
|
+
ClusteredRpc.logger.debug {"ClusteredRpc: Got result: #{result}"}
|
64
|
+
request_id = message['request_id']
|
65
|
+
if request_id
|
66
|
+
# Store the result for 10 minutes in hash identified by the request_id and for this particular PID
|
67
|
+
ClusteredRpc.logger.debug {"Setting ClusterSend result: request:#{request_id}[#{Process.pid}]"}
|
68
|
+
@redis_publish.pipelined do
|
69
|
+
@redis_publish.hmset "request:#{request_id}", ClusteredRpc.instance_id, result.to_json
|
70
|
+
@redis_publish.expire "request:#{request_id}", 600
|
71
|
+
end
|
72
|
+
end
|
73
|
+
else
|
74
|
+
ClusteredRpc.logger.warn "Unknown message type: #{message.class}"
|
75
|
+
end
|
76
|
+
rescue => e
|
77
|
+
ClusteredRpc.logger.error e.backtrace.join("\n")
|
78
|
+
ClusteredRpc.logger.error "Error[#{e.message}] Handling message ##{channel}: #{message}"
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
on.unsubscribe do |channel, subscriptions|
|
83
|
+
ClusteredRpc.logger.info {"ClusteredRpc: Unsubscribed from ##{channel} (#{subscriptions} subscriptions)"}
|
84
|
+
end
|
85
|
+
end
|
86
|
+
rescue Redis::BaseConnectionError => e
|
87
|
+
ClusteredRpc.logger.error e.message
|
88
|
+
@retry_count ||= 0
|
89
|
+
@retry_count += 1
|
90
|
+
sleep_seconds = [[@retry_count,10].min, 5].max
|
91
|
+
ClusteredRpc.logger.warn "ClusteredRpc: Retrying redis connection in #{sleep_seconds} seconds: #{@retry_count}"
|
92
|
+
ClusteredRpc.logger.info @config
|
93
|
+
sleep sleep_seconds
|
94
|
+
retry if @retry_count <= 300
|
95
|
+
ClusteredRpc.logger.warn "ClusteredRpc: Could not reconnect to Redis"
|
96
|
+
ensure
|
97
|
+
ClusteredRpc.logger.info "ClusteredRpc: Subscription thread terminated..."
|
98
|
+
@subscribed = false
|
99
|
+
end # begin
|
100
|
+
end # @subscriber_thread = Thread.new do
|
101
|
+
# Give the subscriber a chance to connect in background thread before returning
|
102
|
+
attempts = 0
|
103
|
+
while !subscribed? do
|
104
|
+
sleep(1)
|
105
|
+
attempts += 1
|
106
|
+
ClusteredRpc.logger.info "ClusteredRpc: Waiting for subscription...#{attempts} times"
|
107
|
+
raise "ClusteredRpc: Could not subscribe after #{attempts} attempts" if attempts > 15
|
108
|
+
end
|
109
|
+
end # def connect
|
110
|
+
end # class RedisCluster < Clustered::Transport::Base
|
111
|
+
end # module Transport
|
112
|
+
end # module Clustered
|
metadata
ADDED
@@ -0,0 +1,177 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: clustered_rpc
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- megalithtracers@gmail.com
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-04-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: awesome_print
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: byebug
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '10.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '10.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: redis
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
description: When you need to run code on all rails processes within a cluster. AppServers,
|
126
|
+
Sidekiq, Resque, etc...
|
127
|
+
email:
|
128
|
+
- megalithtracers@gmail.com
|
129
|
+
executables: []
|
130
|
+
extensions: []
|
131
|
+
extra_rdoc_files: []
|
132
|
+
files:
|
133
|
+
- ".rspec"
|
134
|
+
- ".travis.yml"
|
135
|
+
- Gemfile
|
136
|
+
- Gemfile.lock
|
137
|
+
- LICENSE.txt
|
138
|
+
- README.md
|
139
|
+
- Rakefile
|
140
|
+
- bin/console
|
141
|
+
- bin/setup
|
142
|
+
- clustered_rpc.gemspec
|
143
|
+
- lib/clustered_rpc.rb
|
144
|
+
- lib/clustered_rpc/info.rb
|
145
|
+
- lib/clustered_rpc/methods.rb
|
146
|
+
- lib/clustered_rpc/proxy.rb
|
147
|
+
- lib/clustered_rpc/transport/base.rb
|
148
|
+
- lib/clustered_rpc/transport/local_process.rb
|
149
|
+
- lib/clustered_rpc/transport/redis_cluster.rb
|
150
|
+
- lib/clustered_rpc/version.rb
|
151
|
+
homepage: http://megalithtracers.com
|
152
|
+
licenses:
|
153
|
+
- MIT
|
154
|
+
metadata:
|
155
|
+
homepage_uri: http://megalithtracers.com
|
156
|
+
source_code_uri: https://github.com/megalithtracers/clustered_rpc
|
157
|
+
changelog_uri: https://github.com/megalithtracers/clustered_rpc/CHANGELOG.md
|
158
|
+
post_install_message:
|
159
|
+
rdoc_options: []
|
160
|
+
require_paths:
|
161
|
+
- lib
|
162
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
168
|
+
requirements:
|
169
|
+
- - ">="
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
version: '0'
|
172
|
+
requirements: []
|
173
|
+
rubygems_version: 3.2.16
|
174
|
+
signing_key:
|
175
|
+
specification_version: 4
|
176
|
+
summary: Allows Ruby RPC across clustered rails processes
|
177
|
+
test_files: []
|