Add SwiftMinPartHours parameter
authorLorcan <lorcan.browne@hp.com>
Fri, 12 Sep 2014 12:40:24 +0000 (13:40 +0100)
committerLorcan <lorcan.browne@hp.com>
Mon, 29 Sep 2014 09:22:28 +0000 (10:22 +0100)
This parameter adds the facility for an operator to set the length
of time in hours that a partition in a swift ring can be altered
following a rebalance of that ring. The default value is set to one.

The corresponding element change is here:
Ie6438386a54794e1ae2f31ad925db01c2c10ed6d

Change-Id: Icc5e431a7e2884b3ca3a255b6fd901619bc98460

swift-deploy.yaml
swift-source.yaml
swift-storage-source.yaml

index e3f475c..4a8625e 100644 (file)
@@ -14,6 +14,10 @@ parameters:
     type: number
     default: 1
     description: How many replicas to use in the swift rings.
+  SwiftMinPartHours:
+    type: number
+    default: 1
+    description: The minimum time (in hours) before a partition in a ring can be moved following a rebalance.
 resources:
   controller0Swift:
     type: OS::Heat::StructuredDeployment
@@ -52,3 +56,4 @@ resources:
                         - - {get_attr: [controller0, networks, ctlplane, 0]}
                           - ':11211'
         swift_replicas: { get_param: SwiftReplicas}
+        swift_min_part_hours: { get_param: SwiftMinPartHours}
index cf1cf9d..b07164c 100644 (file)
@@ -10,4 +10,5 @@ resources:
           part-power: 10
           proxy-memcache: { get_input: swift_proxy_memcache }
           replicas: {get_input: swift_replicas }
+          min-part-hours: {get_input: swift_min_part_hours }
           service-password: { get_input: swift_password }
index 103a7ec..d365342 100644 (file)
@@ -71,3 +71,4 @@ resources:
                         - - {get_attr: [controller0, networks, ctlplane, 0]}
                           - ':11211'
         swift_replicas: { get_param: SwiftReplicas}
+        swift_min_part_hours: { get_param: SwiftMinPartHours}