2018-02-09 23:04:47 +01:00
|
|
|
enabled = ENV['ES_ENABLED'] == 'true'
|
|
|
|
host = ENV.fetch('ES_HOST') { 'localhost' }
|
|
|
|
port = ENV.fetch('ES_PORT') { 9200 }
|
|
|
|
fallback_prefix = ENV.fetch('REDIS_NAMESPACE') { nil }
|
|
|
|
prefix = ENV.fetch('ES_PREFIX') { fallback_prefix }
|
|
|
|
|
|
|
|
Chewy.settings = {
|
|
|
|
host: "#{host}:#{port}",
|
|
|
|
prefix: prefix,
|
|
|
|
enabled: enabled,
|
|
|
|
journal: false,
|
2018-02-20 17:25:16 +01:00
|
|
|
sidekiq: { queue: 'pull' },
|
2018-02-09 23:04:47 +01:00
|
|
|
}
|
|
|
|
|
2018-02-11 22:59:44 +01:00
|
|
|
Chewy.root_strategy = enabled ? :sidekiq : :bypass
|
|
|
|
Chewy.request_strategy = enabled ? :sidekiq : :bypass
|
2018-02-09 23:04:47 +01:00
|
|
|
|
|
|
|
module Chewy
|
|
|
|
class << self
|
|
|
|
def enabled?
|
|
|
|
settings[:enabled]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|