Schedule retries and auto-pause
Retry limits govern attempts for one firing; consecutive-failure policy can pause later firings. Read schedule counters and execution diagnostics on their models.
Retry policy and auto-pause
A retryable firing uses exponential backoff until it succeeds or exhausts its attempt limit. See receiver acknowledgement for which HTTP outcomes are retryable.
retryPolicy field | Default when the policy is omitted | Meaning |
|---|---|---|
maxAttempts | 10 | Total attempts, including the initial attempt. |
initialBackoffMs | 5000 | Backoff before the first retry, in milliseconds. |
maxBackoffMs | 1800000 | Maximum backoff, in milliseconds. |
autoPauseThreshold input | Effect |
|---|---|
| Omitted or zero on creation | Selects the default of 10 consecutive failures. |
| Zero on update | Leaves the existing threshold unchanged. |
| Nonzero override | Must be from 3 through 100. |
The current public requests do not expose a working disable setting. Reaching the threshold sets SCHEDULE_STATUS_PAUSED and records pausedReason. Resume the schedule after its target is healthy.