aboutsummaryrefslogtreecommitdiff
path: root/src/lib/workers-list.js
blob: 4fc5c53c65cce81d2f77257107e06ee3f05fc6cb (plain)
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
const {intersection, throttle, sample} = require('lodash')
const config = require('./config')
const {getLogger} = require('./logger')
const {RequestMessage, PingMessage} = require('./server')

const MANUAL_CALL_TYPE_RUN = 0
const MANUAL_CALL_TYPE_SIGNALS = 1

function validateManualCallType(type) {
    if (![
        MANUAL_CALL_TYPE_RUN,
        MANUAL_CALL_TYPE_SIGNALS
    ].includes(type)) {
        throw new Error('invalid manual call type')
    }
}

class WorkersList {

    constructor() {
        /**
         * @type {{connection: Connection, targets: string[]}[]}
         */
        this.workers = []

        /**
         * @type {object.<string, boolean>}
         */
        this.targetsToPoke = {}

        /**
         * @type {object.<string, boolean>}
         */
        this.targetsWaitingToPoke = {}

        /**
         * @type {NodeJS.Timeout}
         */
        this.pingInterval = setInterval(this.sendPings, config.get('ping_interval') * 1000)

        /**
         * @type {Logger}
         */
        this.logger = getLogger('WorkersList')
    }

    /**
     * @param {Connection} connection
     * @param {string[]} targets
     * @param {string} name
     */
    add(connection, {targets, name}) {
        this.logger.info(`add: connection from ${connection.remoteAddr()}, name ${name}, targets ${JSON.stringify(targets)}`)

        this.workers.push({connection, targets, name})
        connection.on('close', () => {
            this.logger.info(`connection from ${connection.remoteAddr()} closed, removing worker`)
            this.workers = this.workers.filter(worker => {
                return worker.connection !== connection
            })
        })

        let waiting = Object.keys(this.targetsWaitingToPoke)
        if (!waiting.length)
            return

        let intrs = intersection(waiting, targets)
        if (intrs.length) {
            this.logger.info('add: found intersection with waiting targets:', intrs, 'going to poke new worker')
            this._pokeWorkerConnection(connection, intrs)
            for (let target of intrs)
                delete this.targetsWaitingToPoke[target]
            this.logger.trace(`add: this.targetsWaitingToPoke:`, this.targetsWaitingToPoke)
        }
    }

    /**
     * @param {string[]} targets
     */
    poke(targets) {
        this.logger.debug('poke:', targets)

        for (let t of targets)
            this.targetsToPoke[t] = true

        this._pokeWorkers()
    }

    /**
     * @param targets
     * @return {object[]}
     */
    getWorkersByTargets(targets) {
        const found = []
        for (const worker of this.workers) {
            const intrs = intersection(worker.targets, targets)
            if (intrs.length > 0)
                found.push(worker)
        }
        return found
    }

    /**
     * @private
     */
    _pokeWorkers = throttle(() => {
        const targets = Object.keys(this.targetsToPoke)
        this.targetsToPoke = {}

        const found = {}
        for (const worker of this.workers) {
            const intrs = intersection(worker.targets, targets)
            intrs.forEach(t => {
                found[t] = true
            })
            if (intrs.length > 0)
                this._pokeWorkerConnection(worker.connection, intrs)
        }

        for (let target of targets) {
            if (!(target in found)) {
                this.logger.debug(`_pokeWorkers: worker responsible for ${target} not found. we'll remember it`)
                this.targetsWaitingToPoke[target] = true
            }
            this.logger.trace('_pokeWorkers: this.targetsWaitingToPoke:', this.targetsWaitingToPoke)
        }
    }, config.get('poke_throttle_interval') * 1000, {leading: true})

    /**
     * @param {Connection} connection
     * @param {string[]} targets
     * @private
     */
    _pokeWorkerConnection(connection, targets) {
        this.logger.debug('_pokeWorkerConnection:', connection.remoteAddr(), targets)

        connection.sendRequest(
            new RequestMessage('poll', {
                targets
            })
        )
        .catch(error => {
            this.logger.error('_pokeWorkerConnection:', error)
        })
    }

    /**
     * @return {{targets: string[], remoteAddr: string, remotePort: number}[]}
     */
    async getInfo(pollWorkers = false) {
        const promises = []

        const workers = [...this.workers]

        for (let i = 0; i < workers.length; i++) {
            let worker = workers[i]

            let P
            if (pollWorkers) {
                P = worker.connection.sendRequest(new RequestMessage('status'))
            } else {
                P = Promise.resolve()
            }

            promises.push(P)
        }

        const results = await Promise.allSettled(promises)

        let info = []
        for (let i = 0; i < results.length; i++) {
            const result = results[i]
            const worker = workers[i]
            const workerInfo = {
                remoteAddr: worker.connection.socket?.remoteAddress,
                remotePort: worker.connection.socket?.remotePort,
                targets: worker.targets,
                name: worker.name,
            }

            if (pollWorkers) {
                if (result.status === 'fulfilled') {
                    /**
                     * @type {ResponseMessage}
                     */
                    let response = result.value
                    workerInfo.workerStatus = response.data
                } else if (result.status === 'rejected') {
                    workerInfo.workerStatusError = result.reason?.message
                }
            }

            info.push(workerInfo)
        }

        return info
    }

    /**
     * Send run-manual() requests to workers, aggregate and return results.
     *
     * @param {{id: int, target: string}[]} jobs
     * @return {Promise<{jobs: {}, errors: {}}>}
     */
    async _runManualCall(callType, jobs) {
        validateManualCallType(callType)
        this.logger.debug(`runManualCall[${callType}]:`, jobs)

        const workers = [...this.workers]

        /**
         * @type {object.<string, int[]>}
         */
        const targetWorkers = {}

        for (let workerIndex = 0; workerIndex < workers.length; workerIndex++) {
            const worker = workers[workerIndex]

            for (let target of worker.targets) {
                if (targetWorkers[target] === undefined)
                    targetWorkers[target] = []

                targetWorkers[target].push(workerIndex)
            }
        }

        this.logger.trace(`runManualCall[${callType}]: targetWorkers:`, targetWorkers)

        /**
         * List of job IDs with unsupported targets.
         *
         * @type {int[]}
         */
        const exceptions = []
        const callMap = {}

        /**
         * @type {object.<int, string>}
         */
        const jobToTargetMap = {}

        for (const job of jobs) {
            const {id, target} = job

            jobToTargetMap[id] = target

            // if worker serving this target not found, skip the job
            if (targetWorkers[target] === undefined) {
                exceptions.push(id)
                continue
            }

            // get random worker index
            let workerIndex = sample(targetWorkers[target])
            if (callMap[workerIndex] === undefined)
                callMap[workerIndex] = []

            callMap[workerIndex].push(job)
        }

        this.logger.trace(`runManualCall[${callType}]: callMap:`, callMap)
        this.logger.trace(`runManualCall[${callType}]: exceptions:`, exceptions)

        /**
         * @type {Promise[]}
         */
        const promises = []

        /**
         * @type {int[][]}
         */
        const jobsByPromise = []

        for (const workerIndex in callMap) {
            if (!callMap.hasOwnProperty(workerIndex))
                continue

            let workerJobsData = callMap[workerIndex]
            let worker = workers[workerIndex]
            let conn = worker.connection

            let P
            switch (callType) {
                case MANUAL_CALL_TYPE_RUN:
                    P = conn.sendRequest(
                        new RequestMessage('run-manual', {ids: workerJobsData.map(j => j.id)})
                    )
                    break

                case MANUAL_CALL_TYPE_SIGNALS:
                    const data = {}
                    for (let jobData of workerJobsData)
                        data[jobData.id] = jobData.signal

                    P = conn.sendRequest(
                        new RequestMessage('send-signal', {jobs: data})
                    )
                    break
            }

            promises.push(P)
            jobsByPromise.push(workerJobsData.map(j => j.id))
        }

        this.logger.trace(`runManualCall[${callType}]: jobsByPromise:`, jobsByPromise)

        const results = await Promise.allSettled(promises)

        this.logger.trace(`runManualCall[${callType}]: Promise.allSettled results:`, results)

        const response = {}
        const setError = (id, value) => {
            if (!('errors' in response))
                response.errors = {}

            if (typeof id === 'object') {
                Object.assign(response.errors, id)
            } else {
                response.errors[id] = value
            }
        }
        const setData = (id, value) => {
            if (!('jobs' in response))
                response.jobs = {}

            if (typeof id === 'object') {
                Object.assign(response.jobs, id)
            } else {
                response.jobs[id] = value
            }
        }

        for (let i = 0; i < results.length; i++) {
            let result = results[i]
            if (result.status === 'fulfilled') {
                /**
                 * @type {ResponseMessage}
                 */
                const responseMessage = result.value

                switch (callType) {
                    case MANUAL_CALL_TYPE_RUN:
                        const {jobs, errors} = responseMessage.data
                        this.logger.trace(`[${i}]:`, jobs, errors)

                        if (jobs)
                            setData(jobs)

                        if (errors)
                            setError(errors)

                        break

                    case MANUAL_CALL_TYPE_SIGNALS:
                        Object.assign(response, responseMessage.data)
                        break
                }


            } else if (result.status === 'rejected') {
                for (let jobIds of jobsByPromise[i]) {
                    for (let jobId of jobIds)
                        setError(jobId, result.reason?.message)
                }
            }
        }

        // don't forget about skipped jobs
        if (exceptions.length) {
            for (let id of exceptions)
                setError(id, `worker serving target '${jobToTargetMap[id]}' not found`)
        }

        return response
    }

    async runManual(jobs) {
        return await this._runManualCall(MANUAL_CALL_TYPE_RUN, jobs)
    }

    async sendSignals(jobs) {
        return await this._runManualCall(MANUAL_CALL_TYPE_SIGNALS, jobs)
    }

    /**
     * @param {null|string[]} targets
     */
    pauseTargets(targets) {
        return this._pauseContinueWorkers('pause', targets)
    }

    /**
     * @param {null|string[]} targets
     */
    continueTargets(targets) {
        return this._pauseContinueWorkers('continue', targets)
    }

    /**
     * @param {string} action
     * @param {null|string[]} targets
     * @private
     */
    _pauseContinueWorkers(action, targets) {
        (targets === null ? this.workers : this.getWorkersByTargets(targets))
            .forEach(worker => {
                this.logger.debug(`${action}Targets: sending ${action} request to ${worker.connection.remoteAddr()}`)

                let data = {}
                if (targets !== null)
                    data.targets = intersection(worker.targets, targets)

                worker.connection.sendRequest(
                    new RequestMessage(action, data)
                ).catch(this.onWorkerRequestError.bind(this, `${action}Targets`))
            })
    }

    /**
     * @private
     */
    sendPings = () => {
        this.workers
            .forEach(w => {
                this.logger.trace(`sending ping to ${w.connection.remoteAddr()}`)
                w.connection.send(new PingMessage())
            })
    }

    onWorkerRequestError = (from, error) => {
        this.logger.error(`${from}:`, error)
    }

}

module.exports = WorkersList