feat: continuous task stealing
[poolifier.git] / src / pools / worker-node.ts
CommitLineData
85aeb3f3 1import { MessageChannel } from 'node:worker_threads'
4b628b48 2import { CircularArray } from '../circular-array'
5c4d16da 3import type { Task } from '../utility-types'
68cbdc84
JB
4import {
5 DEFAULT_TASK_NAME,
6 EMPTY_FUNCTION,
7 exponentialDelay,
8 sleep
9} from '../utils'
574b351d 10import { Deque } from '../deque'
4b628b48
JB
11import {
12 type IWorker,
13 type IWorkerNode,
4b628b48
JB
14 type WorkerInfo,
15 type WorkerType,
16 WorkerTypes,
17 type WorkerUsage
18} from './worker'
19
60664f48
JB
20/**
21 * Worker node.
22 *
23 * @typeParam Worker - Type of worker.
24 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
25 */
4b628b48
JB
26export class WorkerNode<Worker extends IWorker, Data = unknown>
27implements IWorkerNode<Worker, Data> {
671d5154 28 /** @inheritdoc */
4b628b48 29 public readonly worker: Worker
671d5154 30 /** @inheritdoc */
4b628b48 31 public readonly info: WorkerInfo
671d5154 32 /** @inheritdoc */
7884d183 33 public messageChannel?: MessageChannel
671d5154 34 /** @inheritdoc */
4b628b48 35 public usage: WorkerUsage
20c6f652
JB
36 /** @inheritdoc */
37 public tasksQueueBackPressureSize: number
72695f86
JB
38 /** @inheritdoc */
39 public onBackPressure?: (workerId: number) => void
dd951876
JB
40 /** @inheritdoc */
41 public onEmptyQueue?: (workerId: number) => void
db0e38ee 42 private readonly taskFunctionsUsage: Map<string, WorkerUsage>
574b351d 43 private readonly tasksQueue: Deque<Task<Data>>
68cbdc84 44 private onEmptyQueueCount: number
4b628b48 45
60664f48
JB
46 /**
47 * Constructs a new worker node.
48 *
49 * @param worker - The worker.
50 * @param workerType - The worker type.
20c6f652 51 * @param tasksQueueBackPressureSize - The tasks queue back pressure size.
60664f48 52 */
20c6f652
JB
53 constructor (
54 worker: Worker,
55 workerType: WorkerType,
56 tasksQueueBackPressureSize: number
57 ) {
8735b4e5 58 if (worker == null) {
e695d66f 59 throw new TypeError('Cannot construct a worker node without a worker')
8735b4e5
JB
60 }
61 if (workerType == null) {
e695d66f
JB
62 throw new TypeError(
63 'Cannot construct a worker node without a worker type'
64 )
8735b4e5 65 }
20c6f652 66 if (tasksQueueBackPressureSize == null) {
e695d66f 67 throw new TypeError(
20c6f652 68 'Cannot construct a worker node without a tasks queue back pressure size'
8735b4e5
JB
69 )
70 }
20c6f652 71 if (!Number.isSafeInteger(tasksQueueBackPressureSize)) {
e695d66f 72 throw new TypeError(
20c6f652 73 'Cannot construct a worker node with a tasks queue back pressure size that is not an integer'
8735b4e5
JB
74 )
75 }
4b628b48
JB
76 this.worker = worker
77 this.info = this.initWorkerInfo(worker, workerType)
7884d183
JB
78 if (workerType === WorkerTypes.thread) {
79 this.messageChannel = new MessageChannel()
80 }
4b628b48 81 this.usage = this.initWorkerUsage()
db0e38ee 82 this.taskFunctionsUsage = new Map<string, WorkerUsage>()
574b351d 83 this.tasksQueue = new Deque<Task<Data>>()
20c6f652 84 this.tasksQueueBackPressureSize = tasksQueueBackPressureSize
68cbdc84 85 this.onEmptyQueueCount = 0
4b628b48
JB
86 }
87
88 /** @inheritdoc */
89 public tasksQueueSize (): number {
90 return this.tasksQueue.size
91 }
92
4b628b48
JB
93 /** @inheritdoc */
94 public enqueueTask (task: Task<Data>): number {
72695f86
JB
95 const tasksQueueSize = this.tasksQueue.push(task)
96 if (this.onBackPressure != null && this.hasBackPressure()) {
0741fbeb 97 this.onBackPressure(this.info.id as number)
72695f86
JB
98 }
99 return tasksQueueSize
100 }
101
102 /** @inheritdoc */
103 public unshiftTask (task: Task<Data>): number {
104 const tasksQueueSize = this.tasksQueue.unshift(task)
105 if (this.onBackPressure != null && this.hasBackPressure()) {
0741fbeb 106 this.onBackPressure(this.info.id as number)
72695f86
JB
107 }
108 return tasksQueueSize
4b628b48
JB
109 }
110
111 /** @inheritdoc */
112 public dequeueTask (): Task<Data> | undefined {
dd951876
JB
113 const task = this.tasksQueue.shift()
114 if (this.onEmptyQueue != null && this.tasksQueue.size === 0) {
68cbdc84 115 this.startOnEmptyQueue().catch(EMPTY_FUNCTION)
dd951876
JB
116 }
117 return task
4b628b48
JB
118 }
119
72695f86
JB
120 /** @inheritdoc */
121 public popTask (): Task<Data> | undefined {
dd951876
JB
122 const task = this.tasksQueue.pop()
123 if (this.onEmptyQueue != null && this.tasksQueue.size === 0) {
68cbdc84 124 this.startOnEmptyQueue().catch(EMPTY_FUNCTION)
dd951876
JB
125 }
126 return task
72695f86
JB
127 }
128
4b628b48
JB
129 /** @inheritdoc */
130 public clearTasksQueue (): void {
131 this.tasksQueue.clear()
132 }
133
671d5154
JB
134 /** @inheritdoc */
135 public hasBackPressure (): boolean {
8735b4e5 136 return this.tasksQueue.size >= this.tasksQueueBackPressureSize
671d5154
JB
137 }
138
ff128cc9 139 /** @inheritdoc */
4b628b48
JB
140 public resetUsage (): void {
141 this.usage = this.initWorkerUsage()
db0e38ee 142 this.taskFunctionsUsage.clear()
ff128cc9
JB
143 }
144
3f09ed9f
JB
145 /** @inheritdoc */
146 public closeChannel (): void {
7884d183
JB
147 if (this.messageChannel != null) {
148 this.messageChannel?.port1.unref()
149 this.messageChannel?.port2.unref()
150 this.messageChannel?.port1.close()
151 this.messageChannel?.port2.close()
152 delete this.messageChannel
3f09ed9f
JB
153 }
154 }
155
ff128cc9 156 /** @inheritdoc */
db0e38ee 157 public getTaskFunctionWorkerUsage (name: string): WorkerUsage | undefined {
a5d15204 158 if (!Array.isArray(this.info.taskFunctions)) {
71b2b6d8 159 throw new Error(
db0e38ee 160 `Cannot get task function worker usage for task function name '${name}' when task function names list is not yet defined`
71b2b6d8
JB
161 )
162 }
b558f6b5 163 if (
71b2b6d8 164 Array.isArray(this.info.taskFunctions) &&
db0e38ee 165 this.info.taskFunctions.length < 3
b558f6b5 166 ) {
db0e38ee
JB
167 throw new Error(
168 `Cannot get task function worker usage for task function name '${name}' when task function names list has less than 3 elements`
169 )
170 }
171 if (name === DEFAULT_TASK_NAME) {
71b2b6d8 172 name = this.info.taskFunctions[1]
b558f6b5 173 }
db0e38ee
JB
174 if (!this.taskFunctionsUsage.has(name)) {
175 this.taskFunctionsUsage.set(name, this.initTaskFunctionWorkerUsage(name))
ff128cc9 176 }
db0e38ee 177 return this.taskFunctionsUsage.get(name)
4b628b48
JB
178 }
179
68cbdc84
JB
180 private async startOnEmptyQueue (): Promise<void> {
181 if (this.onEmptyQueue != null) {
182 if (this.tasksQueue.size > 0) {
183 this.onEmptyQueueCount = 0
184 return
185 }
186 this.onEmptyQueue(this.info.id as number)
187 ++this.onEmptyQueueCount
188 await sleep(exponentialDelay(this.onEmptyQueueCount))
189 await this.startOnEmptyQueue()
190 }
191 }
192
4b628b48
JB
193 private initWorkerInfo (worker: Worker, workerType: WorkerType): WorkerInfo {
194 return {
195 id: this.getWorkerId(worker, workerType),
196 type: workerType,
197 dynamic: false,
7884d183 198 ready: false
4b628b48
JB
199 }
200 }
201
202 private initWorkerUsage (): WorkerUsage {
203 const getTasksQueueSize = (): number => {
dd951876 204 return this.tasksQueue.size
4b628b48 205 }
bf4ef2ca 206 const getTasksQueueMaxSize = (): number => {
dd951876 207 return this.tasksQueue.maxSize
4b628b48
JB
208 }
209 return {
210 tasks: {
211 executed: 0,
212 executing: 0,
213 get queued (): number {
214 return getTasksQueueSize()
215 },
216 get maxQueued (): number {
bf4ef2ca 217 return getTasksQueueMaxSize()
4b628b48 218 },
68cbdc84 219 stolen: 0,
4b628b48
JB
220 failed: 0
221 },
222 runTime: {
223 history: new CircularArray()
224 },
225 waitTime: {
226 history: new CircularArray()
227 },
228 elu: {
229 idle: {
230 history: new CircularArray()
231 },
232 active: {
233 history: new CircularArray()
234 }
235 }
236 }
237 }
238
db0e38ee 239 private initTaskFunctionWorkerUsage (name: string): WorkerUsage {
e5ece61d
JB
240 const getTaskFunctionQueueSize = (): number => {
241 let taskFunctionQueueSize = 0
b25a42cd 242 for (const task of this.tasksQueue) {
dd92a715 243 if (
e5ece61d
JB
244 (task.name === DEFAULT_TASK_NAME &&
245 name === (this.info.taskFunctions as string[])[1]) ||
246 (task.name !== DEFAULT_TASK_NAME && name === task.name)
dd92a715 247 ) {
e5ece61d 248 ++taskFunctionQueueSize
b25a42cd
JB
249 }
250 }
e5ece61d 251 return taskFunctionQueueSize
b25a42cd
JB
252 }
253 return {
254 tasks: {
255 executed: 0,
256 executing: 0,
257 get queued (): number {
e5ece61d 258 return getTaskFunctionQueueSize()
b25a42cd 259 },
68cbdc84 260 stolen: 0,
b25a42cd
JB
261 failed: 0
262 },
263 runTime: {
264 history: new CircularArray()
265 },
266 waitTime: {
267 history: new CircularArray()
268 },
269 elu: {
270 idle: {
271 history: new CircularArray()
272 },
273 active: {
274 history: new CircularArray()
275 }
276 }
277 }
278 }
279
4b628b48
JB
280 /**
281 * Gets the worker id.
282 *
283 * @param worker - The worker.
60664f48 284 * @param workerType - The worker type.
4b628b48
JB
285 * @returns The worker id.
286 */
287 private getWorkerId (
288 worker: Worker,
289 workerType: WorkerType
290 ): number | undefined {
291 if (workerType === WorkerTypes.thread) {
292 return worker.threadId
293 } else if (workerType === WorkerTypes.cluster) {
294 return worker.id
295 }
296 }
297}