-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.ts
521 lines (485 loc) · 16.3 KB
/
index.ts
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
/// <reference types="./typing" />
import type {
ConnectParams,
ActiveParams,
WaitingParams,
CompletedParams,
FailedParams,
DelayedParams,
GetParams,
AddParams,
RmParams,
RetryParams,
RetryFailedParams,
PromoteParams,
FailParams,
CompleteParams,
CleanParams,
LogsParams,
LogParams,
YesParams
} from "./src/types";
import Vorpal from "@moleculer/vorpal";
import ms from "ms";
import {
showJobs,
getTimeAgoFilter,
jqLink,
msLink,
logArray,
getJob,
answer,
logGreen,
throwYellow,
logYellow,
splitJobsByFound,
wrapTryCatch,
LAST_SAVED_CONNECTION_NAME,
readLines,
getBootCommand
} from "./src/utils";
import { getQueue, connectToQueue, listenQueueEvents, unlistenQueueEvents } from "./src/queue";
import type { JobOptions } from "bull";
export const vorpal = new Vorpal();
vorpal.localStorage("bull-repl-default");
export const localStorage = (vorpal.localStorage as unknown) as WindowLocalStorage["localStorage"] & {
_localStorage: { _keys: string[] };
};
vorpal
.command("connect <queue>", "Connect to bull queue")
.option("--prefix <prefix>", "Prefix to use for all queue jobs")
.option("-h, --host <host>", "Redis host for connection")
.option("-p, --port <port>", "Redis port for connection")
.option("-d, --db <db>", "Redis db for connection")
.option("--password <password>", "Redis password for connection")
.option("-c, --cert <cert>", "Absolute path to pem certificate if TLS used")
.option("-u, --url <url>", "Redis sentinel format URL")
.option("-e, --exec <exec>", "Exec command")
.option("-f, --execFile <execFile>", "Exec commands from file")
.action(
wrapTryCatch(async (params: ConnectParams) => {
await connectToQueue(params, vorpal);
if (params.options.exec) {
process.nextTick(async () => {
await vorpal.exec(params.options.exec!);
await vorpal.exec('exit');
});
}
if (params.options.execFile) {
process.nextTick(async () => {
const lines = readLines(params.options.execFile!);
for await (const line of lines) {
await logGreen(line);
await vorpal.exec(line);
}
await vorpal.exec('exit');
});
}
})
);
vorpal.command("connect-list", "List of saved connections").action(
wrapTryCatch(async () => {
console.table(localStorage._localStorage._keys);
})
);
vorpal.command("connect-rm <name>", "Remove saved connection").action(
wrapTryCatch(async ({ name }: { name: string }) => {
if (name === LAST_SAVED_CONNECTION_NAME) {
return logYellow(`Can't use reserved name, please use another`);
}
const savedItem = localStorage.getItem(name);
if (savedItem) {
localStorage.removeItem(name);
logGreen(`Connection "${name}" removed`);
} else {
logYellow(`Connection "${name}" not found`);
}
})
);
vorpal.command("connect-save <name>", "Save current connection").action(
wrapTryCatch(async ({ name: nameForSave }: { name: string }) => {
if (nameForSave === LAST_SAVED_CONNECTION_NAME) {
return logYellow(`Can't use reserved name, please use another`);
}
await getQueue();
const options = JSON.parse(
localStorage.getItem(LAST_SAVED_CONNECTION_NAME) as string
) as ConnectParams;
localStorage.setItem(nameForSave, JSON.stringify(options));
logGreen(`Connection "${nameForSave}" saved`);
})
);
vorpal.command("connect-to <name>", "Connect to saved connection").action(
wrapTryCatch(async ({ name: connectToName }: { name: string }) => {
const savedItem = localStorage.getItem(connectToName);
if (!savedItem) {
return logYellow(`Connection "${connectToName}" not found`);
}
const options: ConnectParams = JSON.parse(savedItem);
await connectToQueue(options, vorpal);
})
);
vorpal.command("stats", "Count of jobs by type").action(
wrapTryCatch(async () => {
const queue = await getQueue();
const [counts, paused] = await Promise.all([
queue.getJobCounts(),
queue.getPausedCount()
]);
console.table({ ...counts, ...{ paused } });
})
);
vorpal
.command("active", "Fetch active jobs")
.option("-q, --query <query>", `Query jobs via jq - ${jqLink}. Notice, that bull data in root key e.g '[.root[] | select(.progress > 70)]'`)
.option("-t, --timeAgo <timeAgo>", `Get jobs since time ago via ${msLink}`)
.option("-s, --start <start>", "Start index (pagination)")
.option("-e, --end <end>", "End index (pagination)")
.action(
wrapTryCatch(async ({ options }: ActiveParams) => {
const queue = await getQueue();
const timeAgoFilter = await getTimeAgoFilter(options.timeAgo);
showJobs(await queue.getActive(
options.start || 0, options.end || 100),
[timeAgoFilter, options.query].filter(v => v).join(' | '));
})
);
vorpal
.command("waiting", "Fetch waiting jobs")
.option("-q, --query <query>", `Query jobs via jq - ${jqLink}. Notice, that bull data in root key e.g '[.root[] | select(.progress > 70)]'`)
.option("-t, --timeAgo <timeAgo>", `Get jobs since time ago via ${msLink}`)
.option("-s, --start <start>", "Start index (pagination)")
.option("-e, --end <end>", "End index (pagination)")
.action(
wrapTryCatch(async ({ options }: WaitingParams) => {
const queue = await getQueue();
const timeAgoFilter = await getTimeAgoFilter(options.timeAgo);
showJobs(await queue.getWaiting(
options.start || 0, options.end || 100),
[timeAgoFilter, options.query].filter(v => v).join(' | '));
})
);
vorpal
.command("completed", "Fetch completed jobs")
.option("-q, --query <query>", `Query jobs via jq - ${jqLink}. Notice, that bull data in root key e.g '[.root[] | select(.progress > 70)]'`)
.option("-t, --timeAgo <timeAgo>", `Get jobs since time ago via ${msLink}`)
.option("-s, --start <start>", "Start index (pagination)")
.option("-e, --end <end>", "End index (pagination)")
.action(
wrapTryCatch(async ({ options }: CompletedParams) => {
const queue = await getQueue();
const timeAgoFilter = await getTimeAgoFilter(options.timeAgo);
showJobs(
await queue.getCompleted(options.start || 0, options.end || 100),
[timeAgoFilter, options.query].filter(v => v).join(' | ')
);
})
);
vorpal
.command("failed", "Fetch failed jobs")
.option("-q, --query <query>", `Query jobs via jq - ${jqLink}. Notice, that bull data in root key e.g '[.root[] | select(.progress > 70)]'`)
.option("-t, --timeAgo <timeAgo>", `Get jobs since time ago via ${msLink}`)
.option("-s, --start <start>", "Start index (pagination)")
.option("-e, --end <end>", "End index (pagination)")
.action(
wrapTryCatch(async ({ options }: FailedParams) => {
const queue = await getQueue();
const timeAgoFilter = await getTimeAgoFilter(options.timeAgo);
showJobs(await queue.getFailed(options.start || 0, options.end || 100),
[timeAgoFilter, options.query].filter(v => v).join(' | '));
})
);
vorpal
.command("delayed", "Fetch delayed jobs")
.option("-q, --query <query>", `Query jobs via jq - ${jqLink}. Notice, that bull data in root key e.g '[.root[] | select(.progress > 70)]'`)
.option("-t, --timeAgo <timeAgo>", `get jobs since time ago via ${msLink}`)
.option("-s, --start <start>", "start index (pagination)")
.option("-e, --end <end>", "end index (pagination)")
.action(
wrapTryCatch(async ({ options }: DelayedParams) => {
const queue = await getQueue();
const timeAgoFilter = await getTimeAgoFilter(options.timeAgo);
showJobs(await queue.getDelayed(options.start || 0, options.end || 100),
[timeAgoFilter, options.query].filter(v => v).join(' | '));
})
);
vorpal
.command("pause", "Pause current queue")
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async ({ options }: YesParams) => {
const queue = await getQueue();
await answer(vorpal, "Pause queue", options.yes);
await queue.pause(false);
logGreen(`Queue paused`);
})
);
vorpal
.command("resume", "Resume current queue from pause")
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async ({ options }: YesParams) => {
const queue = await getQueue();
await answer(vorpal, "Resume queue", options.yes);
await queue.resume(false);
logGreen(`Queue resumed from pause`);
})
);
vorpal.command("get <jobId...>", "Get job").action(
wrapTryCatch(async ({ jobId }: GetParams) => {
const { notFoundIds, foundJobs } = await splitJobsByFound(jobId);
notFoundIds.length && logYellow(`Not found jobs: ${notFoundIds}`);
foundJobs.length && showJobs(foundJobs, '');
})
);
vorpal
.command("add <data>", "Add job to queue e.g. add '{\"x\": 1}'")
.option("-n, --name <name>", "name for named job")
.option("--jobId <jobId>", "Override the job ID - by default")
.option("--priority <priority>", "Optional priority value. ranges from 1 (highest priority) to MAX_INT (lowest priority)")
.option("--delay <delay>", "An amount of milliseconds to wait until this job can be processed")
.option("--attempts <attempts>", "The total number of attempts to try the job until it completes")
.option("--repeat <repeat>", "Repeat job according to a cron specificatio")
.option("--lifo <lifo>", "if true, adds the job to the right of the queue instead of the left (default false)")
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async function({ data, options }: AddParams) {
const queue = await getQueue();
const {
priority,
repeat,
jobId,
delay = 0,
attempts = 1,
lifo = false,
} = options;
let jobData: object;
let jobOptions: JobOptions = Object.fromEntries(
Object.entries({
jobId,
priority,
repeat,
delay,
attempts,
lifo,
})
.filter(([, value]) => value != null)
);
try {
jobData = JSON.parse(data);
} catch (e) {
return throwYellow(`Error: Argument <data> is invalid: ${e}`);
}
if (repeat && typeof repeat === 'string') {
try {
jobOptions.repeat = JSON.parse(repeat);
} catch (e) {
return throwYellow(`Error: Option --repeat is invalid: ${e}`);
}
}
await answer(vorpal, "Add", options.yes);
const jobName: string = options.name || "__default__";
const addedJob = await queue.add(jobName, jobData, jobOptions);
logGreen(`Job with name '${jobName}', id '${addedJob.id}' added`);
})
);
vorpal
.command("rm <jobId...>", "Remove job")
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async function({ jobId, options }: RmParams) {
await answer(vorpal, "Remove", options.yes);
const { notFoundIds, foundJobs } = await splitJobsByFound(jobId);
await Promise.all(foundJobs.map(j => j.remove()));
notFoundIds.length && logYellow(`Not found jobs: ${notFoundIds}`);
foundJobs.length && logGreen(`Jobs "${foundJobs.map(j => j.id)}" removed`);
})
);
vorpal
.command("retry <jobId...>", "Retry job")
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async function({ jobId, options }: RetryParams) {
await answer(vorpal, "Retry", options.yes);
const { notFoundIds, foundJobs } = await splitJobsByFound(jobId);
await Promise.all(foundJobs.map(j => j.retry()));
notFoundIds.length && logYellow(`Not found jobs: ${notFoundIds}`);
foundJobs.length && logGreen(`Jobs "${foundJobs.map(j => j.id)}" retried`);
})
);
vorpal
.command("retry-failed", "Retry first 100 failed jobs")
.option(
"-n, --number <number>",
"Number of failed jobs. default: 100"
)
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async function({ options }: RetryFailedParams) {
const queue = await getQueue();
await answer(vorpal, "Retry failed jobs", options.yes);
const failedJobs = await queue.getFailed(0, options.number || 100);
await Promise.all(failedJobs.map(j => j.retry()));
logGreen("All failed jobs retried");
})
);
vorpal
.command("promote <jobId...>", "Promote job")
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async function({ jobId, options }: PromoteParams) {
await answer(vorpal, "Promote", options.yes);
const { notFoundIds, foundJobs } = await splitJobsByFound(jobId);
await Promise.all(foundJobs.map(j => j.promote()));
notFoundIds.length && logYellow(`Not found jobs: ${notFoundIds}`);
foundJobs.length && logGreen(`Jobs "${foundJobs.map(j => j.id)}" promoted`);
})
);
vorpal
.command("fail <jobId> <reason>", "Move job to failed")
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async function({ jobId, reason, options }: FailParams) {
await getQueue();
const job = await getJob(jobId);
await answer(vorpal, "Fail", options.yes);
await job.moveToFailed({ message: reason }, true);
logGreen(`Job "${jobId}" failed`);
})
);
vorpal
.command("complete <jobId> <data>", "Move job to completed e.g. complete 1 '{\"x\": 1}'")
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async function({ jobId, data, options }: CompleteParams) {
await getQueue();
const job = await getJob(jobId);
let returnValue: string;
try {
returnValue = JSON.parse(data);
} catch (e) {
return throwYellow(`Error: Argument <data> is invalid: ${e}`);
}
await answer(vorpal, "Complete", options.yes);
await job.moveToCompleted(returnValue, true);
logGreen(`Job "${jobId}" completed`);
})
);
vorpal
.command(
"clean <period>",
`Clean queue for period ago, period format - ${msLink}`
)
.option(
"-s, --status <status>",
"Status of the job to clean, default: completed"
)
.option(
"-l, --limit <limit>",
"Maximum amount of jobs to clean per call, default: all"
)
.option(
"-y, --yes",
"Skip answer validation"
)
.action(
wrapTryCatch(async function({ period, options }: CleanParams) {
const types = ["completed", "wait", "active", "delayed", "failed"];
const queue = await getQueue();
const grace = period && period.length ? ms(period as string) : void 0;
if (!grace) {
return throwYellow("Incorrect period");
}
const status = options.status || "completed";
if (
!types.includes(status)
) {
return throwYellow(
`Unknown status, must be one of: ${types.join(", ")}`
);
}
await answer(vorpal, "Clean", options.yes);
const limit = Number.isInteger(options.limit as number)
? options.limit
: void 0;
await queue.clean(grace, status, limit);
logGreen(`Jobs cleaned`);
})
);
vorpal
.command("logs <jobId>", "Get logs of job")
.option("-s, --start <start>", "Start of logs")
.option("-e, --end <end>", "End of logs")
.action(
wrapTryCatch(async ({ jobId, options }: LogsParams) => {
const queue = await getQueue();
const { logs, count } = await queue.getJobLogs(
jobId,
options.start,
options.end
);
console.log(`Count of job logs: ${count}`);
if (logs.length) {
console.log("Logs:");
logArray(logs);
}
})
);
vorpal
.command("log <jobId> <data>", "Add log to job")
.action(
wrapTryCatch(async function({ jobId, data, options }: LogParams) {
await getQueue();
const job = await getJob(jobId);
await answer(vorpal, "Add log", options.yes);
await job.log(data);
logGreen("Log added to job");
})
);
vorpal.command("events-on", "Turn on logging of queue events").action(
wrapTryCatch(async function() {
const queue = await getQueue();
listenQueueEvents(queue);
logGreen(`Logging of queue events enabled`);
})
);
vorpal.command("events-off", "Turn off logging of queue events").action(
wrapTryCatch(async function() {
const queue = await getQueue();
unlistenQueueEvents(queue);
logGreen(`Logging of queue events disabled`);
})
);
vorpal.history("bull-repl-default");
vorpal.delimiter("BULL-REPL> ").show();
const command = getBootCommand();
if (command) {
vorpal.exec(command);
}