0
0
GCPcloud~10 mins

Cloud Scheduler for cron jobs in GCP - Step-by-Step Execution

Choose your learning style9 modes available
Process Flow - Cloud Scheduler for cron jobs
Define cron schedule
Create Cloud Scheduler job
Cloud Scheduler triggers job at schedule
Job sends HTTP request or Pub/Sub message
Target service receives and executes job
Job completes and waits for next trigger
This flow shows how you set a schedule, create a job, and Cloud Scheduler triggers it repeatedly to run tasks automatically.
Execution Sample
GCP
gcloud scheduler jobs create http my-job \
  --schedule="*/5 * * * *" \
  --uri="https://example.com/task" \
  --http-method=POST
This command creates a Cloud Scheduler job that runs every 5 minutes and sends a POST request to a URL.
Process Table
StepActionSchedule TimeJob Triggered?Request SentJob Status
1Job created with schedule */5 * * * *Every 5 minutesNoNoReady
2Wait until first 5-minute mark00:05YesYesRunning
3Target service receives request00:05YesYesSuccess
4Wait until next 5-minute mark00:10YesYesRunning
5Target service receives request00:10YesYesSuccess
6Job continues triggering every 5 minutes00:15, 00:20, ...YesYesSuccess
7Job paused or deletedN/ANoNoStopped
💡 Job stops when paused or deleted, otherwise triggers repeatedly every 5 minutes.
Status Tracker
VariableStartAfter 1After 2After 3Final
Job StatusReadyRunningSuccessRunningSuccess
Schedule TimeEvery 5 minutes00:0500:1000:15Repeating
Job Triggered?NoYesYesYesYes
Key Moments - 3 Insights
Why does the job status change from Ready to Running and then Success?
When the scheduled time arrives (see rows 2 and 3), Cloud Scheduler triggers the job (Running), and after the target service completes the task, the status updates to Success (row 3).
What happens if the job is paused or deleted?
As shown in row 7, the job stops triggering, so no requests are sent and the status changes to Stopped.
Does Cloud Scheduler run the job exactly at the scheduled time?
Yes, it triggers the job as close as possible to the scheduled time (rows 2 and 4), but slight delays can happen due to system processing.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, what is the job status at step 3?
ASuccess
BReady
CRunning
DStopped
💡 Hint
Check the 'Job Status' column in row 3 of the execution_table.
At which step does the job first send a request to the target service?
AStep 3
BStep 1
CStep 2
DStep 7
💡 Hint
Look at the 'Request Sent' column and find the first 'Yes' value.
If the schedule changes to every 10 minutes, how would the 'Schedule Time' column change?
AIt would show 'Every minute'
BIt would show 'Every 10 minutes' instead of 'Every 5 minutes'
CIt would remain 'Every 5 minutes'
DIt would show 'Once a day'
💡 Hint
Refer to the 'Schedule Time' values in the variable_tracker for how schedule is represented.
Concept Snapshot
Cloud Scheduler runs jobs on a set schedule using cron syntax.
You create a job with a schedule and target (HTTP or Pub/Sub).
Cloud Scheduler triggers the job repeatedly at scheduled times.
Jobs send requests to target services which execute the tasks.
You can pause, resume, or delete jobs anytime.
Schedules use standard cron format like '*/5 * * * *' for every 5 minutes.
Full Transcript
Cloud Scheduler lets you run tasks automatically on a schedule you set using cron syntax. You create a job that runs every few minutes or hours and sends a request to a service. The flow starts by defining the schedule, then creating the job. When the scheduled time arrives, Cloud Scheduler triggers the job, which sends a request to the target service. The service runs the task and reports success. This repeats until you pause or delete the job. The execution table shows the job status changing from Ready to Running to Success at each trigger. Variables like job status and schedule time update as the job runs. Key moments include understanding status changes, what happens when paused, and timing accuracy. The quiz tests your understanding of job status, request timing, and schedule changes. The snapshot summarizes how to create and manage scheduled jobs with Cloud Scheduler.