clustered_rpc 0.2.0 → 0.2.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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/clustered_rpc.rb +12 -8
- data/lib/clustered_rpc/proxy.rb +1 -1
- data/lib/clustered_rpc/transport/redis_cluster.rb +1 -1
- data/lib/clustered_rpc/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86711e87d4b0d02bd28442183c6dee164eddcf85f5907554c1ee122b41f26cb1
|
4
|
+
data.tar.gz: 8b154d80b309ec854246c0daa2999a13b8556f59ddea7b3e080d3eb9f555bbee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27b72f91705dbe127151885e9026c5bf05417e278eeb841573e177c512713764d2e76650a42bfd051f49d01aff8565e8bbfcb7079d31fac32bb5ac59f227aeb6
|
7
|
+
data.tar.gz: 70483d8f0100c7f894b91ecb2a76f3739da972579f69285252756e3a074068f0dbd9917c161e3f04f5df6ab8f7f94aaea6aa80f29786994b1d5e7dc177fc931e
|
data/Gemfile.lock
CHANGED
data/lib/clustered_rpc.rb
CHANGED
@@ -43,16 +43,9 @@ module ClusteredRpc
|
|
43
43
|
|
44
44
|
def self.config(force=false, &block)
|
45
45
|
block.call(self)
|
46
|
-
|
47
46
|
@@instance_id ||= SecureRandom.hex(5)
|
48
|
-
|
49
|
-
require "clustered_rpc/transport/local_process"
|
50
|
-
@@transport_class = ClusteredRpc::Transport::LocalProcess
|
51
|
-
end
|
52
|
-
logger.info "Clustered using #{@@transport_class}[#{@@cluster_namespace}]"
|
53
|
-
@@transport = @@transport_class.new
|
47
|
+
ensure_transport
|
54
48
|
@@transport.connect
|
55
|
-
|
56
49
|
end
|
57
50
|
|
58
51
|
def self.reconnect
|
@@ -64,9 +57,20 @@ module ClusteredRpc
|
|
64
57
|
def self.publish(payload={})
|
65
58
|
# if :request_id is already present, then we're responding with a process-level response
|
66
59
|
# otherwise we're creating a new clustered_request and should generate a :request_io
|
60
|
+
ensure_transport
|
67
61
|
payload[:request_id] ||= SecureRandom.hex(8)
|
68
62
|
@@transport.publish payload
|
69
63
|
payload[:request_id]
|
70
64
|
end
|
71
65
|
|
66
|
+
private
|
67
|
+
def self.ensure_transport
|
68
|
+
return if @@transport
|
69
|
+
if @@transport_class.nil?
|
70
|
+
require "clustered_rpc/transport/local_process"
|
71
|
+
@@transport_class = ClusteredRpc::Transport::LocalProcess
|
72
|
+
end
|
73
|
+
logger.info "Clustered using #{@@transport_class}[#{@@cluster_namespace}]"
|
74
|
+
@@transport = @@transport_class.new
|
75
|
+
end
|
72
76
|
end
|
data/lib/clustered_rpc/proxy.rb
CHANGED
@@ -10,7 +10,7 @@ module ClusteredRpc
|
|
10
10
|
request_id = ::ClusteredRpc.publish({'klass' => @target.name, 'method' => method, 'args' => args, 'kwargs' => kwargs}.merge(@options))
|
11
11
|
{request_id: request_id, success: true, results: ::ClusteredRpc.get_result(request_id, wait_seconds)}
|
12
12
|
rescue => e
|
13
|
-
ClusteredRpc.logger.error "ClusteredRpc::Proxy encountered
|
13
|
+
ClusteredRpc.logger.error "ClusteredRpc::Proxy encountered error: #{e.message}"
|
14
14
|
{request_id: "Error", success: false, results: e.message}
|
15
15
|
end
|
16
16
|
|
@@ -14,7 +14,7 @@ module ClusteredRpc
|
|
14
14
|
def publish(payload={})
|
15
15
|
@redis_publish.publish @redis_message_pubsub_key, payload.to_json
|
16
16
|
rescue => e
|
17
|
-
ClusteredRpc.logger.error "ClusteredRpc.publish encountered
|
17
|
+
ClusteredRpc.logger.error "ClusteredRpc.publish encountered error: #{e.message}"
|
18
18
|
raise e
|
19
19
|
end
|
20
20
|
|