A single VM that polls Meraki sites and transforms JSON for a water-utility dashboard is CPU-saturated. The workers are designed to be identical and stateless behind a load balancer. Which scaling direction matches that constraint?
Select an answer to reveal the explanation.
Short Explanation
When one kitchen is slammed, hiring more cooks who share the same recipe beats buying one giant stove that still has one pair of hands. Stateless Cisco-API workers scale horizontally behind the balancer. A bigger single VM hits a ceiling.
Full Explanation
For a controller-facing worker that is already designed as identical and stateless, horizontal scale-out matches the constraint: more load-balanced copies absorb JSON transform and per-site polling load. Vertical scale-up of one box eventually ceilings out and fights the distributed design. Evaluate which direction the stated architecture actually needs.