forked from chilts/mongodb-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongodb-queue.ts
260 lines (226 loc) · 6.41 KB
/
mongodb-queue.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
/**
*
* mongodb-queue.js - Use your existing MongoDB as a local queue.
*
* Copyright (c) 2014 Andrew Chilton
* - http://chilts.org/
* - andychilton@gmail.com
*
* License: http://chilts.mit-license.org/2014/
*
**/
import {randomBytes} from 'crypto';
import {Collection, Db, Filter, FindOneAndUpdateOptions, Sort, UpdateFilter, WithId} from 'mongodb';
function id(): string {
return randomBytes(16).toString('hex');
}
function now(): string {
return (new Date()).toISOString();
}
function nowPlusSecs(secs: number): string {
return (new Date(Date.now() + secs * 1000)).toISOString();
}
export type QueueOptions = {
visibility?: number;
delay?: number;
deadQueue?: MongoDBQueue;
maxRetries?: number;
};
export type AddOptions = {
delay?: number;
};
export type GetOptions = {
visibility?: number;
};
export type PingOptions = {
visibility?: number;
resetTries?: boolean;
};
export type BaseMessage<T = any> = {
payload: T;
visible: string;
};
export type Message<T = any> = BaseMessage<T> & {
ack: string;
tries: number;
deleted?: string;
};
export type ExternalMessage<T = any> = {
id: string;
ack: string;
payload: T;
tries: number;
};
export class MongoDBQueue<T = any> {
private readonly col: Collection<Partial<Message<T>>>;
private readonly visibility: number;
private readonly delay: number;
private readonly maxRetries: number;
private readonly deadQueue: MongoDBQueue;
public constructor(db: Db, name: string, opts: QueueOptions = {}) {
if (!db) {
throw new Error('mongodb-queue: provide a mongodb.MongoClient.db');
}
if (!name) {
throw new Error('mongodb-queue: provide a queue name');
}
this.col = db.collection(name);
this.visibility = opts.visibility || 30;
this.delay = opts.delay || 0;
if (opts.deadQueue) {
this.deadQueue = opts.deadQueue;
this.maxRetries = opts.maxRetries || 5;
}
}
public async createIndexes(): Promise<void> {
await Promise.all([
this.col.createIndex({deleted: 1, visible: 1}),
this.col.createIndex({ack: 1}, {unique: true, sparse: true}),
this.col.createIndex({deleted: 1}, {sparse: true}),
]);
}
public async add(payload: T | T[], opts: AddOptions = {}): Promise<string> {
const delay = opts.delay || this.delay;
const visible = delay ? nowPlusSecs(delay) : now();
const msgs: BaseMessage<T>[] = [];
if (payload instanceof Array) {
if (payload.length === 0) {
throw new Error('Queue.add(): Array payload length must be greater than 0');
}
payload.forEach(function(payload) {
msgs.push({
visible: visible,
payload: payload,
});
});
} else {
msgs.push({
visible: visible,
payload: payload,
});
}
const results = await this.col.insertMany(msgs, {ignoreUndefined: true});
if (payload instanceof Array) return '' + results.insertedIds;
return '' + results.insertedIds[0];
}
public async get(opts: GetOptions = {}): Promise<ExternalMessage<T> | null> {
const visibility = opts.visibility || this.visibility;
const query: Filter<Partial<Message<T>>> = {
deleted: {$exists: false},
visible: {$lte: now()},
};
const sort: Sort = {
visible: 1,
};
const update: UpdateFilter<Message<T>> = {
$inc: {tries: 1},
$set: {
ack: id(),
visible: nowPlusSecs(visibility),
},
};
const options = {
sort: sort,
returnDocument: 'after',
includeResultMetadata: true,
} satisfies FindOneAndUpdateOptions;
const result = await this.col.findOneAndUpdate(query, update, options);
const msg = result.value as WithId<Message<T>>;
if (!msg) return null;
// convert to an external representation
const externalMessage: ExternalMessage<T> = {
// convert '_id' to an 'id' string
id: '' + msg._id,
ack: msg.ack,
payload: msg.payload,
tries: msg.tries,
};
// check the tries
if (this.deadQueue && msg.tries > this.maxRetries) {
// So:
// 1) add this message to the deadQueue
// 2) ack this message from the regular queue
// 3) call ourself to return a new message (if exists)
await this.deadQueue.add(externalMessage);
await this.ack(msg.ack);
return this.get();
}
return externalMessage;
}
public async ping(ack: string, opts: PingOptions = {}): Promise<string> {
const visibility = opts.visibility || this.visibility;
const query: Filter<Partial<Message<T>>> = {
ack: ack,
visible: {$gt: now()},
deleted: {$exists: false},
};
const update: UpdateFilter<Message<T>> = {
$set: {
visible: nowPlusSecs(visibility),
},
};
const options = {
returnDocument: 'after',
includeResultMetadata: true,
} satisfies FindOneAndUpdateOptions;
if (opts.resetTries) {
update.$set = {
...update.$set,
tries: 0,
};
}
const msg = await this.col.findOneAndUpdate(query, update, options);
if (!msg.value) {
throw new Error('Queue.ping(): Unidentified ack : ' + ack);
}
return '' + msg.value._id;
}
public async ack(ack: string): Promise<string> {
const query: Filter<Partial<Message<T>>> = {
ack: ack,
visible: {$gt: now()},
deleted: {$exists: false},
};
const update: UpdateFilter<Message<T>> = {
$set: {
deleted: now(),
},
};
const options = {
returnDocument: 'after',
includeResultMetadata: true,
} satisfies FindOneAndUpdateOptions;
const msg = await this.col.findOneAndUpdate(query, update, options);
if (!msg.value) {
throw new Error('Queue.ack(): Unidentified ack : ' + ack);
}
return '' + msg.value._id;
}
public async clean(): Promise<void> {
const query = {
deleted: {$exists: true},
};
await this.col.deleteMany(query);
}
public async total(): Promise<number> {
return this.col.countDocuments();
}
public async size(): Promise<number> {
return this.col.countDocuments({
deleted: {$exists: false},
visible: {$lte: now()},
});
}
public async inFlight(): Promise<number> {
return this.col.countDocuments({
ack: {$exists: true},
visible: {$gt: now()},
deleted: {$exists: false},
});
}
public async done(): Promise<number> {
return this.col.countDocuments({
deleted: {$exists: true},
});
}
}