forked from game-ci/versioning-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathciJobs.ts
More file actions
322 lines (265 loc) · 9.28 KB
/
ciJobs.ts
File metadata and controls
322 lines (265 loc) · 9.28 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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
import { admin, db } from '../service/firebase';
import { EditorVersionInfo } from './editorVersionInfo';
import FieldValue = admin.firestore.FieldValue;
import Timestamp = admin.firestore.Timestamp;
import { RepoVersionInfo } from './repoVersionInfo';
import DocumentSnapshot = admin.firestore.DocumentSnapshot;
import { chunk } from 'lodash';
import { settings } from '../config/settings';
import { Image, ImageType } from './image';
import { logger } from 'firebase-functions/v2';
export type JobStatus =
| 'created'
| 'scheduled'
| 'inProgress'
| 'completed'
| 'failed'
| 'superseded'
| 'deprecated';
interface MetaData {
lastBuildStart: Timestamp | null;
failureCount: number;
lastBuildFailure: Timestamp | null;
}
export interface CiJob {
status: JobStatus;
meta: MetaData;
imageType: ImageType;
repoVersionInfo: RepoVersionInfo;
editorVersionInfo: EditorVersionInfo | null;
addedDate: Timestamp;
modifiedDate: Timestamp;
}
export type CiJobQueueItem = { id: string; data: CiJob };
export type CiJobQueue = CiJobQueueItem[];
/**
* A CI job is a high level job, that schedules builds on a [repoVersion-unityVersion] level
*/
export class CiJobs {
public static get collection() {
return 'ciJobs';
}
static get = async (jobId: string): Promise<CiJob | null> => {
const ref = await db.collection(CiJobs.collection).doc(jobId);
const snapshot = await ref.get();
if (!snapshot.exists) {
return null;
}
return snapshot.data() as CiJob;
};
static exists = async (jobId: string): Promise<boolean> => {
return (await CiJobs.get(jobId)) !== null;
};
static getAll = async (): Promise<CiJob[]> => {
const snapshot = await db.collection(CiJobs.collection).get();
return snapshot.docs.map((doc) => doc.data()) as CiJob[];
};
static getAllIds = async (): Promise<string[]> => {
const snapshot = await db.collection(CiJobs.collection).get();
return snapshot.docs.map(({ id }) => id);
};
static getPrioritisedQueue = async (): Promise<CiJobQueue> => {
// Note: we can't simply do select distinct major, max(minor), max(patch) in nosql
const snapshot = await db
.collection(CiJobs.collection)
.orderBy('editorVersionInfo.major', 'desc')
.orderBy('editorVersionInfo.minor', 'desc')
.orderBy('editorVersionInfo.patch', 'desc')
.where('status', '==', 'created')
.limit(settings.maxConcurrentJobs)
.get();
logger.debug(`BuildQueue size: ${snapshot.docs.length}`);
const queue: CiJobQueue = [];
snapshot.docs.forEach((doc) => {
queue.push({ id: doc.id, data: doc.data() as CiJob });
});
logger.debug(`BuildQueue`, queue);
return queue;
};
static getFailingJobsQueue = async (): Promise<CiJobQueue> => {
const snapshot = await db
.collection(CiJobs.collection)
.orderBy('editorVersionInfo.major', 'desc')
.orderBy('editorVersionInfo.minor', 'desc')
.orderBy('editorVersionInfo.patch', 'desc')
.where('status', '==', 'failed')
.limit(settings.maxConcurrentJobs)
.get();
logger.debug(`FailingQueue size: ${snapshot.docs.length}`);
const queue: CiJobQueue = [];
snapshot.docs.forEach((doc) => {
queue.push({ id: doc.id, data: doc.data() as CiJob });
});
logger.debug(`FailingQueue`, queue);
return queue;
};
static getNumberOfScheduledJobs = async (): Promise<number> => {
const snapshot = await db
.collection(CiJobs.collection)
.where('status', 'in', ['scheduled', 'inProgress'])
.limit(settings.maxConcurrentJobs)
.get();
return snapshot.docs.length;
};
static create = async (
jobId: string,
imageType: ImageType,
repoVersionInfo: RepoVersionInfo,
editorVersionInfo: EditorVersionInfo | null = null,
) => {
const job = CiJobs.construct(imageType, repoVersionInfo, editorVersionInfo);
const result = await db.collection(CiJobs.collection).doc(jobId).create(job);
logger.debug('Job created', result);
};
static construct = (
imageType: ImageType,
repoVersionInfo: RepoVersionInfo,
editorVersionInfo: EditorVersionInfo | null = null,
): CiJob => {
let status: JobStatus = 'deprecated';
if (
editorVersionInfo === null ||
editorVersionInfo.major >= 2019 ||
(editorVersionInfo.major === 2018 && editorVersionInfo.minor >= 2)
) {
status = 'created';
}
const job: CiJob = {
status,
imageType,
repoVersionInfo,
editorVersionInfo,
meta: {
lastBuildStart: null,
failureCount: 0,
lastBuildFailure: null,
},
addedDate: Timestamp.now(),
modifiedDate: Timestamp.now(),
};
return job;
};
static markJobAsScheduled = async (jobId: string) => {
const ref = await db.collection(CiJobs.collection).doc(jobId);
const snapshot = await ref.get();
if (!snapshot.exists) {
throw new Error(`Trying to mark job '${jobId}' as scheduled. But it does not exist.`);
}
const currentBuild = snapshot.data() as CiJob;
// Do not override failure or completed
// In CiJobs, "failure" is used to not race past failed jobs in the buildQueue, whereas
// in CiBuilds the status may be marked as "inProgress" when retrying.
let { status } = currentBuild;
if (['created'].includes(status)) {
status = 'scheduled';
}
await ref.update({
status,
modifiedDate: Timestamp.now(),
});
};
static markJobAsInProgress = async (jobId: string) => {
const ref = await db.collection(CiJobs.collection).doc(jobId);
const snapshot = await ref.get();
if (!snapshot.exists) {
throw new Error(`Trying to mark job '${jobId}' as in progress. But it does not exist.`);
}
const currentBuild = snapshot.data() as CiJob;
logger.warn(currentBuild);
// Do not override failure or completed
let { status } = currentBuild;
if (['created', 'scheduled'].includes(status)) {
status = 'inProgress';
}
await ref.update({
status,
'meta.lastBuildStart': Timestamp.now(),
modifiedDate: Timestamp.now(),
});
};
static markFailureForJob = async (jobId: string) => {
const job = await db.collection(CiJobs.collection).doc(jobId);
await job.update({
status: 'failed',
'meta.failureCount': FieldValue.increment(1),
'meta.lastBuildFailure': Timestamp.now(),
modifiedDate: Timestamp.now(),
});
};
static hasExceededRetryLimit = (job: CiJob, maxRetries: number): boolean => {
return job.meta.failureCount >= maxRetries;
};
static markJobAsCompleted = async (jobId: string) => {
const job = await db.collection(CiJobs.collection).doc(jobId);
await job.update({
status: 'completed',
modifiedDate: Timestamp.now(),
});
};
static async removeDryRunJob(jobId: string) {
if (!jobId.startsWith('dryRun')) {
throw new Error('Expect only dryRun jobs to be deleted.');
}
await db.collection(CiJobs.collection).doc(jobId).delete();
}
static markJobsBeforeRepoVersionAsSuperseded = async (repoVersion: string): Promise<number> => {
logger.info('superseding jobs before repo version', repoVersion);
let numSuperseded = 0;
for (const state of ['created', 'failed']) {
// Note: Cannot have inequality filters on multiple properties (hence the forOf)
const snapshot = await db
.collection(CiJobs.collection)
.where('repoVersionInfo.version', '<', repoVersion)
.where('status', '==', state)
.get();
numSuperseded += snapshot.docs.length;
logger.debug(`superseding ${CiJobs.pluralise(numSuperseded)} with ${state} status`);
// Batches can only have 20 document access calls per transaction
// See: https://firebase.google.com/docs/firestore/manage-data/transactions
// Note: Set counts as 2 access calls
const status: JobStatus = 'superseded';
const docsChunks: DocumentSnapshot[][] = chunk(snapshot.docs, 10);
for (const docsChunk of docsChunks) {
const batch = db.batch();
for (const doc of docsChunk) {
batch.set(doc.ref, { status }, { merge: true });
}
await batch.commit();
logger.debug('committed batch of superseded jobs');
}
}
return numSuperseded;
};
static generateJobId(
imageType: ImageType,
repoVersionInfo: RepoVersionInfo,
editorVersionInfo: EditorVersionInfo | null = null,
) {
const { version: repoVersion } = repoVersionInfo;
if (imageType !== Image.types.editor) {
return CiJobs.parseJobId(imageType, repoVersion);
}
if (editorVersionInfo === null) {
throw new Error('editorVersionInfo must be provided for editor build jobs.');
}
const { version: editorVersion } = editorVersionInfo;
return CiJobs.parseJobId(imageType, repoVersion, editorVersion);
}
static parseJobId(
imageType: ImageType,
repoVersion: string,
editorVersion: string | null = null,
) {
if (imageType !== Image.types.editor) {
return `${imageType}-${repoVersion}`;
}
if (editorVersion === null) {
throw new Error('editorVersion must be provided for editor build jobs.');
}
return `${imageType}-${editorVersion}-${repoVersion}`;
}
static pluralise(number: number) {
const word = number === 1 ? 'CI Job' : 'CI Jobs';
return `${number} ${word}`;
}
}