Redis Cluster - production ready?

前端 未结 3 1017
粉色の甜心
粉色の甜心 2020-12-08 03:05

I was reading Redis documentation, and I am most interested in the partitioning feature.

Redis documentation states the following:

Data store

3条回答
  •  执念已碎
    2020-12-08 03:30

    [Update] Redis Cluster was released in Redis 3.0.0 on 1 Apr 2015.

    Redis cluster is currently in active development. See this article from Redis author: Antirez.

    So I can pause other incremental improvements for a bit to focus on Redis Cluster. Basically my plan is to work mostly to cluster as long as it does not reach beta quality, and for beta quality I mean, something that brave users may put into production.

    Redis Cluster will support up to ~1000 nodes.

    The first release will have the following features (extracted from Antirez post):

    1. Automatic partition of key space.
    2. Hot resharding.
    3. Only single key operations supported (and it will always be that way).

    As of today antirez is working on the first Redis cluster client (redis-rb-cluster) in order to be used as a reference implementation.


    I'll update this answer as soon as Redis Cluster goes production ready.

    [Update] 03/28/2014 Redis Cluster is already used on large cluster in production (source: antirez tweets).

提交回复
热议问题