Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Request for new functionality
View staffing
Description
Problem you have encountered: Cloud Scheduler's CRON syntax lacks the fine-grained scheduling capability to directly specify
"02:00 AM on the first Tuesday of the month"
. This feature is present in AWS EventBridge CRON expressions using the"#"
wildcard.What you expected to happen: The ability to configure a job in Cloud Scheduler to execute with a schedule like
"0 2 ? * 2#1" (at 02:00 AM, on the first Tuesday of the month)
.Steps to reproduce:
"#"
wildcard, limiting your ability to specify the "first Tuesday" of the month(or any similar instance-based) scheduling.Other information (workarounds you have tried, documentation consulted, etc):
Cloud Scheduler documentation:https://cloud.google.com/scheduler/docs/configuring/cron-job-schedules#cron_job_format
AWS EventBridge documentation:https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-cron-expressions.html#:~:text=%2C%20%2D%20*%20/-,Wildcards,refers%20to%20the%20second%20day%20of%20that%20type%20within%20the%20month.,-Note