forked from felixmosh/bull-board
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.ts
More file actions
185 lines (158 loc) · 5.18 KB
/
example.ts
File metadata and controls
185 lines (158 loc) · 5.18 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
// oxlint-disable no-console
import { createBullBoard } from '@bull-board/api';
import { BullAdapter } from '@bull-board/api/bullAdapter';
import { BullMQAdapter } from '@bull-board/api/bullMQAdapter';
import { ExpressAdapter } from '@bull-board/express';
import * as Bull from 'bull';
import Queue3 from 'bull';
import { FlowProducer, Queue as QueueMQ, Worker } from 'bullmq';
import express from 'express';
const redisOptions = {
port: 6379,
host: 'localhost',
password: '',
};
const sleep = (t: number) => new Promise((resolve) => setTimeout(resolve, t * 1000));
const createQueue3 = (name: string) => new Queue3(name, { redis: redisOptions });
const createQueueMQ = (name: string) => new QueueMQ(name, { connection: redisOptions });
function setupBullProcessor(bullQueue: Bull.Queue) {
bullQueue.process(async (job) => {
for (let i = 0; i <= 100; i++) {
await sleep(Math.random());
await job.progress(i);
await job.log(`Processing job at interval ${i}`);
if (Math.random() * 200 < 1) throw new Error(`Random error ${i}`);
}
return { jobId: `This is the return value of job (${job.id})` };
});
}
function setupBullMQProcessor(queueName: string) {
new Worker(
queueName,
async (job) => {
for (let i = 0; i <= 100; i++) {
await sleep(Math.random());
await job.updateProgress(i);
await job.log(`Processing job at interval ${i}`);
if (Math.random() * 200 < 1) throw new Error(`Random error ${i}`);
}
return { jobId: `This is the return value of job (${job.id})` };
},
{ connection: redisOptions }
);
}
const run = async () => {
const app = express();
const exampleBull = createQueue3('ExampleBull');
const exampleBullMq = createQueueMQ('Examples.BullMQ');
const newRegistration = createQueueMQ('Notifications.User.NewRegistration');
const resetPassword = createQueueMQ('Notifications;User;ResetPassword');
const flow = new FlowProducer({ connection: redisOptions });
setupBullProcessor(exampleBull); // needed only for example proposes
setupBullMQProcessor(exampleBullMq.name); // needed only for example proposes
app.use('/add', (req, res) => {
const opts = req.query.opts || ({} as any);
if (opts.delay) {
opts.delay = +opts.delay * 1000; // delay must be a number
}
if (opts.priority) {
opts.priority = +opts.priority;
}
exampleBull.add({ title: req.query.title }, opts);
exampleBullMq.add('Add', { title: req.query.title }, opts);
res.json({
ok: true,
});
});
app.use('/add-scheduled-job', async (req, res) => {
const opts = req.query.opts || ({} as any);
await exampleBullMq.upsertJobScheduler(
'my-scheduler-id',
{
every: +(opts.every || 1) * 1000,
limit: +opts.limit || 4,
},
{ name: req.query.title as string, opts }
);
res.json({
ok: true,
});
});
app.use('/add-flow', (req, res) => {
const opts = req.query.opts || ({} as any);
if (opts.delay) {
opts.delay = +opts.delay * 1000; // delay must be a number
}
if (opts.priority) {
opts.priority = +opts.priority;
}
flow.add({
name: 'root-job',
queueName: 'ExampleBullMQ',
data: {},
opts,
children: [
{
name: 'job-child1',
data: { idx: 0, foo: 'bar' },
queueName: 'ExampleBullMQ',
opts,
children: [
{
name: 'job-grandchildren1',
data: { idx: 4, foo: 'baz' },
queueName: 'ExampleBullMQ',
opts,
children: [
{
name: 'job-child2',
data: { idx: 2, foo: 'foo' },
queueName: 'ExampleBullMQ',
opts,
children: [
{
name: 'job-child3',
data: { idx: 3, foo: 'bis' },
queueName: 'ExampleBullMQ',
opts,
},
],
},
],
},
],
},
],
});
res.json({
ok: true,
});
});
const serverAdapter: any = new ExpressAdapter();
serverAdapter.setBasePath('/ui');
createBullBoard({
queues: [
new BullMQAdapter(exampleBullMq, { delimiter: '.' }),
new BullAdapter(exampleBull, {
externalJobUrl: (job) => ({ href: `https://my-app.com/${job.id}` }),
}),
new BullMQAdapter(newRegistration, { delimiter: '.' }),
new BullMQAdapter(resetPassword, {
delimiter: ';',
displayName: 'Reset Password',
}),
],
serverAdapter,
});
app.use('/ui', serverAdapter.getRouter());
app.listen(3000, () => {
console.log('Running on 3000...');
console.log('For the UI, open http://localhost:3000/ui');
console.log('Make sure Redis is running on port 6379 by default');
console.log('To populate the queue, run:');
console.log(' curl http://localhost:3000/add?title=Example');
console.log('To populate the queue with custom options (opts), run:');
console.log(' curl http://localhost:3000/add?title=Test&opts[delay]=10');
});
};
run().catch((e) => console.error(e));