add support for changing cinder perodic_interval
As discovered in tempest, when you create and delete volumes quickly, and have a small volume storage pool, you can get cinder scheduler to think you are "out of space" when you are not. This is because cinder scheduler updates free space on it's periodic job, which defaults to 60 seconds. We need control over that value for the devstack gate otherwise we regularly get overruns if we run too many volume tests quickly. Work around for bug 1180976 Expect that this will get removed later if cinder gets a more efficient way to update the scheduler for freed resources. Also, don't be completely stupid about setting defaults.... Change-Id: I20e52e66fcc94b224476cdd14c88bd6981b4e617
This commit is contained in:
parent
9f52cd78f2
commit
f35ff72b77
@ -58,6 +58,14 @@ CINDER_MULTI_LVM_BACKEND=$(trueorfalse False $CINDER_MULTI_LVM_BACKEND)
|
||||
# https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1023755
|
||||
CINDER_SECURE_DELETE=`trueorfalse True $CINDER_SECURE_DELETE`
|
||||
|
||||
# Cinder reports allocations back to the scheduler on periodic intervals
|
||||
# it turns out we can get an "out of space" issue when we run tests too
|
||||
# quickly just because cinder didn't realize we'd freed up resources.
|
||||
# Make this configurable so that devstack-gate/tempest can set it to
|
||||
# less than the 60 second default
|
||||
# https://bugs.launchpad.net/cinder/+bug/1180976
|
||||
CINDER_PERIODIC_INTERVAL=${CINDER_PERIODIC_INTERVAL:-60}
|
||||
|
||||
# Name of the lvm volume groups to use/create for iscsi volumes
|
||||
# VOLUME_GROUP2 is used only if CINDER_MULTI_LVM_BACKEND = True
|
||||
VOLUME_GROUP=${VOLUME_GROUP:-stack-volumes}
|
||||
@ -197,6 +205,7 @@ function configure_cinder() {
|
||||
iniset $CINDER_CONF DEFAULT rootwrap_config "$CINDER_CONF_DIR/rootwrap.conf"
|
||||
iniset $CINDER_CONF DEFAULT osapi_volume_extension cinder.api.contrib.standard_extensions
|
||||
iniset $CINDER_CONF DEFAULT state_path $CINDER_STATE_PATH
|
||||
iniset $CINDER_CONF DEFAULT periodic_interval $CINDER_PERIODIC_INTERVAL
|
||||
|
||||
if is_service_enabled tls-proxy; then
|
||||
# Set the service port for a proxy to take the original
|
||||
|
Loading…
Reference in New Issue
Block a user