Redis Cluster - production ready?

前端 未结 3 1007
粉色の甜心
粉色の甜心 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:24

    Today the first Release Candidate for Redis 3.0.0 has been released, which includes a stable version of Clustering: http://redis.io/download.

    See also this post by Antirez: http://antirez.com/news/79.

    0 讨论(0)
  • 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).

    0 讨论(0)
  • 2020-12-08 03:34

    Redis Cluster is included in Redis 3.0.0, released 1 Apr 2015.

    --[ Redis 3.0.0 ] Release date: 1 Apr 2015

    What's new in Redis 3.0 compared to Redis 2.8?

    • Redis Cluster: a distributed implementation of a subset of Redis.

    https://raw.githubusercontent.com/antirez/redis/3.0/00-RELEASENOTES

    0 讨论(0)
提交回复
热议问题