Skip to content
Snippets Groups Projects
Commit f87f1a1a authored by Björn Vonheiden's avatar Björn Vonheiden Committed by Sören Henning
Browse files

use the composition over inheritance patter for DataVolumeLoadGeneratorReplicaPatcher

parent 538b7486
No related branches found
No related tags found
1 merge request!174Add a Patcher to handle ospbench data volume settings
package theodolite.patcher package theodolite.patcher
import io.fabric8.kubernetes.api.model.KubernetesResource import io.fabric8.kubernetes.api.model.KubernetesResource
import io.fabric8.kubernetes.api.model.apps.Deployment
/** /**
* The DataVolumeLoadGeneratorReplicaPatcher allows to modify the value of an environment variable * The DataVolumeLoadGeneratorReplicaPatcher takes the total load that should be generated
* and computes the number of instances needed for this load based on the `maxVolume`
* ((load + maxVolume - 1) / maxVolume) and calculates the load per instance
* (loadPerInstance = load / instances).
* The number of instances are set for the load generator and the given variable is set to the
* load per instance.
* *
* @property k8sResource Kubernetes resource to be patched. * @property k8sResource Kubernetes resource to be patched.
* @property maxVolume per load generator instance
* @property container Container to be patched. * @property container Container to be patched.
* @property variableName Name of the environment variable to be patched. * @property variableName Name of the environment variable to be patched.
*/ */
class DataVolumeLoadGeneratorReplicaPatcher( class DataVolumeLoadGeneratorReplicaPatcher(
private val k8sResource: KubernetesResource, k8sResource: KubernetesResource,
private val maxVolume: String, private val maxVolume: Int,
container: String, container: String,
variableName: String variableName: String
) : EnvVarPatcher(k8sResource, container, variableName) { ) : AbstractPatcher(k8sResource) {
override fun <String> patch(value: String) { private val replicaPatcher = ReplicaPatcher(k8sResource)
if (k8sResource is Deployment) { private val envVarPatcher = EnvVarPatcher(k8sResource, container, variableName)
if (value is kotlin.String) {
val load = value.toInt() override fun <T> patch(value: T) {
val loadGenInstances = (load + maxVolume.toInt() - 1) / maxVolume.toInt() // calculate number of load generator instances and load per instance
this.k8sResource.spec.replicas = loadGenInstances val load = Integer.parseInt(value.toString())
val loadPerInstance = load / loadGenInstances val loadGenInstances = (load + maxVolume - 1) / maxVolume
super.patch(loadPerInstance.toString()) val loadPerInstance = load / loadGenInstances
}
} // Patch instance values and load value of generators
replicaPatcher.patch(loadGenInstances.toString())
envVarPatcher.patch(loadPerInstance.toString())
} }
} }
...@@ -50,7 +50,7 @@ class PatcherFactory { ...@@ -50,7 +50,7 @@ class PatcherFactory {
) )
"DataVolumeLoadGeneratorReplicaPatcher" -> DataVolumeLoadGeneratorReplicaPatcher( "DataVolumeLoadGeneratorReplicaPatcher" -> DataVolumeLoadGeneratorReplicaPatcher(
k8sResource = resource, k8sResource = resource,
maxVolume = patcherDefinition.properties["maxVolume"]!!, maxVolume = patcherDefinition.properties["maxVolume"]!!.toInt(),
container = patcherDefinition.properties["container"]!!, container = patcherDefinition.properties["container"]!!,
variableName = patcherDefinition.properties["variableName"]!! variableName = patcherDefinition.properties["variableName"]!!
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment