
The container-reconciler and object-expirer were missing from the os-swift role. The reconciler makes sure incorrectly placed objets live in the correct storage policy. The expirer is the service that deletes expired objects. This change also adds the abilty to optionally specify a reclaim_age in the swift section of the configuration, which is now set in all the locations required, still with the default of 604800 seconds (7 days). Change-Id: Ic56a714c3fb3c84b9bb5ed8e2ae3c86dad474161 Closes-Bug: #1516877
30 lines
723 B
Django/Jinja
30 lines
723 B
Django/Jinja
[DEFAULT]
|
|
swift_dir = /etc/swift
|
|
user = {{ swift_system_user_name }}
|
|
log_facility = LOG_LOCAL3
|
|
|
|
[container-reconciler]
|
|
# The reconciler will re-attempt reconciliation if the source object is not
|
|
# available up to reclaim_age seconds before it gives up and deletes the entry
|
|
# in the queue.
|
|
reclaim_age = {{ reclaim_age | default(604800) }}
|
|
# The cycle time of the daemon
|
|
interval = 30
|
|
# Server errors from requests will be retried by default
|
|
request_tries = 3
|
|
|
|
[pipeline:main]
|
|
pipeline = catch_errors proxy-logging cache proxy-server
|
|
|
|
[app:proxy-server]
|
|
use = egg:swift#proxy
|
|
|
|
[filter:cache]
|
|
use = egg:swift#memcache
|
|
|
|
[filter:proxy-logging]
|
|
use = egg:swift#proxy_logging
|
|
|
|
[filter:catch_errors]
|
|
use = egg:swift#catch_errors
|