Rails,Redis和Sentinel

时间:2015-05-06 14:52:17

标签: ruby-on-rails redis redis-sentinel redis-rails

我有一个由4个节点组成的Redis集群,1个主服务器和3个从服务器,由Sentinel监控。

现在在rails中我需要连接到这个集群,从最近的副本读取,并写入主服务器,就像我使用MongoDB一样。

使用redis-rails gem,如何配置cache_store来指定Sentinels而不是单个节点?

1 个答案:

答案 0 :(得分:4)

我可能错过了,但我不知道您可以将其配置为从奴隶那里读取?但是,这是我的主+ 2从属配置:

config.cache_store = :redis_store, {
    url: 'redis://prestwick/1',
    sentinels: [{host: 'prestwick.i', port: 26379}, {host: 'carnoustie.i', port: 26379}, {host: 'birkdale.i', port: 26379}],
    role: 'master',
    expires_in: 1.hour
  }

如果它有用,我对通用REDIS对象和Sidekiq的配置(这是在config / initializers / 001_redis.rb中):

redis_options = {
  url: 'redis://prestwick/0',
  sentinels: [{host: 'prestwick.i', port: 26379}, {host: 'carnoustie.i', port: 26379}, {host: 'birkdale.i', port: 26379}],
  role: 'master'
}
redis_sidekiq_options = {
  url: 'redis://prestwick/2',
  sentinels: [{host: 'prestwick.i', port: 26379}, {host: 'carnoustie.i', port: 26379}, {host: 'birkdale.i', port: 26379}],
  role: 'master'
}

REDIS = Redis.new(redis_options)

Sidekiq.configure_server do |config|
  config.redis = redis_sidekiq_options
end
Sidekiq.configure_client do |config|
  config.redis = redis_sidekiq_options
end