Skip to main content

Message Queueing for Redis Streams

Project description

RedisMQ

PyPI version Build Status codecov Documentation Status

Description

RedisMQ uses the redis stream data structure to effect a message queue. The stream key name is the id of the message queue.

It provides support for confirmed and unconfirmed guaranteed message queuing. Guaranteed messages will remain in the queue (as unread or pending messages in the redis stream) until they are read and acknowledged by exactly one consumer. Confirmed producers will get a response only when the message is received and processed by a consumer. Unconfirmed (but guaranteed) still means only a single consumer will process the message, but no response is sent.

RedisMQ also provides support for fan-out (pub/sub) messaging when zero or more subscribers should receive the message.

RedisMQ libraries for Python and Javascript are available.

Requirements

The RedisMQ module requires Python 3.8 or higher.

Prerequisites

Install Python development headers

On Ubuntu/Debian systems or Microsoft Windows:

apt-get install python-dev

On Redhat/Fedora systems, install them with:

yum install python-devel

On Mac OSX:

xcode-select --install

Installation

To install RedisMQ:

$ pip install redismq

or from source:

$ python setup.py install

testing:

pipenv install --dev
pipenv run pytest

debugging:

export REDISMQ=DEBUG
...

Getting Started

RedisMQ needs to connect to an existing redis server, so you will need the address and port of the server you want to use. RedisMQ also stores global state in the redis server. By default the namespace used for global keys is rmq:*. If you need to change this so it does not conflict with other data stored in redis, the configuration parameter redismq_namespace should be set to something different.

Examples

Here are some examples of using the pyredismq module. See more examples here.

Sending an unconfirmed message

From a Python shell we send an unconfirmed message:

>>> import asyncio
>>> from redismq import Client
>>> async def sendAMessage():
...     mq_connection = await Client.connect('redis://127.0.0.1')
...     my_producer = await mq_connection.producer('mystream')
...     print( await my_producer.addUnconfirmedMessage('Hello there!'))
...
>>> asyncio.run(sendAMessage())
"1601460642682-0"

Sending a confirmed message

From a Python shell we send a confirmed message:

>>> import asyncio
>>> from redismq import Client
>>> async def sendAConfirmedMessage():
...     mq_connection = await Client.connect('redis://127.0.0.1')
...     my_producer = await mq_connection.producer('mystream')
...     response = await my_producer.addConfirmedMessage('Hello there! Let me know when you get this.')
...     print('Got confirmation', response)
...
>>> asyncio.run(sendAConfirmedMessage())

Consuming a message

From a Python shell we consume a message:

>>> from redismq import Client
>>> async def readAndConfirmMessage():
>>>     mq_connection = await Client.connect('redis://127.0.0.1')
>>>     my_consumer = await mq_connection.consumer('mystream', 'mygroup', 'consumer1')
>>>     payload = await my_consumer.read()
>>>     print('Got message', payload.message)
>>>     # here you can do something with the message
>>>     # the response passed to ack() is optional, 
>>>     # and ignored if the original message was unconfirmed:
>>>     resp = 'I got your message' if payload.responseChannel else ''
>>>     await payload.ack(resp)

More Information

RedisMQ is free software under the New BSD license, see LICENSE.txt for details.

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

redismq-1.1.8.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

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

redismq-1.1.8-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file redismq-1.1.8.tar.gz.

File metadata

  • Download URL: redismq-1.1.8.tar.gz
  • Upload date:
  • Size: 13.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for redismq-1.1.8.tar.gz
Algorithm Hash digest
SHA256 2512648d7c3c0b5a8c4ae468f14fd0108bf407bb8b2bd13a170e079db766f6a2
MD5 dc9922588f7f2abe8bc7ee1af5683ddb
BLAKE2b-256 9f6553f64f543a1fbcd32c2752d599c51531a71db04d75227e57bb76189c294f

See more details on using hashes here.

File details

Details for the file redismq-1.1.8-py3-none-any.whl.

File metadata

  • Download URL: redismq-1.1.8-py3-none-any.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for redismq-1.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 9bcd50a35da183e22cbf723a9df4fc2def228c208fa6c2c2fac9a705550978de
MD5 9a5d742db4f9e33f4cf97446857cc60c
BLAKE2b-256 25267a1543847485ac2d2380b92538312e6921fb3cad6d14212e8911034607bc

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