clustered_rpc 0.1.0 → 0.2.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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +95 -5
- data/lib/clustered_rpc.rb +9 -2
- data/lib/clustered_rpc/info.rb +9 -6
- data/lib/clustered_rpc/transport/redis_cluster.rb +1 -1
- data/lib/clustered_rpc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdb73943e182ea222043e914d49a263e20df8aa8db4c2ccc47eefab74061edb6
|
4
|
+
data.tar.gz: 82547d220ca00679d58701089728728194206e9cbcfc844040acef32b3b9b8d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d7aa773597cc740ab719bcc2ab510197b0db60041ae26e18eb97807b31c97890baa78fffa5f485e50ae15c0a162f2c85da8dde91c5aa7e7648939dab0af5e33
|
7
|
+
data.tar.gz: 1371470d9cd5a1db5fc95404df7d97e3fa7cfbd99da2c48a8c01b3ed1fecd65cae2308d03eda82d3250ae1a1e2d45b060ce58b6d057d0f8b4ad01b8420ad0a37
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# ClusteredRpc
|
2
|
+
_RPC = Remote Procedure Calls_
|
2
3
|
|
3
|
-
|
4
|
+
ClusteredRpc allows you to run code on every ruby process running within your cluster.
|
5
|
+
|
6
|
+
Clusters are defined using a shared pubsub broker and a common namespace.
|
7
|
+
|
8
|
+
Currently only Redis PubSub is supported by ClusteredRpc.
|
4
9
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
10
|
|
7
11
|
## Installation
|
8
12
|
|
@@ -20,24 +24,110 @@ Or install it yourself as:
|
|
20
24
|
|
21
25
|
$ gem install clustered_rpc
|
22
26
|
|
27
|
+
## Configuration
|
28
|
+
```ruby
|
29
|
+
# Using Redis PubSub
|
30
|
+
ClusteredRpc.config do |c|
|
31
|
+
c.transport_class = ClusteredRpc::Transport::RedisCluster
|
32
|
+
c.cluster_namespace = "myapplication"
|
33
|
+
c.options = {redis_url: "redis://127.0.0.1:6379/3"}
|
34
|
+
end
|
35
|
+
|
36
|
+
```
|
37
|
+
If you are using the same redis server for multiple deployments of your application, then use different namespaces for each.
|
38
|
+
```ruby
|
39
|
+
ClusteredRpc.config do |c|
|
40
|
+
c.transport_class = ClusteredRpc::Transport::RedisCluster
|
41
|
+
# Using the same redis database for the development environment as well...
|
42
|
+
c.cluster_namespace = "myapplication_dev"
|
43
|
+
c.options = {redis_url: "redis://127.0.0.1:6379/3"}
|
44
|
+
end
|
45
|
+
```
|
23
46
|
## Usage
|
24
47
|
|
25
|
-
|
48
|
+
ClusteredRpc allows static (class) methods to be run on every process within the cluster!
|
26
49
|
|
27
50
|
```ruby
|
28
51
|
class MyClass
|
52
|
+
# makes all static-methods available via 'clustered_rpc' proxy method
|
29
53
|
include ClusteredRpc::Methods
|
30
54
|
|
31
55
|
def self.do_the_thing
|
32
56
|
# important code living on many servers in the cluster
|
33
|
-
|
57
|
+
return "I'm important!"
|
34
58
|
end
|
35
59
|
end
|
36
60
|
|
37
61
|
# Run the method on every process running in the cluster
|
62
|
+
# `do_the_thing` is run on each process and the results are returned in a Hash
|
38
63
|
MyClass.clustered_rpc.do_the_thing
|
64
|
+
=> {
|
65
|
+
:request_id => "f030b020e058d7a4",
|
66
|
+
:success => true,
|
67
|
+
:results => {
|
68
|
+
"1ca8a7be5e" => {
|
69
|
+
"seconds" => 3.3e-05,
|
70
|
+
"result" => "I'm important"
|
71
|
+
},
|
72
|
+
"293a7be9ac" => {
|
73
|
+
"seconds" => 4.2e-05,
|
74
|
+
"result" => "I'm important"
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
39
78
|
```
|
79
|
+
The keys in the results Hash (`1ca8a7be5e` and `293a7be9ac`) are the unique instance_ids assigned to each process by ClusteredRpc
|
80
|
+
|
81
|
+
```ruby
|
82
|
+
# Get the stats for your entire cluster
|
83
|
+
ClusteredRpc::Info.clustered_rpc.stats
|
84
|
+
=> {
|
85
|
+
:request_id => "c634e6347b98a0",
|
86
|
+
:success => true,
|
87
|
+
:results => {
|
88
|
+
"ica817be5e" => {
|
89
|
+
:instance_id => "1ca8a7be5e",
|
90
|
+
:transport_class => "ClusteredRpc::Transport::LocalProcess",
|
91
|
+
:options => {},
|
92
|
+
:process_id => 23566,
|
93
|
+
:uptime => "03:14",
|
94
|
+
:used_mb => 35.03,
|
95
|
+
:startup_command => "ruby-2.5.1/bin/rails console",
|
96
|
+
:process_type => "Rails Console",
|
97
|
+
:count_nodes => {}
|
98
|
+
},
|
99
|
+
{
|
100
|
+
:instance_id => "293a7be9ac",
|
101
|
+
:transport_class => "ClusteredRpc::Transport::LocalProcess",
|
102
|
+
:options => {},
|
103
|
+
:process_id => 23736,
|
104
|
+
:uptime => "42:22",
|
105
|
+
:used_mb => 127.69,
|
106
|
+
:startup_command => "ruby-2.5.1/bin/puma",
|
107
|
+
:process_type => "Web Server",
|
108
|
+
:count_nodes => {}
|
109
|
+
}
|
110
|
+
|
111
|
+
}
|
112
|
+
}
|
40
113
|
|
114
|
+
```
|
115
|
+
Of course, methods can be run locally (without `.clustered_rpc`) as well
|
116
|
+
```ruby
|
117
|
+
# Get the stats for the local process
|
118
|
+
ClusteredRpc::Info.stats
|
119
|
+
=> {
|
120
|
+
:instance_id => "1ca8a7be5e",
|
121
|
+
:transport_class => "ClusteredRpc::Transport::LocalProcess",
|
122
|
+
:options => {},
|
123
|
+
:process_id => 23566,
|
124
|
+
:uptime => "00:01",
|
125
|
+
:used_mb => 35.03,
|
126
|
+
:startup_command => "ruby-2.5.1/bin/rails console",
|
127
|
+
:process_type => "Rails Console",
|
128
|
+
:count_nodes => {}
|
129
|
+
}
|
130
|
+
```
|
41
131
|
## Development
|
42
132
|
|
43
133
|
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.
|
@@ -46,7 +136,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
46
136
|
|
47
137
|
## Contributing
|
48
138
|
|
49
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
139
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/megalithtracers/clustered_rpc.
|
50
140
|
|
51
141
|
## License
|
52
142
|
|
data/lib/clustered_rpc.rb
CHANGED
@@ -11,6 +11,7 @@ module ClusteredRpc
|
|
11
11
|
|
12
12
|
@@instance_id = SecureRandom.hex(5)
|
13
13
|
@@logger = ::Logger.new(STDOUT)
|
14
|
+
@@cluster_namespace = "clustered_rpc"
|
14
15
|
@@transport_class = nil
|
15
16
|
@@transport = nil
|
16
17
|
@@options = {}
|
@@ -21,6 +22,9 @@ module ClusteredRpc
|
|
21
22
|
def self.instance_id=(instance_id); @@instance_id = instance_id; end
|
22
23
|
def self.instance_id; @@instance_id; end
|
23
24
|
|
25
|
+
def self.cluster_namespace=(cluster_namespace); @@cluster_namespace = cluster_namespace; end
|
26
|
+
def self.cluster_namespace; @@cluster_namespace; end
|
27
|
+
|
24
28
|
def self.transport_class=(transport_class); @@transport_class = transport_class; end
|
25
29
|
def self.transport_class; @@transport_class; end
|
26
30
|
|
@@ -41,8 +45,11 @@ module ClusteredRpc
|
|
41
45
|
block.call(self)
|
42
46
|
|
43
47
|
@@instance_id ||= SecureRandom.hex(5)
|
44
|
-
|
45
|
-
|
48
|
+
if transport_class.nil?
|
49
|
+
require "clustered_rpc/transport/local_process"
|
50
|
+
@@transport_class = ClusteredRpc::Transport::LocalProcess
|
51
|
+
end
|
52
|
+
logger.info "Clustered using #{@@transport_class}[#{@@cluster_namespace}]"
|
46
53
|
@@transport = @@transport_class.new
|
47
54
|
@@transport.connect
|
48
55
|
|
data/lib/clustered_rpc/info.rb
CHANGED
@@ -1,12 +1,13 @@
|
|
1
|
-
require '
|
1
|
+
require 'clustered_rpc/methods'
|
2
2
|
require 'open3'
|
3
3
|
|
4
4
|
module ClusteredRpc
|
5
5
|
class Info
|
6
6
|
include ClusteredRpc::Methods
|
7
7
|
|
8
|
-
def self.stats
|
8
|
+
def self.stats(detailed_memory_stats = false)
|
9
9
|
require 'objspace'
|
10
|
+
r =
|
10
11
|
{ instance_id: ClusteredRpc.instance_id,
|
11
12
|
transport_class: ClusteredRpc.transport_class.name.to_s,
|
12
13
|
options: ClusteredRpc.options,
|
@@ -15,11 +16,13 @@ module ClusteredRpc
|
|
15
16
|
used_mb: memory_used,
|
16
17
|
startup_command: startup_command,
|
17
18
|
process_type: lookup_process_type(startup_command),
|
18
|
-
|
19
|
-
gc: GC.stat,
|
20
|
-
count_nodes: ObjectSpace.count_nodes
|
19
|
+
count_nodes: ObjectSpace.count_nodes,
|
21
20
|
}
|
22
|
-
|
21
|
+
if detailed_memory_stats
|
22
|
+
r[:count_objects_size] = ObjectSpace.count_objects_size
|
23
|
+
r[:gc] = GC.stat
|
24
|
+
end
|
25
|
+
r
|
23
26
|
end
|
24
27
|
|
25
28
|
def self.startup_command
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clustered_rpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- megalithtracers@gmail.com
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-05-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|