-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathadmin.api.v1.environments.$environmentId.engine.repair-queues.ts
More file actions
86 lines (72 loc) · 2.17 KB
/
admin.api.v1.environments.$environmentId.engine.repair-queues.ts
File metadata and controls
86 lines (72 loc) · 2.17 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
import { ActionFunctionArgs, json } from "@remix-run/server-runtime";
import pMap from "p-map";
import { z } from "zod";
import { $replica, prisma } from "~/db.server";
import { requireAdminApiRequest } from "~/services/personalAccessToken.server";
import { determineEngineVersion } from "~/v3/engineVersion.server";
import { engine } from "~/v3/runEngine.server";
const ParamsSchema = z.object({
environmentId: z.string(),
});
const BodySchema = z.object({
dryRun: z.boolean().default(true),
queues: z.array(z.string()).default([]),
});
export async function action({ request, params }: ActionFunctionArgs) {
await requireAdminApiRequest(request);
const parsedParams = ParamsSchema.parse(params);
const environment = await prisma.runtimeEnvironment.findFirst({
where: {
id: parsedParams.environmentId,
},
include: {
organization: true,
project: true,
orgMember: true,
},
});
if (!environment) {
return json({ error: "Environment not found" }, { status: 404 });
}
const engineVersion = await determineEngineVersion({ environment });
if (engineVersion === "V1") {
return json({ error: "Engine version is V1" }, { status: 400 });
}
const body = await request.json();
const parsedBody = BodySchema.parse(body);
const queues = await $replica.taskQueue.findMany({
where: {
runtimeEnvironmentId: environment.id,
version: "V2",
name: parsedBody.queues.length > 0 ? { in: parsedBody.queues } : undefined,
},
select: {
friendlyId: true,
name: true,
concurrencyLimit: true,
type: true,
paused: true,
},
orderBy: {
orderableName: "asc",
},
});
const repairEnvironmentResults = await engine.repairEnvironment(environment, parsedBody.dryRun);
const repairResults = await pMap(
queues,
async (queue) => {
const repair = await engine.repairQueue(
environment,
queue.name,
parsedBody.dryRun,
repairEnvironmentResults.runIds
);
return {
queue: queue.name,
...repair,
};
},
{ concurrency: 5 }
);
return json({ environment: repairEnvironmentResults, queues: repairResults });
}