Imad Hashmi
07/28/2024, 2:36 PMStephen Nadraus
07/28/2024, 11:35 PMImad Hashmi
07/29/2024, 1:10 AMThomas Kraus
07/29/2024, 8:27 AM--max-old-space-size=<size in MB>
flag in a NODE_OPTIONS
env var for the pod. Then set the pod memory request and limit at a slightly higher value.
We keep pod's memory request and limit at the same value, which is a conservative approach, depending on your workload you might have the memory request a bit lower than the limit, to optimize for the scenario that not all pods actually use memory up to their limit.Lalitkumar Waghulkar
08/01/2024, 8:41 AM--max-old-space-size
flag. The value for this flag is specified in megabytes. Also, you will need to update your Kubernetes deployment YAML file to include the --max-old-space-size
flag in the command or args section of your container definition.
Once you have updated the deployment YAML file, apply the changes using kubectl and monitor the applicationMustafa Qamaruddin
08/07/2024, 1:33 PM