---
id: node-memory-hog
title: Node Memory Hog Experiment Details
sidebar_label: Node Memory Hog
original_id: node-memory-hog
---
---
## Experiment Metadata
| Variables |
Description |
Specify In ChaosEngine |
Notes |
| TOTAL_CHAOS_DURATION |
The time duration for chaos insertion (seconds) |
Optional |
Defaults to 120 |
| LIB |
The chaos lib used to inject the chaos |
Optional |
Defaults to `litmus` |
| LIB_IMAGE |
Image used to run the stress command |
Optional |
Defaults to `litmuschaos/litmus-go:latest` |
| MEMORY_PERCENTAGE |
The size as percent of total available memory |
Optional |
Defaults to 90 |
| RAMP_TIME |
Period to wait before and after injection of chaos in sec |
Optional |
|
| INSTANCE_ID |
A user-defined string that holds metadata/info about current run/instance of chaos. Ex: 04-05-2020-9-00. This string is appended as suffix in the chaosresult CR name. |
Optional |
Ensure that the overall length of the chaosresult CR is still < 64 characters |
#### Sample ChaosEngine Manifest
[embedmd]: # "https://raw.githubusercontent.com/litmuschaos/chaos-charts/master/charts/generic/node-memory-hog/engine.yaml yaml"
```yaml
apiVersion: litmuschaos.io/v1alpha1
kind: ChaosEngine
metadata:
name: nginx-chaos
namespace: default
spec:
# It can be true/false
annotationCheck: "false"
# It can be active/stop
engineState: "active"
#ex. values: ns1:name=percona,ns2:run=nginx
auxiliaryAppInfo: ""
appinfo:
appns: "default"
applabel: "app=nginx"
appkind: "deployment"
chaosServiceAccount: node-memory-hog-sa
monitoring: false
# It can be delete/retain
jobCleanUpPolicy: "delete"
experiments:
- name: node-memory-hog
spec:
components:
env:
# set chaos duration (in sec) as desired
- name: TOTAL_CHAOS_DURATION
value: "120"
## specify the size as percent of total available memory (in percentage %)
## default value 90%
- name: MEMORY_PERCENTAGE
value: "90"
```
### Create the ChaosEngine Resource
- Create the ChaosEngine manifest prepared in the previous step to trigger the Chaos.
`kubectl apply -f chaosengine.yml`
- If the chaos experiment is not executed, refer to the [troubleshooting](https://docs.litmuschaos.io/docs/faq-troubleshooting/)
section to identify the root cause and fix the issues.
### Watch Chaos progress
- Setting up a watch of the Memory consumed by nodes in the Kubernetes Cluster
`watch kubectl top nodes`
### Abort/Restart the Chaos Experiment
- To stop the pod-delete experiment immediately, either delete the ChaosEngine resource or execute the following command:
`kubectl patch chaosengine