A cloud administrator notices that a virtual machine running a critical application is using 95% CPU consistently. The application is single-threaded and performance is degraded. Which action should the administrator take to resolve the issue?
Trap 1: Deploy additional VMs and load balance the application.
Single-threaded app cannot be distributed.
Trap 2: Increase the RAM allocation to the VM.
CPU is the bottleneck, not memory.
Trap 3: Increase the number of vCPUs assigned to the VM.
The application is single-threaded; more vCPUs won't help.
- A
Deploy additional VMs and load balance the application.
Why wrong: Single-threaded app cannot be distributed.
- B
Increase the RAM allocation to the VM.
Why wrong: CPU is the bottleneck, not memory.
- C
Migrate the VM to a host with a higher CPU clock speed.
Higher clock speed improves single-threaded performance.
- D
Increase the number of vCPUs assigned to the VM.
Why wrong: The application is single-threaded; more vCPUs won't help.