
This reverts commit 3e151d97adbff78be1b146938374a0dced5970e9. Reason for revert: Upstream bug has been fixed Change-Id: I5498030487677523ae71ae2f9a13074ab4552204 Related-Bug: #1872553 Closes-Bug: #1921354 (cherry picked from commit 24bbb72ac97bbd2683d0eae04b8ab4c3674005bc)
56 lines
1.9 KiB
Django/Jinja
56 lines
1.9 KiB
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %}
|
|
{% set api_threads = _api_threads if _api_threads > 0 else 1 %}
|
|
|
|
[DEFAULT]
|
|
# Disable stderr logging
|
|
use_stderr = False
|
|
bind_ip = {{ swift_storage_address }}
|
|
bind_port = {{ swift_account_port }}
|
|
workers = {{ swift_account_server_workers | default(api_threads) }}
|
|
|
|
user = {{ swift_system_user_name }}
|
|
devices = {{ swift_vars.mount_point | default(swift.mount_point) }}
|
|
|
|
{% set _statsd_host = swift_vars.statsd_host | default(swift.statsd_host | default(statsd_host | default(False))) %}
|
|
{% if _statsd_host | bool %}
|
|
log_statsd_host = {{ _statsd_host }}
|
|
log_statsd_port = {{ swift_vars.statsd_port | default(swift.statsd_port | default(statsd_port)) }}
|
|
log_statsd_default_sample_rate = {{ swift_vars.statsd_default_sample_rate | default(swift.statsd_default_sample_rate | default(statsd_default_sample_rate)) }}
|
|
log_statsd_sample_rate_factor = {{ swift_vars.statsd_sample_rate_factor | default(swift.statsd_sample_rate_factor | default(statsd_sample_rate_factor))}}
|
|
log_statsd_metric_prefix = {{ swift_vars.statsd_metric_prefix | default(swift.statsd_metric_prefix | default(inventory_hostname)) }}
|
|
{% endif %}
|
|
|
|
disable_fallocate = {{ swift_account_disable_fallocate }}
|
|
fallocate_reserve = {{ swift_account_fallocate_reserve }}
|
|
|
|
[pipeline:main]
|
|
pipeline = healthcheck recon account-server
|
|
|
|
[app:account-server]
|
|
use = egg:swift#account
|
|
|
|
[filter:healthcheck]
|
|
use = egg:swift#healthcheck
|
|
|
|
[filter:recon]
|
|
use = egg:swift#recon
|
|
recon_cache_path = /var/cache/swift
|
|
recon_lock_path = /var/lock
|
|
|
|
{% if not swift_dedicated_replication %}
|
|
[account-replicator]
|
|
per_diff = 10000
|
|
reclaim_age = {{ reclaim_age | default(604800) }}
|
|
{% endif %}
|
|
|
|
#TODO(jamesdenton): Remove config section when no longer required for service to start
|
|
[account-auditor]
|
|
|
|
[account-reaper]
|
|
delay_reaping = 604800
|
|
|
|
[filter:xprofile]
|
|
use = egg:swift#xprofile
|