AZ-204 · Question #86
You are writing code to create and run an Azure Batch job. You have created a pool of compute nodes. You need to choose the right class and its method to submit a batch job to the Batch service. Which
The correct answer is E. CloudJob.CommitAsync(IEnumerable<BatchClientBehavior>, CancellationToken). A Batch job is a logical grouping of one or more tasks. A job includes settings common to the tasks, such as priority and the pool to run tasks on. The app uses the BatchClient.JobOperations.CreateJob method to create a job on your pool. The Commit method submits the job to the B
Question
Options
- AJobOperations.EnableJobAsync(String,
- BJobOperations.CreateJob()
- CCloudJob.Enable(IEnumerable<BatchClientBehavior>)
- DJobOperations.EnableJob(String,IEnumerable<BatchClientBehavior>)
- ECloudJob.CommitAsync(IEnumerable<BatchClientBehavior>, CancellationToken)
How the community answered
(25 responses)- A16% (4)
- B4% (1)
- D8% (2)
- E72% (18)
Explanation
A Batch job is a logical grouping of one or more tasks. A job includes settings common to the tasks, such as priority and the pool to run tasks on. The app uses the BatchClient.JobOperations.CreateJob method to create a job on your pool. The Commit method submits the job to the Batch service. Initially the job has no tasks. CloudJob job = batchClient.JobOperations.CreateJob(); job.PoolInformation = new PoolInformation { PoolId = PoolId }; job.Commit(); https://docs.microsoft.com/en-us/azure/batch/quick-run-dotnet
Topics
Community Discussion
No community discussion yet for this question.