| 1 | # Changelog |
| 2 | |
| 3 | All notable changes to this project will be documented in this file. |
| 4 | |
| 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), |
| 6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | |
| 8 | ## [Unreleased] |
| 9 | |
| 10 | ## [2.6.42] - 2023-09-06 |
| 11 | |
| 12 | ### Changed |
| 13 | |
| 14 | - Optimize hot code paths implementation: avoid unnecessary branching, add and use optimized helpers (min, max), use reduce() array helper, ... |
| 15 | |
| 16 | ## [2.6.41] - 2023-09-03 |
| 17 | |
| 18 | ### Changed |
| 19 | |
| 20 | - Optimize worker choice strategies implementation. |
| 21 | |
| 22 | ## [2.6.40] - 2023-09-01 |
| 23 | |
| 24 | ### Fixed |
| 25 | |
| 26 | - Do not pre-choose in WRR worker choice strategy to avoid bias. |
| 27 | - Avoid array out of bound in worker choice strategies after worker node removal. |
| 28 | |
| 29 | ## [2.6.39] - 2023-08-30 |
| 30 | |
| 31 | ### Fixed |
| 32 | |
| 33 | - Fix race condition in worker choice strategies at worker node info querying while not yet initialized . |
| 34 | |
| 35 | ## [2.6.38] - 2023-08-30 |
| 36 | |
| 37 | ### Added |
| 38 | |
| 39 | - Bundle typescript types declaration into one file. |
| 40 | |
| 41 | ### Changed |
| 42 | |
| 43 | - Improve interleaved weighted round robin worker choice strategy implementation. |
| 44 | |
| 45 | ## [2.6.37] - 2023-08-28 |
| 46 | |
| 47 | ### Fixed |
| 48 | |
| 49 | - Ensure unused worker usage statistics are deleted at runtime. |
| 50 | |
| 51 | ### Changed |
| 52 | |
| 53 | - Rename worker choice strategy options `choiceRetries` to `retries`. |
| 54 | - Avoid unnecessary branching in worker choice strategies. |
| 55 | |
| 56 | ## [2.6.36] - 2023-08-27 |
| 57 | |
| 58 | ### Fixed |
| 59 | |
| 60 | - Fix pool `execute()` arguments check. |
| 61 | |
| 62 | ### Changed |
| 63 | |
| 64 | - Make continuous tasks stealing algorithm less aggressive. |
| 65 | - Fine tune tasks stealing algorithm under back pressure. |
| 66 | |
| 67 | ## [2.6.35] - 2023-08-25 |
| 68 | |
| 69 | ### Fixed |
| 70 | |
| 71 | - Don't account worker usage statistics for tasks that have failed. |
| 72 | - Fix pool information runtime and wait time median computation. |
| 73 | |
| 74 | ### Changed |
| 75 | |
| 76 | - Update simple moving average implementation to use a circular buffer. |
| 77 | - Update simple moving median implementation to use a circular buffer. |
| 78 | - Account for stolen tasks in worker usage statistics and pool information. |
| 79 | |
| 80 | ### Added |
| 81 | |
| 82 | - Continuous tasks stealing algorithm. |
| 83 | |
| 84 | ## [2.6.34] - 2023-08-24 |
| 85 | |
| 86 | ### Fixes |
| 87 | |
| 88 | - Avoid cascading tasks stealing under back pressure. |
| 89 | |
| 90 | ### Changed |
| 91 | |
| 92 | - Add fastpath to queued tasks rescheduling. |
| 93 | |
| 94 | ## [2.6.33] - 2023-08-24 |
| 95 | |
| 96 | ### Fixed |
| 97 | |
| 98 | - Fix queued tasks rescheduling. |
| 99 | |
| 100 | ### Changed |
| 101 | |
| 102 | - Rename tasks queue options `queueMaxSize` to `size`. |
| 103 | |
| 104 | ### Added |
| 105 | |
| 106 | - Task stealing scheduling algorithm if tasks queueing is enabled. |
| 107 | |
| 108 | ## [2.6.32] - 2023-08-23 |
| 109 | |
| 110 | ### Fixed |
| 111 | |
| 112 | - Ensure no task can be executed when the pool is destroyed. |
| 113 | |
| 114 | ### Added |
| 115 | |
| 116 | - Add `queueMaxSize` option to tasks queue options. |
| 117 | - Add O(1) deque implementation implemented with doubly linked list and use it for tasks queueing. |
| 118 | - Add tasks stealing algorithm when a worker node queue is back pressured if tasks queueing is enabled. |
| 119 | |
| 120 | ## [2.6.31] - 2023-08-20 |
| 121 | |
| 122 | ### Fixed |
| 123 | |
| 124 | - Fix worker choice strategy retries mechanism in some edge cases. |
| 125 | |
| 126 | ### Changed |
| 127 | |
| 128 | - Make orthogonal worker choice strategies tasks distribution and created dynamic worker usage. |
| 129 | - Remove the experimental status of the `LEAST_ELU` worker choice strategy. |
| 130 | |
| 131 | ## [2.6.30] - 2023-08-19 |
| 132 | |
| 133 | ### Fixed |
| 134 | |
| 135 | - Ensure pool event `backPressure` is emitted. |
| 136 | - Ensure pool event `full` is emitted only once. |
| 137 | - Ensure worker node cannot be instantiated without proper arguments. |
| 138 | |
| 139 | ## [2.6.29] - 2023-08-18 |
| 140 | |
| 141 | ### Fixed |
| 142 | |
| 143 | - Fix race condition between ready and task functions worker message handling at startup. |
| 144 | - Fix duplicate task function worker usage statistics computation per task function. |
| 145 | - Update task function worker usage statistics if and only if there's at least two different task functions. |
| 146 | - Fix race condition at task function worker usage executing task computation leading to negative value. |
| 147 | |
| 148 | ### Added |
| 149 | |
| 150 | - Add back pressure detection on the worker node queue. Event `backPressure` is emitted when all worker node queues are full (worker node queue size >= poolMaxSize^2). |
| 151 | - Use back pressure detection in worker choice strategies. |
| 152 | - Add worker choice strategies retries mechanism if no worker is eligible. |
| 153 | |
| 154 | ## [2.6.28] - 2023-08-16 |
| 155 | |
| 156 | ### Fixed |
| 157 | |
| 158 | - Ensure pool workers are properly initialized. |
| 159 | |
| 160 | ### Added |
| 161 | |
| 162 | - HTTP server pool examples: express-cluster, express-hybrid. |
| 163 | |
| 164 | ### Changed |
| 165 | |
| 166 | - Remove now useless branching in worker hot code path. |
| 167 | |
| 168 | ## [2.6.27] - 2023-08-15 |
| 169 | |
| 170 | ### Fixed |
| 171 | |
| 172 | - Add `KillHandler` type definition to exported types. |
| 173 | |
| 174 | ### Added |
| 175 | |
| 176 | - Add `destroy` event to pool API. |
| 177 | |
| 178 | ## [2.6.26] - 2023-08-15 |
| 179 | |
| 180 | ### Added |
| 181 | |
| 182 | - Add kill handler to worker options allowing to execute custom code when worker is killed. |
| 183 | - Add `listTaskFunctions()` method to pool API. |
| 184 | - SMTP server pool example: nodemailer. |
| 185 | |
| 186 | ## [2.6.25] - 2023-08-13 |
| 187 | |
| 188 | ### Added |
| 189 | |
| 190 | - HTTP server pool examples: fastify-cluster, fastify-hybrid. |
| 191 | - WebSocket server pool examples: ws-cluster, ws-hybrid. |
| 192 | |
| 193 | ## [2.6.24] - 2023-08-12 |
| 194 | |
| 195 | ### Added |
| 196 | |
| 197 | - Add array of transferable objects to the `execute()` method arguments. |
| 198 | - WebSocket server pool examples: ws-worker_threads. |
| 199 | |
| 200 | ## [2.6.23] - 2023-08-11 |
| 201 | |
| 202 | ### Fixed |
| 203 | |
| 204 | - Fix pool busyness semantic when tasks queueing is enabled: the pool is busy when the number of executing tasks on each worker has reached the maximum tasks concurrency per worker. |
| 205 | |
| 206 | ### Added |
| 207 | |
| 208 | - HTTP client pool examples: fetch, node-fetch and axios with multiple task functions. |
| 209 | - HTTP server pool examples: express-worker_threads, fastify-worker_threads. |
| 210 | |
| 211 | ## [2.6.22] - 2023-08-10 |
| 212 | |
| 213 | ### Fixed |
| 214 | |
| 215 | - Add missing `types` field to package.json `exports`. |
| 216 | |
| 217 | ### Changed |
| 218 | |
| 219 | - Structure markdown documentation (PR #811). |
| 220 | |
| 221 | ## [2.6.21] - 2023-08-03 |
| 222 | |
| 223 | ### Changed |
| 224 | |
| 225 | - Improve code documentation. |
| 226 | - Code refactoring and cleanup for better maintainability and readability. |
| 227 | |
| 228 | ## [2.6.20] - 2023-07-21 |
| 229 | |
| 230 | ### Fixed |
| 231 | |
| 232 | - Fix queued tasks redistribution on error task execution starvation. |
| 233 | - Ensure tasks queueing per worker condition is untangled from the pool busyness semantic. |
| 234 | |
| 235 | ### Changed |
| 236 | |
| 237 | - Drastically reduce lookups by worker in the worker nodes. |
| 238 | |
| 239 | ## [2.6.19] - 2023-07-20 |
| 240 | |
| 241 | ### Added |
| 242 | |
| 243 | - Dedicated internal communication channel for worker_threads pools. |
| 244 | |
| 245 | ## [2.6.18] - 2023-07-19 |
| 246 | |
| 247 | ### Changed |
| 248 | |
| 249 | - Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller. |
| 250 | |
| 251 | ## [2.6.17] - 2023-07-16 |
| 252 | |
| 253 | ### Added |
| 254 | |
| 255 | - Add `listTaskFunctions()` method to worker API. |
| 256 | |
| 257 | ## [2.6.16] - 2023-07-12 |
| 258 | |
| 259 | ### Fixed |
| 260 | |
| 261 | - Fix pool startup detection. |
| 262 | - Fix worker task functions handling. |
| 263 | |
| 264 | ## [2.6.15] - 2023-07-11 |
| 265 | |
| 266 | ### Added |
| 267 | |
| 268 | - Take into account worker node readiness in worker choice strategies. |
| 269 | |
| 270 | ## [2.6.14] - 2023-07-10 |
| 271 | |
| 272 | ### Fixed |
| 273 | |
| 274 | - Fix task function statistics tracking. |
| 275 | |
| 276 | ## [2.6.13] - 2023-07-10 |
| 277 | |
| 278 | ### Added |
| 279 | |
| 280 | - Add per task function statistics tracking. |
| 281 | - Add public methods to manipulate the worker task functions at runtime. |
| 282 | |
| 283 | ## [2.6.12] - 2023-07-09 |
| 284 | |
| 285 | ### Fixed |
| 286 | |
| 287 | - Workaround import issue with `node:os` module in node 16.x.x. |
| 288 | |
| 289 | ## [2.6.11] - 2023-07-09 |
| 290 | |
| 291 | ### Fixed |
| 292 | |
| 293 | - Fix pool readiness semantic. |
| 294 | |
| 295 | ## [2.6.10] - 2023-07-08 |
| 296 | |
| 297 | ### Fixed |
| 298 | |
| 299 | - Ensure workers are not recreated on error at pool startup. |
| 300 | |
| 301 | ### Added |
| 302 | |
| 303 | - Add `ready` and `strategy` fields to pool information. |
| 304 | - Add pool event `ready` to notify when the number of workers created in the pool has reached the maximum size expected and are ready. |
| 305 | - Add dynamic pool sizing checks. |
| 306 | |
| 307 | ## [2.6.9] - 2023-07-07 |
| 308 | |
| 309 | ### Fixed |
| 310 | |
| 311 | - Recreate the right worker type on uncaught exception. |
| 312 | |
| 313 | ### Added |
| 314 | |
| 315 | - Add minimum and maximum to internal measurement statistics. |
| 316 | - Add `runTime` and `waitTime` to pool information. |
| 317 | - Check worker inactive time only on dynamic worker. |
| 318 | |
| 319 | ## [2.6.8] - 2023-07-03 |
| 320 | |
| 321 | ### Fixed |
| 322 | |
| 323 | - Brown paper bag release to fix version handling in pool information. |
| 324 | |
| 325 | ## [2.6.7] - 2023-07-03 |
| 326 | |
| 327 | ### Fixed |
| 328 | |
| 329 | - Ensure worker queued tasks at error are reassigned to other pool workers. |
| 330 | |
| 331 | ### Added |
| 332 | |
| 333 | - Add pool `utilization` ratio to pool information. |
| 334 | - Add `version` to pool information. |
| 335 | - Add worker information to worker nodes. |
| 336 | |
| 337 | ## [2.6.6] - 2023-07-01 |
| 338 | |
| 339 | ### Added |
| 340 | |
| 341 | - Add safe helper `availableParallelism()` to help sizing the pool. |
| 342 | |
| 343 | ### Fixed |
| 344 | |
| 345 | - Ensure message handler is only registered in worker. |
| 346 | |
| 347 | ## [2.6.5] - 2023-06-27 |
| 348 | |
| 349 | ### Known issues |
| 350 | |
| 351 | - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782 |
| 352 | |
| 353 | ### Fixed |
| 354 | |
| 355 | - Artificial version bump to 2.6.5 to workaround publication issue. |
| 356 | - Ensure cluster pool `destroy()` gracefully shutdowns worker's server. |
| 357 | - Ensure pool event is emitted before task error promise rejection. |
| 358 | - Fix queued tasks count computation. |
| 359 | |
| 360 | ### Removed |
| 361 | |
| 362 | - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC. |
| 363 | |
| 364 | ## [2.6.4] - 2023-06-27 |
| 365 | |
| 366 | ### Known issues |
| 367 | |
| 368 | - Cluster pools tasks execution are not working by using ESM files extension: https://github.com/poolifier/poolifier/issues/782 |
| 369 | |
| 370 | ### Fixed |
| 371 | |
| 372 | - Ensure cluster pool `destroy()` gracefully shutdowns worker's server. |
| 373 | - Ensure pool event is emitted before task error promise rejection. |
| 374 | - Fix queued tasks count computation. |
| 375 | |
| 376 | ### Removed |
| 377 | |
| 378 | - Remove unneeded worker_threads worker `MessageChannel` internal usage for IPC. |
| 379 | |
| 380 | ## [2.6.3] - 2023-06-19 |
| 381 | |
| 382 | ### Fixed |
| 383 | |
| 384 | - Ensure no tasks are queued when trying to soft kill a dynamic worker. |
| 385 | - Update strategies internals after statistics computation. |
| 386 | |
| 387 | ### Changed |
| 388 | |
| 389 | - Optimize O(1) queue implementation. |
| 390 | |
| 391 | ## [2.6.2] - 2023-06-12 |
| 392 | |
| 393 | ### Fixed |
| 394 | |
| 395 | - Fix new worker use after creation in dynamic pool given the current worker choice strategy. |
| 396 | |
| 397 | ## [2.6.1] - 2023-06-10 |
| 398 | |
| 399 | ### Added |
| 400 | |
| 401 | - Add worker choice strategy documentation: [README.md](./docs/worker-choice-strategies.md). |
| 402 | |
| 403 | ### Fixed |
| 404 | |
| 405 | - Fix average statistics computation: ensure failed tasks are not accounted. |
| 406 | |
| 407 | ## [2.6.0] - 2023-06-09 |
| 408 | |
| 409 | ### Added |
| 410 | |
| 411 | - Add `LEAST_ELU` worker choice strategy (experimental). |
| 412 | - Add tasks ELU instead of runtime support to `FAIR_SHARE` worker choice strategy. |
| 413 | |
| 414 | ### Changed |
| 415 | |
| 416 | - Refactor pool worker node usage internals. |
| 417 | - Breaking change: refactor worker choice strategy statistics requirements: the syntax of the worker choice strategy options has changed. |
| 418 | - Breaking change: pool information `info` property object fields have been renamed. |
| 419 | |
| 420 | ### Fixed |
| 421 | |
| 422 | - Fix wait time accounting. |
| 423 | - Ensure worker choice strategy `LEAST_BUSY` accounts also tasks wait time. |
| 424 | - Ensure worker choice strategy `LEAST_USED` accounts also queued tasks. |
| 425 | |
| 426 | ## [2.5.4] - 2023-06-07 |
| 427 | |
| 428 | ### Added |
| 429 | |
| 430 | - Add Event Loop Utilization (ELU) statistics to worker tasks usage. |
| 431 | |
| 432 | ### Changed |
| 433 | |
| 434 | - Compute statistics at the worker level only if needed. |
| 435 | - Add `worker_threads` options to thread pool options. |
| 436 | |
| 437 | ### Fixed |
| 438 | |
| 439 | - Make the `LEAST_BUSY` strategy only relies on task runtime. |
| 440 | |
| 441 | ## [2.5.3] - 2023-06-04 |
| 442 | |
| 443 | ### Changed |
| 444 | |
| 445 | - Refine pool information content. |
| 446 | - Limit pool internals public exposure. |
| 447 | |
| 448 | ## [2.5.2] - 2023-06-02 |
| 449 | |
| 450 | ### Added |
| 451 | |
| 452 | - Add `taskError` pool event for task execution error. |
| 453 | - Add pool information `info` property to pool. |
| 454 | - Emit pool information on `busy` and `full` pool events. |
| 455 | |
| 456 | ## [2.5.1] - 2023-06-01 |
| 457 | |
| 458 | ### Added |
| 459 | |
| 460 | - Add pool option `restartWorkerOnError` to restart worker on uncaught error. Default to `true`. |
| 461 | - Add `error` pool event for uncaught worker error. |
| 462 | |
| 463 | ## [2.5.0] - 2023-05-31 |
| 464 | |
| 465 | ### Added |
| 466 | |
| 467 | - Switch pool event emitter to `EventEmitterAsyncResource`. |
| 468 | - Add tasks wait time accounting in per worker tasks usage. |
| 469 | - Add interleaved weighted round robin `INTERLEAVED_WEIGHTED_ROUND_ROBIN` worker choice strategy (experimental). |
| 470 | |
| 471 | ### Changed |
| 472 | |
| 473 | - Renamed worker choice strategy `LESS_BUSY` to `LEAST_BUSY` and `LESS_USED` to `LEAST_USED`. |
| 474 | |
| 475 | ## [2.4.14] - 2023-05-09 |
| 476 | |
| 477 | ### Fixed |
| 478 | |
| 479 | - Ensure no undefined task runtime can land in the tasks history. |
| 480 | - Fix median computation implementation once again. |
| 481 | |
| 482 | ### Added |
| 483 | |
| 484 | - Unit tests for median and queue implementations. |
| 485 | |
| 486 | ## [2.4.13] - 2023-05-08 |
| 487 | |
| 488 | ### Fixed |
| 489 | |
| 490 | - Fix worker choice strategy options validation. |
| 491 | - Fix fair share worker choice strategy internals update: ensure virtual task end timestamp is computed at task submission. |
| 492 | |
| 493 | ## [2.4.12] - 2023-05-06 |
| 494 | |
| 495 | ### Added |
| 496 | |
| 497 | - Support multiple task functions per worker. |
| 498 | - Add custom worker weights support to worker choice strategies options. |
| 499 | |
| 500 | ### Changed |
| 501 | |
| 502 | - Use O(1) queue implementation for tasks queueing. |
| 503 | |
| 504 | ### Fixed |
| 505 | |
| 506 | - Fix median computation implementation. |
| 507 | - Fix fair share worker choice strategy internals update. |
| 508 | |
| 509 | ## [2.4.11] - 2023-04-23 |
| 510 | |
| 511 | ### Changed |
| 512 | |
| 513 | - Optimize free worker finding in worker choice strategies. |
| 514 | |
| 515 | ## [2.4.10] - 2023-04-15 |
| 516 | |
| 517 | ### Fixed |
| 518 | |
| 519 | - Fix typescript type definition for task function: ensure the input data is optional. |
| 520 | - Fix typescript type definition for pool execute(): ensure the input data is optional. |
| 521 | |
| 522 | ## [2.4.9] - 2023-04-15 |
| 523 | |
| 524 | ### Added |
| 525 | |
| 526 | - Add tasks queue enablement runtime setter to pool. |
| 527 | - Add tasks queue options runtime setter to pool. |
| 528 | - Add worker choice strategy options runtime setter to pool. |
| 529 | |
| 530 | ### Changed |
| 531 | |
| 532 | - Remove the tasks queuing experimental status. |
| 533 | |
| 534 | ### Fixed |
| 535 | |
| 536 | - Fix task function type definition and validation. |
| 537 | - Fix worker choice strategy options handling. |
| 538 | |
| 539 | ## [2.4.8] - 2023-04-12 |
| 540 | |
| 541 | ### Fixed |
| 542 | |
| 543 | - Fix message between main worker and worker type definition for tasks. |
| 544 | - Fix code documentation. |
| 545 | |
| 546 | ## [2.4.7] - 2023-04-11 |
| 547 | |
| 548 | ### Added |
| 549 | |
| 550 | - Add worker tasks queue options to pool options. |
| 551 | |
| 552 | ### Fixed |
| 553 | |
| 554 | - Fix missing documentation. |
| 555 | |
| 556 | ## [2.4.6] - 2023-04-10 |
| 557 | |
| 558 | ### Fixed |
| 559 | |
| 560 | - Ensure one task at a time is executed per worker with tasks queueing enabled. |
| 561 | - Properly count worker executing tasks with tasks queueing enabled. |
| 562 | |
| 563 | ## [2.4.5] - 2023-04-09 |
| 564 | |
| 565 | ### Added |
| 566 | |
| 567 | - Use monotonic high resolution timer for worker tasks runtime. |
| 568 | - Add worker tasks median runtime to statistics. |
| 569 | - Add worker tasks queue (experimental). |
| 570 | |
| 571 | ## [2.4.4] - 2023-04-07 |
| 572 | |
| 573 | ### Added |
| 574 | |
| 575 | - Add `PoolEvents` enumeration and `PoolEvent` type. |
| 576 | |
| 577 | ### Fixed |
| 578 | |
| 579 | - Destroy worker only on alive check. |
| 580 | |
| 581 | ## [2.4.3] - 2023-04-07 |
| 582 | |
| 583 | ### Fixed |
| 584 | |
| 585 | - Fix typedoc generation with inheritance. |
| 586 | |
| 587 | ## [2.4.2] - 2023-04-06 |
| 588 | |
| 589 | ### Added |
| 590 | |
| 591 | - Add `full` event to dynamic pool. |
| 592 | - Keep worker choice strategy in memory for conditional reuse. |
| 593 | |
| 594 | ### Fixed |
| 595 | |
| 596 | - Fix possible negative worker key at worker removal in worker choice strategies. |
| 597 | |
| 598 | ## [2.4.1] - 2023-04-05 |
| 599 | |
| 600 | ### Changed |
| 601 | |
| 602 | - Optimize worker choice strategy for dynamic pool. |
| 603 | |
| 604 | ### Fixed |
| 605 | |
| 606 | - Ensure dynamic pool does not alter worker choice strategy expected behavior. |
| 607 | |
| 608 | ## [2.4.0] - 2023-04-04 |
| 609 | |
| 610 | ### Added |
| 611 | |
| 612 | - Add `LESS_BUSY` worker choice strategy. |
| 613 | |
| 614 | ### Changed |
| 615 | |
| 616 | - Optimize worker storage in pool. |
| 617 | - Optimize worker alive status check. |
| 618 | - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`. |
| 619 | - Optimize `LESS_USED` worker choice strategy. |
| 620 | - Update benchmarks versus external threads pools. |
| 621 | - Optimize tasks usage statistics requirements for worker choice strategy. |
| 622 | |
| 623 | ### Fixed |
| 624 | |
| 625 | - Ensure trimmable characters are checked at pool initialization. |
| 626 | - Fix message id integer overflow. |
| 627 | - Fix pool worker removal in worker choice strategy internals. |
| 628 | - Fix package publication with pnpm. |
| 629 | |
| 630 | ## [2.4.0-3] - 2023-04-04 |
| 631 | |
| 632 | ### Added |
| 633 | |
| 634 | - Add `LESS_BUSY` worker choice strategy. |
| 635 | |
| 636 | ### Changed |
| 637 | |
| 638 | - Optimize worker storage in pool. |
| 639 | - Optimize worker alive status check. |
| 640 | - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`. |
| 641 | - Optimize `LESS_USED` worker choice strategy. |
| 642 | - Update benchmarks versus external threads pools. |
| 643 | |
| 644 | ### Fixed |
| 645 | |
| 646 | - Ensure trimmable characters are checked at pool initialization. |
| 647 | - Fix message id integer overflow. |
| 648 | - Fix pool worker removal in worker choice strategy internals. |
| 649 | - Fix package publication with pnpm. |
| 650 | |
| 651 | ## [2.4.0-2] - 2023-04-03 |
| 652 | |
| 653 | ### Added |
| 654 | |
| 655 | - Add `LESS_BUSY` worker choice strategy. |
| 656 | |
| 657 | ### Changed |
| 658 | |
| 659 | - Optimize worker storage in pool. |
| 660 | - Optimize worker alive status check. |
| 661 | - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`. |
| 662 | - Optimize `LESS_USED` worker choice strategy. |
| 663 | |
| 664 | ### Fixed |
| 665 | |
| 666 | - Ensure trimmable characters are checked at pool initialization. |
| 667 | - Fix message id integer overflow. |
| 668 | - Fix pool worker removal in worker choice strategy internals. |
| 669 | - Fix package publication with pnpm. |
| 670 | |
| 671 | ## [2.4.0-1] - 2023-04-03 |
| 672 | |
| 673 | ### Added |
| 674 | |
| 675 | - Add `LESS_BUSY` worker choice strategy. |
| 676 | |
| 677 | ### Changed |
| 678 | |
| 679 | - Optimize worker storage in pool. |
| 680 | - Optimize worker alive status check. |
| 681 | - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`. |
| 682 | - Optimize `LESS_USED` worker choice strategy. |
| 683 | |
| 684 | ### Fixed |
| 685 | |
| 686 | - Ensure trimmable characters are checked at pool initialization. |
| 687 | - Fix message id integer overflow. |
| 688 | - Fix pool worker removal in worker choice strategy internals. |
| 689 | |
| 690 | ## [2.4.0-0] - 2023-04-03 |
| 691 | |
| 692 | ### Added |
| 693 | |
| 694 | - Add `LESS_BUSY` worker choice strategy. |
| 695 | |
| 696 | ### Changed |
| 697 | |
| 698 | - Optimize worker storage in pool. |
| 699 | - Optimize worker alive status check. |
| 700 | - BREAKING CHANGE: Rename worker choice strategy `LESS_RECENTLY_USED` to `LESS_USED`. |
| 701 | - Optimize `LESS_USED` worker choice strategy. |
| 702 | |
| 703 | ### Fixed |
| 704 | |
| 705 | - Ensure trimmable characters are checked at pool initialization. |
| 706 | - Fix message id integer overflow. |
| 707 | - Fix pool worker removal in worker choice strategy internals. |
| 708 | |
| 709 | ## [2.3.10] - 2023-03-18 |
| 710 | |
| 711 | ### Fixed |
| 712 | |
| 713 | - Fix package.json `exports` syntax for ESM and CommonJS. |
| 714 | |
| 715 | ### Changed |
| 716 | |
| 717 | - Permit SemVer pre-release publication. |
| 718 | |
| 719 | ## [2.3.10-2] - 2023-03-18 |
| 720 | |
| 721 | ### Fixed |
| 722 | |
| 723 | - Fix package.json `exports` syntax for ESM and CommonJS. |
| 724 | |
| 725 | ## [2.3.10-1] - 2023-03-18 |
| 726 | |
| 727 | ### Changed |
| 728 | |
| 729 | - Permit SemVer pre-release publication. |
| 730 | |
| 731 | ## [2.3.10-0] - 2023-03-18 |
| 732 | |
| 733 | ### Fixed |
| 734 | |
| 735 | - Fix package.json `exports` syntax for ESM and CommonJS. |
| 736 | |
| 737 | ## [2.3.9] - 2023-03-18 |
| 738 | |
| 739 | ### Changed |
| 740 | |
| 741 | - Introduce ESM module support along with CommonJS one. |
| 742 | |
| 743 | ### Fixed |
| 744 | |
| 745 | - Fix brown paper bag bug referencing the same object literal. |
| 746 | |
| 747 | ## [2.3.8] - 2023-03-18 |
| 748 | |
| 749 | ### Changed |
| 750 | |
| 751 | - Switch internal benchmarking code to benny. |
| 752 | - Switch to TypeScript 5.x.x. |
| 753 | - Switch rollup bundler plugins to core ones. |
| 754 | - Switch to TSDoc syntax. |
| 755 | - Enforce conventional commits. |
| 756 | |
| 757 | ### Fixed |
| 758 | |
| 759 | - Fix random integer generator. |
| 760 | - Fix worker choice strategy pool type identification at initialization. |
| 761 | |
| 762 | ## [2.3.7] - 2022-10-23 |
| 763 | |
| 764 | ### Changed |
| 765 | |
| 766 | - Switch to open collective FOSS project funding platform. |
| 767 | - Switch to ts-standard linter configuration on TypeScript code. |
| 768 | |
| 769 | ### Fixed |
| 770 | |
| 771 | - Fixed missing async on pool execute method. |
| 772 | - Fixed typing in TypeScript example. |
| 773 | - Fixed types in unit tests. |
| 774 | |
| 775 | ## [2.3.6] - 2022-10-22 |
| 776 | |
| 777 | ### Changed |
| 778 | |
| 779 | - Cleanup pool attributes and methods. |
| 780 | - Refine error types thrown. |
| 781 | |
| 782 | ### Fixed |
| 783 | |
| 784 | - Fix continuous integration build on windows. |
| 785 | - Fix code coverage reporting by using c8 instead of nyc. |
| 786 | |
| 787 | ## [2.3.5] - 2022-10-21 |
| 788 | |
| 789 | ### Changed |
| 790 | |
| 791 | - Improve benchmarks: add IO intensive task workload, add task size option, integrate code into linter. |
| 792 | - Optimize tasks usage lookup implementation. |
| 793 | |
| 794 | ### Fixed |
| 795 | |
| 796 | - Fix missed pool event emitter type export. |
| 797 | - Fix typedoc documentation generation. |
| 798 | |
| 799 | ## [2.3.4] - 2022-10-17 |
| 800 | |
| 801 | ### Added |
| 802 | |
| 803 | - Fully automate release process with release-it. |
| 804 | |
| 805 | ### Changed |
| 806 | |
| 807 | - Optimize fair share task scheduling algorithm implementation. |
| 808 | - Update benchmarks versus external pools results with latest version. |
| 809 | |
| 810 | ## [2.3.3] - 2022-10-15 |
| 811 | |
| 812 | ### Added |
| 813 | |
| 814 | - Add support for [cluster settings](https://nodejs.org/api/cluster.html#cluster_cluster_settings) in cluster pool options. |
| 815 | |
| 816 | ## [2.3.2] - 2022-10-14 |
| 817 | |
| 818 | ### Changed |
| 819 | |
| 820 | - Optimize fair share worker selection strategy implementation. |
| 821 | |
| 822 | ### Fixed |
| 823 | |
| 824 | - Fix WRR worker selection strategy: ensure the condition triggering the round robin can be fulfilled. |
| 825 | |
| 826 | ## [2.3.1] - 2022-10-13 |
| 827 | |
| 828 | ### Added |
| 829 | |
| 830 | - Pool worker choice strategies: |
| 831 | - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` strategy based on weighted round robin scheduling algorithm using tasks execution time for now. |
| 832 | - `WorkerChoiceStrategies.FAIR_SHARE` strategy based on fair share scheduling algorithm using tasks execution time for now. |
| 833 | |
| 834 | ## [2.2.2] - 2022-10-09 |
| 835 | |
| 836 | ### Fixed |
| 837 | |
| 838 | - Fixed `README.md` file. |
| 839 | |
| 840 | ## [2.2.1] - 2022-10-08 |
| 841 | |
| 842 | ### Added |
| 843 | |
| 844 | - Dynamic worker choice strategy change at runtime. |
| 845 | |
| 846 | ## [2.2.0] - 2022-01-05 |
| 847 | |
| 848 | ### Breaking Changes |
| 849 | |
| 850 | - Support only Node.js version 16.x.x for cluster pool: upstream cluster API have changed on that version. |
| 851 | |
| 852 | ## [2.1.0] - 2021-08-29 |
| 853 | |
| 854 | ### Added |
| 855 | |
| 856 | - Add an optional pool option `messageHandler` to `PoolOptions<Worker>` for registering a message handler callback on each worker. |
| 857 | |
| 858 | ### Breaking Changes |
| 859 | |
| 860 | - `AbstractWorker` class `maxInactiveTime`, `killBehavior` and `async` attributes have been removed in favour of the same ones in the worker options `opts` public attribute. |
| 861 | - `AbstractWorker` class `lastTask` attribute have been renamed to `lastTaskTimestamp`. |
| 862 | - `AbstractWorker` class `interval` attribute have been renamed to `aliveInterval`. |
| 863 | - `AbstractWorker` class cannot be instantiated without specifying the `mainWorker` argument referencing the main worker. |
| 864 | |
| 865 | ## [2.0.2] - 2021-05-12 |
| 866 | |
| 867 | ### Bug fixes |
| 868 | |
| 869 | - Fix `busy` event emission on fixed pool type |
| 870 | |
| 871 | ## [2.0.1] - 2021-03-16 |
| 872 | |
| 873 | ### Bug fixes |
| 874 | |
| 875 | - Check if pool options are properly set. |
| 876 | - `busy` event is emitted on all pool types. |
| 877 | |
| 878 | ## [2.0.0] - 2021-03-01 |
| 879 | |
| 880 | ### Bug fixes |
| 881 | |
| 882 | - Now a thread/process by default is not deleted when the task submitted take more time than maxInactiveTime configured (issue #70). |
| 883 | |
| 884 | ### Breaking Changes |
| 885 | |
| 886 | - `FullPool` event is now renamed to `busy`. |
| 887 | - `maxInactiveTime` on `ThreadWorker` default behavior is now changed, if you want to keep the old behavior set `killBehavior` to `KillBehaviors.HARD`. |
| 888 | _Find more details on our JSDoc._ |
| 889 | |
| 890 | - `maxTasks` option on `FixedThreadPool` and `DynamicThreadPool` is now removed since is no more needed. |
| 891 | |
| 892 | - We changed some internal structures, but you shouldn't be too affected by them as these are internal changes. |
| 893 | |
| 894 | ### Pool options types declaration merge |
| 895 | |
| 896 | `FixedThreadPoolOptions` and `DynamicThreadPoolOptions` type declarations have been merged to `PoolOptions<Worker>`. |
| 897 | |
| 898 | #### New `export` strategy |
| 899 | |
| 900 | ```js |
| 901 | // Before |
| 902 | const DynamicThreadPool = require('poolifier/lib/dynamic') |
| 903 | // After |
| 904 | const { DynamicThreadPool } = require('poolifier/lib/dynamic') |
| 905 | ``` |
| 906 | |
| 907 | But you should always prefer just using |
| 908 | |
| 909 | ```js |
| 910 | const { DynamicThreadPool } = require('poolifier') |
| 911 | ``` |
| 912 | |
| 913 | #### New type definitions for input data and response |
| 914 | |
| 915 | For cluster worker and worker-thread pools, you can now only send and receive structured-cloneable data. |
| 916 | _This is not a limitation by poolifier but Node.js._ |
| 917 | |
| 918 | #### Public property replacements |
| 919 | |
| 920 | `numWorkers` property is now `numberOfWorkers` |
| 921 | |
| 922 | #### Internal (protected) properties and methods renaming |
| 923 | |
| 924 | These properties are not intended for end users |
| 925 | |
| 926 | - `id` => `nextMessageId` |
| 927 | |
| 928 | These methods are not intended for end users |
| 929 | |
| 930 | - `_chooseWorker` => `chooseWorker` |
| 931 | - `_newWorker` => `createWorker` |
| 932 | - `_execute` => `internalExecute` |
| 933 | - `_chooseWorker` => `chooseWorker` |
| 934 | - `_checkAlive` => `checkAlive` |
| 935 | - `_run` => `run` |
| 936 | - `_runAsync` => `runAsync` |
| 937 | |
| 938 | ## [1.1.0] - 2020-05-21 |
| 939 | |
| 940 | ### Added |
| 941 | |
| 942 | - ThreadWorker support async functions as option |
| 943 | - Various external library patches |
| 944 | |
| 945 | ## [1.0.0] - 2020-01-24 |
| 946 | |
| 947 | ### Added |
| 948 | |
| 949 | - FixedThreadPool implementation |
| 950 | - DynamicThreadPool implementation |
| 951 | - WorkerThread implementation to improve developer experience |