|
| 1 | +[DEFAULT] |
| 2 | +# Make direct deploy faster, transfer sparse qcow2 images |
| 3 | +force_raw_images = False |
| 4 | +# Avoid some rpc timeouts |
| 5 | +rpc_response_timeout = 360 |
| 6 | + |
| 7 | +[conductor] |
| 8 | +automated_clean=true |
| 9 | +# We have busy conductors failing to heartbeat |
| 10 | +# Default is 10 secs |
| 11 | +heartbeat_interval = 30 |
| 12 | +# Default is 60 seconds |
| 13 | +heartbeat_timeout = 360 |
| 14 | +sync_local_state_interval = 360 |
| 15 | + |
| 16 | +# Normally this is 100. We see eventlet threads |
| 17 | +# not making much progress, to for saftey reduce |
| 18 | +# this by half, should leave work on rabbit queu |
| 19 | +workers_pool_size = 50 |
| 20 | +# Normally this is 8, keep it same |
| 21 | +period_max_workers = 8 |
| 22 | + |
| 23 | +# Increase power sync interval to reduce load |
| 24 | +sync_power_state_interval = 120 |
| 25 | +power_failure_recovery_interval = 120 |
| 26 | +# Stop checking for orphan allocations for now |
| 27 | +check_allocations_interval = 120 |
| 28 | + |
| 29 | +# Wait much longer before provision timeout check, to reduce background load |
| 30 | +# The default is 60 seconds |
| 31 | +check_provision_state_interval = 120 |
| 32 | +check_rescue_state_interval = 120 |
| 33 | + |
| 34 | +[database] |
| 35 | +# Usually this is 50, reduce to stop DB connection timeouts |
| 36 | +# and instead just make eventlet threads wait a bit longer |
| 37 | +max_overflow = 5 |
| 38 | +# By default this is 30 seconds, but as we reduce |
| 39 | +# the pool overflow, some people will need to wait longer |
| 40 | +pool_timeout = 60 |
| 41 | + |
| 42 | +[deploy] |
| 43 | +# Force Hardware assisted secure erase by default. |
| 44 | +erase_devices_priority=10 |
| 45 | +erase_devices_metadata_priority=0 |
| 46 | + |
| 47 | +[pxe] |
| 48 | +# Increase cache size to 120GB and TTL to 28 hours |
| 49 | +image_cache_size = 122880 |
| 50 | +image_cache_ttl = 100800 |
| 51 | + |
| 52 | +[neutron] |
| 53 | +# Increase the neutron client timeout to allow for the slow management |
| 54 | +# switches. |
| 55 | +timeout = 300 |
| 56 | +request_timeout = 300 |
| 57 | + |
| 58 | +[glance] |
| 59 | +# Retry image download at least once if failure |
| 60 | +num_retries = 1 |
0 commit comments