98cb749139
Create a new default var, swift_dedicated_replication, for storing conditions used to determine if a replication network is being used for swift. This allows for removing redundant tasks, reducing role run times. Change-Id: Ieb4263035527ff069017d40b95787f934fbd308c
53 lines
1.2 KiB
Django/Jinja
53 lines
1.2 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) }}
|
|
log_facility = LOG_LOCAL2
|
|
{% include "statsd.j2" %}
|
|
|
|
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
|
|
log_facility = LOG_LOCAL2
|
|
|
|
[filter:healthcheck]
|
|
use = egg:swift#healthcheck
|
|
|
|
[filter:recon]
|
|
use = egg:swift#recon
|
|
log_facility = LOG_LOCAL2
|
|
recon_cache_path = /var/cache/swift
|
|
recon_lock_path = /var/lock
|
|
|
|
{% if not swift_dedicated_replication %}
|
|
[account-replicator]
|
|
log_facility = LOG_LOCAL2
|
|
per_diff = 10000
|
|
reclaim_age = {{ reclaim_age | default(604800) }}
|
|
|
|
[account-auditor]
|
|
log_facility = LOG_LOCAL2
|
|
{% endif %}
|
|
|
|
[account-reaper]
|
|
log_facility = LOG_LOCAL2
|
|
delay_reaping = 604800
|
|
|
|
[filter:xprofile]
|
|
use = egg:swift#xprofile
|