resque故障转移redis的解决方案
由于集群 Redis 仍在开发中,Resque 中是否有机制可以在主服务器出现故障时自动将故障转移到 Redis 从服务器?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
由于集群 Redis 仍在开发中,Resque 中是否有机制可以在主服务器出现故障时自动将故障转移到 Redis 从服务器?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我不这么认为。但是,您可以使用 自己实现主选举机制 .apache.org/" rel="nofollow">Apache Zookeeper:
您可以将上面的脚本修改为:
I don't think so. However, you can implement the master election mechanism yourself quite easily using Apache Zookeeper:
You could modify the script above to:
我发布了一个 redis_failover gem,它通过 ZooKeeper 为 Ruby 提供 Redis 故障转移:
https://github.com/ryanlecompte/redis_failover
I've released a redis_failover gem that provides Redis failover for Ruby with ZooKeeper:
https://github.com/ryanlecompte/redis_failover