-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathretrying.ts
More file actions
243 lines (205 loc) · 5.98 KB
/
retrying.ts
File metadata and controls
243 lines (205 loc) · 5.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import {
calculateNextRetryDelay,
isOOMRunError,
RetryOptions,
sanitizeError,
shouldLookupRetrySettings,
shouldRetryError,
TaskRunError,
taskRunErrorEnhancer,
TaskRunExecutionRetry,
} from "@trigger.dev/core/v3";
import { PrismaClientOrTransaction } from "@trigger.dev/database";
import { MAX_TASK_RUN_ATTEMPTS } from "./consts.js";
import { ServiceValidationError } from "./errors.js";
type Params = {
runId: string;
attemptNumber: number | null;
error: TaskRunError;
retryUsingQueue: boolean;
retrySettings: TaskRunExecutionRetry | undefined;
};
export type RetryOutcome =
| {
outcome: "cancel_run";
reason?: string;
}
| {
outcome: "fail_run";
sanitizedError: TaskRunError;
wasOOMError?: boolean;
}
| {
outcome: "retry";
method: "queue" | "immediate";
settings: TaskRunExecutionRetry;
machine?: string;
wasOOMError?: boolean;
// Current usage values for calculating updated totals
usageDurationMs: number;
costInCents: number;
machinePreset: string | null;
};
export async function retryOutcomeFromCompletion(
prisma: PrismaClientOrTransaction,
{ runId, attemptNumber, error, retryUsingQueue, retrySettings }: Params
): Promise<RetryOutcome> {
// Canceled
if (error.type === "INTERNAL_ERROR" && error.code === "TASK_RUN_CANCELLED") {
return { outcome: "cancel_run", reason: error.message };
}
const sanitizedError = sanitizeError(error);
// OOM error (retry on a larger machine or fail)
if (isOOMRunError(error)) {
const oomResult = await retryOOMOnMachine(prisma, runId);
if (!oomResult) {
return { outcome: "fail_run", sanitizedError, wasOOMError: true };
}
const delay = calculateNextRetryDelay(oomResult.retrySettings, attemptNumber ?? 1);
if (!delay) {
//no more retries left
return { outcome: "fail_run", sanitizedError, wasOOMError: true };
}
return {
outcome: "retry",
method: "queue",
machine: oomResult.machine,
settings: { timestamp: Date.now() + delay, delay },
wasOOMError: true,
usageDurationMs: oomResult.usageDurationMs,
costInCents: oomResult.costInCents,
machinePreset: oomResult.machinePreset,
};
}
const enhancedError = taskRunErrorEnhancer(error);
// Not a retriable error: fail
const retriableError = shouldRetryError(enhancedError);
if (!retriableError) {
return { outcome: "fail_run", sanitizedError };
}
// Exceeded global max attempts
if (attemptNumber !== null && attemptNumber > MAX_TASK_RUN_ATTEMPTS) {
return { outcome: "fail_run", sanitizedError };
}
// Get the run settings and current usage values
const run = await prisma.taskRun.findFirst({
where: {
id: runId,
},
select: {
maxAttempts: true,
lockedRetryConfig: true,
usageDurationMs: true,
costInCents: true,
machinePreset: true,
},
});
if (!run) {
throw new ServiceValidationError("Run not found", 404);
}
// No max attempts set
if (!run.maxAttempts) {
return { outcome: "fail_run", sanitizedError };
}
// No attempts left
if (attemptNumber !== null && attemptNumber >= run.maxAttempts) {
return { outcome: "fail_run", sanitizedError };
}
// No retry settings
if (!retrySettings) {
const shouldLookup = shouldLookupRetrySettings(enhancedError);
if (!shouldLookup) {
return { outcome: "fail_run", sanitizedError };
}
const retryConfig = run.lockedRetryConfig;
if (!retryConfig) {
return { outcome: "fail_run", sanitizedError };
}
const parsedRetryConfig = RetryOptions.nullish().safeParse(retryConfig);
if (!parsedRetryConfig.success) {
return { outcome: "fail_run", sanitizedError };
}
if (!parsedRetryConfig.data) {
return { outcome: "fail_run", sanitizedError };
}
const nextDelay = calculateNextRetryDelay(parsedRetryConfig.data, attemptNumber ?? 1);
if (!nextDelay) {
return { outcome: "fail_run", sanitizedError };
}
const retrySettings = {
timestamp: Date.now() + nextDelay,
delay: nextDelay,
};
return {
outcome: "retry",
method: "queue", // we'll always retry on the queue because usually having no settings means something bad happened
settings: retrySettings,
usageDurationMs: run.usageDurationMs,
costInCents: run.costInCents,
machinePreset: run.machinePreset,
};
}
return {
outcome: "retry",
method: retryUsingQueue ? "queue" : "immediate",
settings: retrySettings,
usageDurationMs: run.usageDurationMs,
costInCents: run.costInCents,
machinePreset: run.machinePreset,
};
}
async function retryOOMOnMachine(
prisma: PrismaClientOrTransaction,
runId: string
): Promise<{
machine: string;
retrySettings: RetryOptions;
usageDurationMs: number;
costInCents: number;
machinePreset: string | null;
} | undefined> {
try {
const run = await prisma.taskRun.findFirst({
where: {
id: runId,
},
select: {
machinePreset: true,
lockedRetryConfig: true,
usageDurationMs: true,
costInCents: true,
},
});
if (!run || !run.lockedRetryConfig || !run.machinePreset) {
return;
}
const retryConfig = run.lockedRetryConfig;
const parsedRetryConfig = RetryOptions.nullish().safeParse(retryConfig);
if (!parsedRetryConfig.success) {
return;
}
if (!parsedRetryConfig.data) {
return;
}
const retryMachine = parsedRetryConfig.data.outOfMemory?.machine;
if (!retryMachine) {
return;
}
if (run.machinePreset === retryMachine) {
return;
}
return {
machine: retryMachine,
retrySettings: parsedRetryConfig.data,
usageDurationMs: run.usageDurationMs,
costInCents: run.costInCents,
machinePreset: run.machinePreset,
};
} catch (error) {
console.error("[FailedTaskRunRetryHelper] Failed to get execution retry", {
runId,
error,
});
return;
}
}