c94f14be3d
This commit switches the backend used on the api server to be the dbm file backend with using memcached for distributed locking. This enables having an async worker, but avoids the size limitations with storing the cached data in memcached directly. Change-Id: If506bbca1eb867135430c7f435c5e4a1db1a0232 Depends-On: Ied241ca1762c62a047bd366d7bd105028a884f30
12 lines
344 B
Plaintext
12 lines
344 B
Plaintext
[default]
|
|
query_dir = <%= @elastic_recheck_dir %>/queries
|
|
cache_expiration = <%= @cache_expiration %>
|
|
cache_url = 127.0.0.1
|
|
db_uri = <%= scope.lookupvar("openstack_health::api::db_uri") %>
|
|
<% if @ignored_keys.length > 0 -%>
|
|
ignored_run_metadata_keys =
|
|
<% @ignored_keys.each do |ignored_key| -%>
|
|
<%= ignored_key %>
|
|
<% end -%>
|
|
<% end -%>
|