Topic 1 Question 377
A company has implemented a Kubernetes cluster on Amazon Elastic Kubernetes Service (Amazon ECS) to host a microservices-based application. The company expects application traffic to increase significantly for the next month and wants to prevent the application from crashing because of the high number of requests.
Which solution will meet these requirements with the LEAST administrative overhead?
Create a second EKS cluster. Load balance the workload between the two clusters.
Implement the Kubernetes Horizontal Pod Autoscaler. Set a target CPU utilization percentage.
Migrate the application from Amazon EKS to Amazon EC2 for the next month. Migrate the application back to Amazon EKS when the month ends.
Implement the Kubernetes Vertical Pod Autoscaler. Set a target CPU utilization percentage.
ユーザの投票
コメント(3)
- 正解だと思う選択肢: B
add more pods B
👍 2DZRomero2023/08/17 - 正解だと思う選択肢: B
The Kubernetes Horizontal Pod Autoscaler (HPA) is designed to automatically scale the number of pods in a deployment or replica set based on observed CPU or memory utilization. In this scenario, the company wants to prevent the application from crashing due to high request traffic. The HPA can dynamically adjust the number of pods based on CPU utilization, ensuring that the application can handle increased traffic while avoiding overloading the system.
👍 2AWSdeveloper082023/08/25 - 正解だと思う選択肢: B👍 1xSohox2023/08/25
シャッフルモード