Skip to main content

NATS messaging system client using Twisted #microservices

Project description

License MIT

NATS Documentation

HOW TO microservice communication.

How do I get my services to talk to each other with out registering each one in a directory?

How do I scale a back end service and allow front end services to use all of them quickly?

How do I have a fast, scalable, resilient communication service with out a lot of headaches?

A good answer to all of these is to use NATS. NATS is a masterpiece protocol designed with the cloud in mind. HTTP was good, but it was designed for servers sending single resources to clients on an uncontrolled network.

Install dependencies

I suggest creating a virtualenv.

$ make deps

Try the demo:

$ make prepare-example

Open two extra terminal windows and from one run:

$ ./example/respond.py

from the other run:

$ ./example/sub_only.py

Then from the first window run:

./example/nats_demo.py

Usage

Make a subject subscriber.

for full context see sub_only.py:

First, define a message handler for a subscription:

def on_happy_msg(nats_protocol, sid, subject, reply_to, payload):
    print "got message", sid, subject

Then in create the endpoint, nats protocol instance and connect them:

point = TCP4ClientEndpoint(reactor, "demo.nats.io", 4222)

nats_protocol = txnats.io.NatsProtocol(
    verbose=False,
    on_connect=lambda np: np.sub("happy", "6", on_msg=on_happy_msg))

connecting = connectProtocol(point, nats_protocol)
reactor.run()

When a message comes in for the subject “happy” on_happy_msg will be called.

Make a subject responder.

The only difference from a subscriber is that the on_msg function will publish a message to the reply_to subject of the message:

def respond_on_msg(nats_protocol, sid, subject, reply_to, payload):
    if reply_to:
        nats_protocol.pub(reply_to, "Roger, from {}!".format(responder_id))

…:

nats_protocol = txnats.io.NatsProtocol(
    verbose=False,
    on_connect=lambda np: np.sub("get-response", "6", on_msg=respond_on_msg))

For full context see respond.py

Distribute the responder load.

To distribute the load: subscribe with a queue-group and any message will go to one of the responders:

nats_protocol = txnats.io.NatsProtocol(
    verbose=False,
    on_connect=lambda np: np.sub("get-response", "6",
                                 queue_group="excelsior",
                                 on_msg=respond_on_msg))

However many processes you have subscribed to this subject and queue group will have the messages sent to only one of them. If there are four running, and 100 messages are sent on the “get-response” subject, each one should only have to respond to 25, distributing the work load.

For full context see queue_respond.py and something that will make a bunch of requests on that subject. make_requests.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

txnats-0.7.5.tar.gz (15.6 kB view details)

Uploaded Source

Built Distributions

txnats-0.7.5.macosx-10.10-x86_64.exe (82.1 kB view details)

Uploaded Source

txnats-0.7.5-py3.5.egg (38.0 kB view details)

Uploaded Source

txnats-0.7.5-py2.7.egg (37.1 kB view details)

Uploaded Source

File details

Details for the file txnats-0.7.5.tar.gz.

File metadata

  • Download URL: txnats-0.7.5.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for txnats-0.7.5.tar.gz
Algorithm Hash digest
SHA256 c5cbd0fa5d0da36c9ef5e9051e2cb85456a900e4e88114a37890f1a8e2bac22a
MD5 752b95a7634afdb6004775bf0eb2b737
BLAKE2b-256 91fdc8dacfdd34cdf368a30ec7fcf1f72bbfcafbdcd9466b3a4ff0bc837fd3da

See more details on using hashes here.

File details

Details for the file txnats-0.7.5.macosx-10.10-x86_64.exe.

File metadata

File hashes

Hashes for txnats-0.7.5.macosx-10.10-x86_64.exe
Algorithm Hash digest
SHA256 babd767e097d3fe9e421268cbfcf9c696d51e58dba7872bac41f86a881bd5d59
MD5 e3e7d39facc518554c65765c6ae7c4b5
BLAKE2b-256 e1265b49a5e97febf2f730b1049a910366cb18d41b22eb78024912132697ec4c

See more details on using hashes here.

File details

Details for the file txnats-0.7.5-py3.5.egg.

File metadata

  • Download URL: txnats-0.7.5-py3.5.egg
  • Upload date:
  • Size: 38.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for txnats-0.7.5-py3.5.egg
Algorithm Hash digest
SHA256 90e84ee016ed771b55c1791cc51e17f6183644d38f8c170ae77afc1cbad279c3
MD5 b0301fc48fcafbfce8752861ba247265
BLAKE2b-256 9b17e5482533d3b3de9f21ae847e78dee4064057b560c5aa11e6fc7970df823f

See more details on using hashes here.

File details

Details for the file txnats-0.7.5-py2.7.egg.

File metadata

  • Download URL: txnats-0.7.5-py2.7.egg
  • Upload date:
  • Size: 37.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for txnats-0.7.5-py2.7.egg
Algorithm Hash digest
SHA256 67ed8cf455ec1df792bbffcd2a8174e4fae562efd7293eaca4a1afbc5b648e5c
MD5 e2a603e43e74529ed9117b53753f1a87
BLAKE2b-256 eb56e54bd8edadc85edb2666c473be6d324819fef48cc1d6756fa7bf73655e20

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page