Automatic Redis Failover
engineering.spreecast.com
Automatic Redis Failover
1–7 of 7 posts
Re: Automatic Redis Failover
#2Re: Automatic Redis Failover
#3I've never used ZooKeeper in production, so pardon my ignorance, but everytime I see a project using it I get a little bit turned off because it seems like alot of extra complexity and another SPOF. Can anyone share their experiences?
ZooKeeper is actually a proven technology for solving distributed configuration. It's widely used by Yahoo! and Netflix among other large companies. It's a proven PAXOS-like implementation, and definitely isn't a single point of failure. Check it out!
Re: Automatic Redis Failover
#4Also note that at some point there is likely to be a standard solution built into Redis itself. (The best laid plans and all that, but comments below http://news.ycombinator.com/item?id=3831295 suggest that it may come relatively soon.)
Re: Automatic Redis Failover
#5Isn't this the same idea as https://github.com/ryanlecompte/redis_failover (which may or may not be getting any traction)? Also note that at some point there is likely to be a standard solution built into Redis itself. (The best laid plans and all that, but comments below http://news.ycombinator.com/item?id=3831295 suggest that it may come relatively soon.)
Re: Automatic Redis Failover
#6Re: Automatic Redis Failover
#7I've never used ZooKeeper in production, so pardon my ignorance, but everytime I see a project using it I get a little bit turned off because it seems like alot of extra complexity and another SPOF. Can anyone share their experiences?