Discord
@b/pnp-cloud
Simulation
6
0
Public

Terraform Simulation

Use terraform to create a kubernetes cloud simulation
forked from @eadan/hcloud

Simulating Cloud Infrastructure with Terraform

This is a simulation that demos how to use HASH to automatically generate a representation of your cloud infrastructure. It uses a simple terraform.tf.json file (terraform_resource.json) to define and initialize a kubernetes cluster, where incoming requests are handled by short lived pods. The specs for the nodes and the pods are defined in the terraform file and in an accompanying instances.json file, which includes the specifications for different AWS instance types.

Additionally requests are generated according to real-world data. The request distribution was uploaded as a dataset — distribution.csv — and represents the proportion of daily requests received in each hour of the day. Requests are executed as soon as received, unless there are not currently enough compute resources available in the cluster. In this case, the request is queued until adequate resources become available. Compute resources become available when a request completes, or when a new compute node is added to the cluster by the autoscaler.

To modify this for your own cloud infrastructure:

The parameters controlling this simulation may be tuned through the globals.json file. These parameters are:

  1. requests_per_day: the number of user requests received per day.
  2. request_time_seconds: a triangular distribution which specifies the duration of each request run. This distribution is parameterised by a min, mode and max, in seconds.
  3. node_specs: the number of cpu cores and gibabytes of memory in each compute node in the cluster.
  4. pod_specs: the number of cpu cores and gigabytes of memory allocated to the pod for each request run.
  5. autoscale_bounds: the autoscaler automatically adds and removes nodes in an effort to maintain cluster utilisation between the given bounds. If cluster utilisation exceeds max_util, then one node is added to the cluster. Similarly, if utilisation drops below min_util, then one node is removed from the cluster. At each time step, at most one node will be removed or added.
  6. autoscale_delay_minutes: the time delay before which a request to add a node to the cluster is fulfilled. There is no delay to remove a node.
  7. initial_num_nodes: the starting number of nodes in the cluster.
  8. min_num_nodes: the minimum number of nodes required to be in the cluster at all times.

Each step in the simulation represents a passing of one minute.

The Analysis tab contains several plots illustrating how the cluster evolves as experiment requests are received and executed.

  1. Pods shows the number of actively running, and queued requests, at each time step.
  2. Cluster CPU Usage shows the total number of CPU cores in the cluster and the current utilisation at each time step.
  3. Cluster Memory Usage shows the total amount of memory in the cluster and the current utilisation at each time step.
  4. Number of Nodes shows the number of compute nodes in the cluster at each time step.