Skip to main content

general sugarcoat for all pubsub flavors.

Project description

tesselite-pubsub

General sugarcoat for all pubsub flavors.

Purpose

Publish Subscribe is a pretty simple mechanism understandable by any human. For example, it is the ruling mechanism of all social networks.

But, in Python, pubsub is very complex to code given the variety of broker technologies (redis, rabbitMQ, kafka, GCP PubSub, Azure Event Hubs..)

The purpose of this library is to streamline the coding of Pubsub in a single-line call!

Usage

Available Brokers:

internal name official name client library
gcp-pubsub Google Cloud Pubsub google-cloud-pubsub = "^2.26.1"
redis Redis redis = "^5.1.1"
rabbitmq RabbitMQ pika = "^1.3.2"
kafka Apache Kafka confluent-kafka = "^2.4.0"

Unavailable Brokers:

internal name official name client library
azure-eventhub Azure Events Hub todo

Configuration

variable name purpose brokers default value
HOST server's address redis, rabbitmq, kafka localhost
PORT server's port redis, rabbitmq, kafka redis:6379
- - - rabbitmq:5672
- - - kafka:9092
USER server username redis, rabbitmq tesselite
PASSWORD server password redis, rabbitmq, kafka tesselite
TOPIC_NAME pubsub topic * tesselite-pubsub
SUBSCRIPTION_NAME pubsub name * tesselite
VHOST server virtualhost rabbitmq /
DB server database number redis 0

Low level usage

Consume

from tesselite.pubsub import pubsubFactory

def callback(message): # callback function inputs serialized message 
    print(f"received this: {message}")
    
# consume loop
with pubsubFactory(broker="gcp-pubsub")(topic="tesselite-pubsub", log_name="consumer") as pubsub:
    pubsub.consume(callback=callback, deadLetter=None, subscription="tesselite")

Publish

from tesselite.pubsub import pubsubFactory

def encoder(): # callback function inputs serialized message 
    yield "hello world"
    
# publish loop
with pubsubFactory(broker="gcp-pubsub")(topic="tesselite-pubsub", log_name="publisher") as pubsub:
    for msg in encoder():
        pubsub.publish(msg)

High level usage

consume

from tesselite.samples import consume # importing consume sample


def callback(message): # callback function inputs serialized message 
    print(f"received this: {message}")

if __name__ == '__main__':
    consume(broker='rabbitmq', callback=callback) # single-lined consume loop (default topic: tesselite-pubsub

publish

from tesselite.samples import publish # importing publish sample


def encoder(): # callback function inputs serialized message 
    yield "hello"

if __name__ == '__main__':
    publish(broker='rabbitmq', encoder=encoder) # single-lined publish call (default topic: tesselite-pubsub

Expected Behavior

Best Case Scenario

The same programmatic interface is used for all brokers → One would swap seamlessly to any broker technology by shifting the broker's name:

from tesselite import pubsubFactory

# broker : rabbitmq
client_gcp = pubsubFactory(broker="rabbitmq")(topic="tesselite-pubsub", log_name="tesselite")

# broker : redis
client_redis = pubsubFactory(broker="redis")(topic="tesselite-pubsub", log_name="tesselite")

The connection to broker auto-heals when the broker backend is unavailable → When auto-healing happens the log trace looks like this:

[tesselite][ERROR][2024-10-28 06:22:07] (open) connexion error [ConnectionError] => backoff.
[tesselite][ERROR][2024-10-28 06:22:13] (open) connexion error [ConnectionError] => backoff.
[tesselite][ERROR][2024-10-28 06:22:21] (open) connexion error [ConnectionError] => backoff.
[consume][INFO][2024-10-28 06:22:29] ready.
received this: {"uid": 0, "payload": "( publish ) hello world!"}
received this: {"uid": 1, "payload": "( publish ) hello world!"}
received this: {"uid": 2, "payload": "( publish ) hello world!"}

The procedure below is applied seamlessly to all broker technologies → To guarantee a fail-proof onboarding to the broker:

  1. topic checkout
  2. topic creation
  3. subscription checkout
  4. subscription creation
  5. publish or consume

Worst Case Scenario

a. Messages are lost if the subscription doesn't exist → This is an incurable limitation of pubsub mechanics.

b. The broker redis would drop messages if the consumer disconnects → This seems to be related to 'livestream' behavior of Redis.

c. The broker gcp-pubsub would freeze for a random timeperiod if no messages are available → This would generate sluggishness from time to time.

Therefore, the broker redis is ideal for livestreaming but not for message retention critical PaaS. Therefore, the broker gcp-pubsub is ideal for message retention critical PaaS but maybe sluggish for livestream.

ci

cd

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

tesselite_pubsub-0.2.3.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tesselite_pubsub-0.2.3-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

Details for the file tesselite_pubsub-0.2.3.tar.gz.

File metadata

  • Download URL: tesselite_pubsub-0.2.3.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.9 Linux/6.8.0-1021-azure

File hashes

Hashes for tesselite_pubsub-0.2.3.tar.gz
Algorithm Hash digest
SHA256 fd8340a33e71d02f6fd1c28e49502ea216080b7fff90859e1ad5ab78b3c36181
MD5 37723f4ead1ccee13750fa96714d6820
BLAKE2b-256 3c1cb2d48cb7275588aaf735f28931ea43de3b8be6b4dc6592d0bd42c9c0993f

See more details on using hashes here.

File details

Details for the file tesselite_pubsub-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: tesselite_pubsub-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 13.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.9 Linux/6.8.0-1021-azure

File hashes

Hashes for tesselite_pubsub-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 83213e1196cf8f81a09b94b0d64a8a50e0c8f0bfbcea123e616473aca331cef3
MD5 30ead4d90ed9952eacb80ed559b22849
BLAKE2b-256 01b189a0d3f2713b566b3afde97ad43cbe3bf53e7daf1219be8a8da3c0e0ba9b

See more details on using hashes here.

Supported by

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