You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Scheduler retry options. Applies only to scheduled functions.
73
73
*/
74
74
exportinterfaceScheduleRetryConfig{
75
+
/**
76
+
* The number of attempts that the system will make to run a job using the exponential backoff procedure described by {@link ScheduleRetryConfig.maxDoublings}.
77
+
*
78
+
* @defaultValue 0 (infinite retry)
79
+
*/
75
80
retryCount?: number;
81
+
/**
82
+
* The time limit for retrying a failed job, measured from time when an execution was first attempted.
83
+
*
84
+
* If specified with {@link ScheduleRetryConfig.retryCount}, the job will be retried until both limits are reached.
85
+
*
86
+
* @defaultValue 0
87
+
*/
76
88
maxRetryDuration?: string;
89
+
/**
90
+
* The minimum amount of time to wait before retrying a job after it fails.
91
+
*
92
+
* @defaultValue 5 seconds
93
+
*/
77
94
minBackoffDuration?: string;
95
+
/**
96
+
* The maximum amount of time to wait before retrying a job after it fails.
97
+
*
98
+
* @defaultValue 1 hour
99
+
*/
78
100
maxBackoffDuration?: string;
101
+
/**
102
+
* The max number of backoff doubling applied at each retry.
103
+
*
104
+
* @defaultValue 5
105
+
*/
79
106
maxDoublings?: number;
80
107
}
81
108
82
109
/**
83
110
* Configuration options for scheduled functions.
84
111
*/
85
112
exportinterfaceSchedule{
113
+
/**
114
+
* Describes the schedule on which the job will be executed.
115
+
*
116
+
* The schedule can be either of the following types:
0 commit comments