Coder Social home page Coder Social logo

persistent-zeromq's Introduction

Persistent pub-sub model using - ZeroMQ + Redis

PUB-SUB using ZeroMQ, used Redis to persist tasks/messages.

Simulation -

alt text

Preview -

alt text

Requirements

  • Redis
  • Python 3

How to run?

$ cd <project-dir>
$ export PYTHONPATH="$PYTHONPATH:." # . corresponds to current directory(project-dir).
$ virtualenv -p python3 .env        # Create virtual environment.
$ pip install -r requirements.txt   # Install dependencies.

And then publisher can be started as -

$ python publisher.py

and subscriber(s) can be started as -

$ python subscriber.py

Insights

  • Traditional Publisher-Subscriber model.
  • A subscriber can subscribe to multiple topics. Each subscriber is identified by unique id(alphanumeric).
  • Publisher can specify TTL(Time-to-live) while publishing a message to particular topic. So a message(with ttl = t secconds) will expire after t seconds.
  • A message is published on a topic(T) will be delivered to each subscriber of that topic(T) exactly once.
  • If a subscriber goes down for a duration(D), then all the pending messages(with TTL > D) will be delivered to that subscriber once it comes back alive after duration(D).
  • Publisher & subscriber(s) needs to connect to Redis.
  • Each & every subscriber must be assigned a unique id.

persistent-zeromq's People

Contributors

suyash248 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

webclinic017

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.