perf: fine tune continuous task stealing algorithm
[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 180 private async startOnEmptyQueue (): Promise<void> {
1f0766e7
JB
181 if (
182 this.onEmptyQueueCount > 0 &&
183 this.usage.tasks.executing > 0 &&
184 this.tasksQueue.size > 0
185 ) {
60b7a7cc
JB
186 this.onEmptyQueueCount = 0
187 return
188 }
189 (this.onEmptyQueue as (workerId: number) => void)(this.info.id as number)
190 ++this.onEmptyQueueCount
191 await sleep(exponentialDelay(this.onEmptyQueueCount))
192 await this.startOnEmptyQueue()
68cbdc84
JB
193 }
194
4b628b48
JB
195 private initWorkerInfo (worker: Worker, workerType: WorkerType): WorkerInfo {
196 return {
197 id: this.getWorkerId(worker, workerType),
198 type: workerType,
199 dynamic: false,
7884d183 200 ready: false
4b628b48
JB
201 }
202 }
203
204 private initWorkerUsage (): WorkerUsage {
205 const getTasksQueueSize = (): number => {
dd951876 206 return this.tasksQueue.size
4b628b48 207 }
bf4ef2ca 208 const getTasksQueueMaxSize = (): number => {
dd951876 209 return this.tasksQueue.maxSize
4b628b48
JB
210 }
211 return {
212 tasks: {
213 executed: 0,
214 executing: 0,
215 get queued (): number {
216 return getTasksQueueSize()
217 },
218 get maxQueued (): number {
bf4ef2ca 219 return getTasksQueueMaxSize()
4b628b48 220 },
68cbdc84 221 stolen: 0,
4b628b48
JB
222 failed: 0
223 },
224 runTime: {
225 history: new CircularArray()
226 },
227 waitTime: {
228 history: new CircularArray()
229 },
230 elu: {
231 idle: {
232 history: new CircularArray()
233 },
234 active: {
235 history: new CircularArray()
236 }
237 }
238 }
239 }
240
db0e38ee 241 private initTaskFunctionWorkerUsage (name: string): WorkerUsage {
e5ece61d
JB
242 const getTaskFunctionQueueSize = (): number => {
243 let taskFunctionQueueSize = 0
b25a42cd 244 for (const task of this.tasksQueue) {
dd92a715 245 if (
e5ece61d
JB
246 (task.name === DEFAULT_TASK_NAME &&
247 name === (this.info.taskFunctions as string[])[1]) ||
248 (task.name !== DEFAULT_TASK_NAME && name === task.name)
dd92a715 249 ) {
e5ece61d 250 ++taskFunctionQueueSize
b25a42cd
JB
251 }
252 }
e5ece61d 253 return taskFunctionQueueSize
b25a42cd
JB
254 }
255 return {
256 tasks: {
257 executed: 0,
258 executing: 0,
259 get queued (): number {
e5ece61d 260 return getTaskFunctionQueueSize()
b25a42cd 261 },
68cbdc84 262 stolen: 0,
b25a42cd
JB
263 failed: 0
264 },
265 runTime: {
266 history: new CircularArray()
267 },
268 waitTime: {
269 history: new CircularArray()
270 },
271 elu: {
272 idle: {
273 history: new CircularArray()
274 },
275 active: {
276 history: new CircularArray()
277 }
278 }
279 }
280 }
281
4b628b48
JB
282 /**
283 * Gets the worker id.
284 *
285 * @param worker - The worker.
60664f48 286 * @param workerType - The worker type.
4b628b48
JB
287 * @returns The worker id.
288 */
289 private getWorkerId (
290 worker: Worker,
291 workerType: WorkerType
292 ): number | undefined {
293 if (workerType === WorkerTypes.thread) {
294 return worker.threadId
295 } else if (workerType === WorkerTypes.cluster) {
296 return worker.id
297 }
298 }
299}