A compost lab needs a container that processes a drop folder and exits, three times a day. The team does not want a 24×7 HTTP process with a minimum replica count. Which Azure Container Apps feature should they use?
Select an answer to reveal the explanation.
Short Explanation
This is a timed chore, not a storefront that has to answer browsers all day. Container Apps jobs start on a schedule or event, do the work, and exit—like a scheduled dump-truck run at the compost yard. A min-replica web app would pay to sit idle between runs.
Full Explanation
Azure Container Apps supports jobs that run to completion on demand, on a schedule, or in response to events, which fits batch processing of a drop folder. Continuously running apps are meant for ingress and long-lived replicas. Choosing a job avoids keeping an HTTP app warm solely to fire three daily batch passes, and AKS CronJobs are outside the primary AZ-204 container scope for this scenario.