Batch jobs need to schedule in between specific time

Juturu Bhargav Reddy 1 Reputation point
2022-12-06T15:04:20.577+00:00

Hi Team,
I want schedule azure - batch job between between 6 pm to 10 pm.

Azure Batch
Azure Batch
An Azure service that provides cloud-scale job scheduling and compute management.
302 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. kobulloc-MSFT 23,416 Reputation points Microsoft Employee
    2022-12-06T15:57:15.557+00:00

    Hello, @Juturu Bhargav Reddy !

    How do I schedule an Azure Batch job between specific times?
    To schedule a job between specific times, you'll want to set the Do not run until as your start time and the Do not run after as your end time:

    https://learn.microsoft.com/en-us/azure/batch/batch-job-schedule#schedule-a-job-in-the-azure-portal

    1. Sign in to the Azure portal.
    2. Select the Batch account you want to schedule jobs in.
    3. In the left navigation pane, select Job schedules.
    4. Select Add to create a new job schedule.

    Do not run until: Specifies the earliest time the job will run. If you don't set this, the schedule becomes ready to run jobs immediately.

    Do not run after: No jobs will run after the time you enter here. If you don't specify a time, then you are creating a recurring job schedule, which remains active until you explicitly terminate it.

    267854-image.png

    I hope this helps!

    0 comments No comments