RPC between distributed workers
Project description
A distributed RPC solution based on ØMQ and gevent. Follow the features:
A worker can return, yield, raise any picklable object to the remote customer.
A customer can invoke to any remote worker in the worker cluster.
A customer can invoke to all remote workers in the worker cluster.
Example
Server-side
The address is 192.168.0.41. The worker will listen at 24600.
import zmq.green as zmq
import zeronimo
class Application(object):
def rycbar123(self):
for word in 'run, you clever boy; and remember.'.split():
yield word
ctx = zmq.Context()
worker_sock = ctx.socket(zmq.PULL)
worker_sock.bind('tcp://*:24600')
worker = zeronimo.Worker(Application(), [worker_sock])
worker.run()
Client-side
The address is 192.168.0.42. The reply collector will listen at 24601.
import zmq.green as zmq
import zeronimo
ctx = zmq.Context()
collector_sock = ctx.socket(zmq.PULL)
collector_sock.bind('tcp://*:24601)
collector = zeronimo.Collector(collector_sock, 'tcp://192.168.0.42:24601')
customer_sock = ctx.socket(zmq.PUSH)
customer_sock.connect('tcp://192.168.0.41:24600')
customer = zeronimo.Customer(customer_sock, collector)
for line in customer.rycbar123():
print line
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
zeronimo-0.1.4.tar.gz
(16.0 kB
view details)
File details
Details for the file zeronimo-0.1.4.tar.gz
.
File metadata
- Download URL: zeronimo-0.1.4.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65a86b938e2a3fd80194619e533868f06c9d543f9b140b693be909f499d74e78 |
|
MD5 | 9645b57d86511fcd1545fe5e70c7aa30 |
|
BLAKE2b-256 | 6963c1465c05f4ea78b265dbafb12173dcbd95d6bbd1564e7e4a23ede5df589c |