1V0-603 · Question #102
To improve provisioning time of Clone workflows, the configured per-agent limit has been increased. However, many of the workflows now fail. What action would resolve this?
The correct answer is B. Increase the timeout interval. See the full explanation below for the reasoning.
Question
To improve provisioning time of Clone workflows, the configured per-agent limit has been increased. However, many of the workflows now fail. What action would resolve this?
Options
- AAdd compute resources
- BIncrease the timeout interval
- CEnable Fast Provisioning
- DIncrease the appliance RAM to 12GB
How the community answered
(26 responses)- A8% (2)
- B77% (20)
- C4% (1)
- D12% (3)
Community Discussion
6Correct answer is B, Increase the timeout interval. When you crank up the per-agent concurrency limit on Clone workflows, each individual provisioning operation takes longer because the system is juggling more simultaneous requests against the same underlying resources. The workflows are not failing because resources are gone, they are failing because they finish slower than the default timeout window allows, so the orchestrator kills them before they complete. A, C, and D are all dead ends here, adding compute does not change the timer, Fast Provisioning is a separate feature toggle unrelated to timeout behavior, and the 12GB RAM threshold is a red herring for a different class of vCD issue. Flag this one as a medium burn, 45 to 60 seconds max, the logic chain is short once you spot that "concurrency went up, speed went down, timer ran out" is the whole story.
The "per-agent limit" wording trips people up because it makes A sound reasonable, like the agents just need more horsepower to handle the load. But the failure mode here is timeout, not resource starvation, so increasing the timeout interval (B) is what actually lets those clone workflows finish instead of dying mid-run.
When you crank up the per-agent limit you are throwing more concurrent work at the appliance than the default memory can handle, and in my lab I saw those exact workflow failures clear up the moment I bumped the appliance RAM to 12GB, so D is the move here.
Ola, your lab result is a valid workaround, but the cert is testing the root cause fix, and increasing the per-agent limit exceeds the default session or thread allocation, which is resolved in B by adjusting the workflow engine concurrency setting, not by adding RAM. D treats a symptom, B addresses the actual configuration constraint the exam maps to the objective.
Honestly I keep coming back to C on this one because enabling Fast Provisioning is exactly what my senior showed me when we had clone workflows timing out after bumping the per-agent limit, it basically pre-stages the linked clones so the provisioning engine is not scrambling to build them all from scratch under the higher load. The failures you see after increasing that limit are the system choking on demand it was never set up to handle quickly, and Fast Provisioning directly addresses that bottleneck rather than just throwing more hardware at it.
Yusuf, Fast Provisioning does speed up linked clone creation but it does not resolve the agent connection limit that is actually causing the failures here, and the exam wants you to recognize that increasing the Max Connections per vCenter in the Connection Server settings (B) directly lifts the ceiling that gets hit when you raise that per-agent number.