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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file asyncio_redis_ha-0.1.1.tar.gz
.
File metadata
- Download URL: asyncio_redis_ha-0.1.1.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60a627b94269c65f7dcd0719da88e1fe9b1ace1b5ff45ef4e1327aab45853371 |
|
MD5 | 0ef7f04326199f858b0a1c45702196a5 |
|
BLAKE2b-256 | 84151d971d90384fe4d79362a9eaf6dda9552d3c6693f2864c22808eb336d311 |