]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Change max_over_subscription_ratio default value
authorXing Yang <xing.yang@emc.com>
Thu, 26 Feb 2015 03:55:34 +0000 (22:55 -0500)
committerXing Yang <xing.yang@emc.com>
Thu, 26 Feb 2015 04:06:50 +0000 (23:06 -0500)
Currently max_over_subscription_ratio is set to 2.0 by default.
This default value is too low for thin provisioning. Change it to 20.0.

Change-Id: I61147e53caa272be0c970507114f5e2b8494edca

cinder/volume/driver.py

index cea0eea8340ed74c0985fa27bd1b203a15f537a6..9b073adb291b3fbdd33e834f466c0da98b45d436 100644 (file)
@@ -151,11 +151,11 @@ volume_opts = [
                 help='Tell driver to use SSL for connection to backend '
                      'storage if the driver supports it.'),
     cfg.FloatOpt('max_over_subscription_ratio',
-                 default=2.0,
+                 default=20.0,
                  help='Float representation of the over subscription ratio '
                       'when thin provisioning is involved. Default ratio is '
-                      '2.0, meaning provisioned capacity can be twice of the '
-                      'total physical capacity. If the ratio is 10.5, it '
+                      '20.0, meaning provisioned capacity can be 20 times of '
+                      'the total physical capacity. If the ratio is 10.5, it '
                       'means provisioned capacity can be 10.5 times of the '
                       'total physical capacity. A ratio of 1.0 means '
                       'provisioned capacity cannot exceed the total physical '