a Python interface to a Cluster of Redis key-value store
Project description
a Python interface to a Cluster of Redis key-value stores.
Project Goals
The goal of rediscluster-py, together with rediscluster-php, is to have a consistent, compatible client libraries accross programming languages when sharding among different Redis instances in a transparent, fast, and fault tolerant way. rediscluster-py is based on the awesome redis-py StrictRedis Api, thus the original api commands would work without problems within the context of a cluster of redis servers
Travis CI
Currently, rediscluster-py is being tested via travis ci for python version 2.6, 2.7 and 3.2:
Installation
$ sudo pip install rediscluster
or alternatively (you really should be using pip though):
$ sudo easy_install rediscluster
From source:
$ sudo python setup.py install
Running Tests
$ git clone https://github.com/salimane/rediscluster-py.git $ cd rediscluster-py $ vi tests/config.py $ ./run_tests
Getting Started
>>> import rediscluster >>> cluster = { ... # node names ... 'nodes' : { # masters ... 'node_1' : {'host' : '127.0.0.1', 'port' : 63791}, ... 'node_2' : {'host' : '127.0.0.1', 'port' : 63792}, ... } ... } >>> r = rediscluster.StrictRedisCluster(cluster=cluster, db=0) >>> r.set('foo', 'bar') True >>> r.get('foo') 'bar'
Cluster Configuration
The cluster configuration is a hash that is mostly based on the idea of a node, which is simply a host:port pair that points to a single redis-server instance. This is to make sure it doesn’t get tied it to a specific host (or port). The advantage of this is that it is easy to add or remove nodes from the system to adjust the capacity while the system is running.
Read Slaves & Write Masters
rediscluster uses the master servers stored in the cluster hash passed during instantiation to auto discover if any slave is attached to them. It then transparently relay read redis commands to slaves and writes commands to masters.
There is also support to only use masters even if read redis commands are issued, just specify it at client instantiation like :
>>> r = rediscluster.StrictRedisCluster(cluster=cluster, db=0) # read redis commands are routed to slaves >>> >>> r = rediscluster.StrictRedisCluster(cluster=cluster, db=0, mastersonly=True) # read redis commands are routed to masters
Partitioning Algorithm
rediscluster doesn’t used a consistent hashing like some other libraries. In order to map every given key to the appropriate Redis node, the algorithm used, based on crc32 and modulo, is :
(abs(binascii.crc32(<key>) & 0xffffffff) % <number of masters>) + 1
this is used to ensure some compatibility with other languages, php in particular. A function getnodefor is provided to get the node a particular key will be/has been stored to.
>>> r.getnodefor('foo') {'node_2': {'host': '127.0.0.1', 'port': 63792}} >>>
Multiple Keys Redis Commands
In the context of storing an application data accross many redis servers, commands taking multiple keys as arguments are harder to use since, if the two keys will hash to two different instances, the operation can not be performed. Fortunately, rediscluster is a little fault tolerant in that it still fetches the right result for those multi keys operations as far as the client is concerned. To do so it processes the related involved redis servers at interface level.
>>> r.sadd('foo', *['a1', 'a2', 'a3']) 3 >>> r.sadd('bar', *['b1', 'a2', 'b3']) 3 >>> r.sdiffstore('foobar', 'foo', 'bar') 2 >>> r.smembers('foobar') set(['a1', 'a3']) >>> r.getnodefor('foo') {'node_2': {'host': '127.0.0.1', 'port': 63792}} >>> r.getnodefor('bar') {'node_1': {'host': '127.0.0.1', 'port': 63791}} >>> r.getnodefor('foobar') {'node_2': {'host': '127.0.0.1', 'port': 63792}} >>>
Redis-Sharding & Redis-Copy
In order to help with moving an application with a single redis server to a cluster of redis servers that could take advantage of rediscluster, i wrote redis-sharding and redis-copy
Information
Code: git clone git://github.com/salimane/rediscluster-py.git
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
Built Distributions
File details
Details for the file rediscluster-0.5.3.tar.gz
.
File metadata
- Download URL: rediscluster-0.5.3.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73004d9c80f70b25fc926ad0dcee3593c6755e080c6971b859e4638072c530fe |
|
MD5 | 085143f0530c72d193752f3eb4efd22d |
|
BLAKE2b-256 | 0a2c0f2ab19a4f20ea7bd2dbb4032fc332894feabdb0346353fbd9cbdb0c152d |
File details
Details for the file rediscluster-0.5.3-py3.2.egg
.
File metadata
- Download URL: rediscluster-0.5.3-py3.2.egg
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c525e2db062a86230bdee0a7de348d6bffd8556a351da3fa4a826f9916b3279 |
|
MD5 | d97f91e32dab6d57d6469c1629a48ecc |
|
BLAKE2b-256 | 84339c87e6003c1c87e24373ef6ab0f3a7a28b673f3ed9ba92dfa1b6745d6c77 |
File details
Details for the file rediscluster-0.5.3-py2.7.egg
.
File metadata
- Download URL: rediscluster-0.5.3-py2.7.egg
- Upload date:
- Size: 16.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f698886b419e5e0299348569aea3d643426acf4d23d6b6ca19e0d1d2930c4b9 |
|
MD5 | 95b2ae9f6dc081c644b39df304d92fe5 |
|
BLAKE2b-256 | b9857f23b1ee663635b4b07c1b853949bfe5c0c0fb6e0dfed547ea13d2bb0235 |