2018-02-09 17:04:47 -05:00
|
|
|
enabled = ENV['ES_ENABLED'] == 'true'
|
|
|
|
host = ENV.fetch('ES_HOST') { 'localhost' }
|
|
|
|
port = ENV.fetch('ES_PORT') { 9200 }
|
2021-10-24 11:20:03 -04:00
|
|
|
user = ENV.fetch('ES_USER') { nil }
|
|
|
|
password = ENV.fetch('ES_PASS') { nil }
|
2018-02-09 17:04:47 -05:00
|
|
|
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,
|
2021-10-24 11:20:03 -04:00
|
|
|
user: user,
|
|
|
|
password: password,
|
2018-02-20 11:25:16 -05:00
|
|
|
sidekiq: { queue: 'pull' },
|
2018-02-09 17:04:47 -05:00
|
|
|
}
|
|
|
|
|
2020-12-22 11:13:55 -05:00
|
|
|
# We use our own async strategy even outside the request-response
|
2021-11-26 02:30:02 -05:00
|
|
|
# cycle, which takes care of checking if Elasticsearch is enabled
|
2020-12-22 11:13:55 -05:00
|
|
|
# or not. However, mind that for the Rails console, the :urgent
|
|
|
|
# strategy is set automatically with no way to override it.
|
2019-09-30 19:19:11 -04:00
|
|
|
Chewy.root_strategy = :custom_sidekiq
|
|
|
|
Chewy.request_strategy = :custom_sidekiq
|
|
|
|
Chewy.use_after_commit_callbacks = false
|
2018-02-09 17:04:47 -05:00
|
|
|
|
|
|
|
module Chewy
|
|
|
|
class << self
|
|
|
|
def enabled?
|
|
|
|
settings[:enabled]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-04-17 09:14:24 -04:00
|
|
|
|
2021-11-26 02:30:02 -05:00
|
|
|
# Elasticsearch uses Faraday internally. Faraday interprets the
|
2020-04-17 09:14:24 -04:00
|
|
|
# http_proxy env variable by default which leads to issues when
|
|
|
|
# Mastodon is run with hidden services enabled, because
|
2021-11-26 02:30:02 -05:00
|
|
|
# Elasticsearch is *not* supposed to be accessed through a proxy
|
2020-04-17 09:14:24 -04:00
|
|
|
Faraday.ignore_env_proxy = true
|