Skip to main content

Redis/Sentinel High Availability package for asyncio-redis

Project description

High Availability package and Sentinel client for the PEP 3156 Python event loop.

This package is a wrapper/plugin for asyncio-redis asynchronous, non-blocking client for a Redis server. It depends on asyncio (PEP 3156) and therefor it requires Python 3.3 or 3.4. If you’re new to asyncio, it can be helpful to check out the asyncio documentation first.

Features

  • Sentinel support ontop of asyncio-redis:

    • role

    • sentinels

    • slaves

    • get_master_addr_by_name

  • Extended Redis support (versions 3.x)

    • role

  • Mostly tested

    • all tests from asyncio-redis are green

    • new functionality covered and guaranteed to run in same conditions

    • failover scenarios tested manually

Dependencies

Redis cluster with Sentinel solution requires Redis 3.x

This package uses and heavily depends on asyncio-redis, because of the dependencies on package internals (due to required changes to support sentinel operations) currently requirement fixed at version 0.14.3

I will manually update this dependency after ensuring that internals are compatible.

Roadmap

  • implement pool reinitialization on master connection loss

  • add repeat/backoff wrapper as part of the package (coroutine or decorator)

  • provide automated testing for failover scenarios

  • implement preemptive connection reconfiguration (instant failover detection based on channel events from Sentinel daemon)

  • hiredis support

User Guide

Usage is the very same as for asyncio-redis package Pool object, except for initialization of an entry point

Initialize a ConnectionManager

c = yield from ConnectionManager.create(
        cluster_name='mymaster',
        sentinels=[
            ('172.17.0.4', 26379),
            ('172.17.0.6', 26379),
            ('172.17.0.7', 26379)
        ],
        poolsize=5
)
#  start using just like asyncio-redis
yield from c.set('key', 'value')

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

asyncio_redis_ha-0.1.1.tar.gz (8.7 kB view details)

Uploaded Source

File details

Details for the file asyncio_redis_ha-0.1.1.tar.gz.

File metadata

File hashes

Hashes for asyncio_redis_ha-0.1.1.tar.gz
Algorithm Hash digest
SHA256 60a627b94269c65f7dcd0719da88e1fe9b1ace1b5ff45ef4e1327aab45853371
MD5 0ef7f04326199f858b0a1c45702196a5
BLAKE2b-256 84151d971d90384fe4d79362a9eaf6dda9552d3c6693f2864c22808eb336d311

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