
Ultimate access to all questions.
Your company has a Kubernetes application that pulls messages from Pub/Sub and stores them in Filestore. This simple application was deployed as a single pod. Upon analyzing Pub/Sub metrics, the infrastructure team found that the application cannot process the messages in real time, resulting in most messages waiting for minutes before being processed. The processing of these messages is I/O-intensive. How should you scale the application's elaboration process to handle the workload effectively?
A
Use kubectl autoscale deployment APP_NAME --max 6 --min 2 --cpu-percent 50 to configure Kubernetes autoscaling deployment._
B
Configure a Kubernetes autoscaling deployment based on the subscription/push_request_latencies metric.
C
Use the --enable-autoscaling flag when you create the Kubernetes cluster.
D
Configure a Kubernetes autoscaling deployment based on the subscription/num_undelivered_messages metric.