1 import cluster
, { type ClusterSettings
, type Worker
} from
'node:cluster'
2 import type { MessageValue
} from
'../../utility-types'
3 import { AbstractPool
} from
'../abstract-pool'
4 import { type PoolOptions
, type PoolType
, PoolTypes
} from
'../pool'
5 import { type WorkerType
, WorkerTypes
} from
'../worker'
8 * Options for a poolifier cluster pool.
10 export interface ClusterPoolOptions
extends PoolOptions
<Worker
> {
12 * Key/value pairs to add to worker process environment.
14 * @see https://nodejs.org/api/cluster.html#cluster_cluster_fork_env
16 env
?: Record
<string, unknown
>
20 * @see https://nodejs.org/api/cluster.html#cluster_cluster_settings
22 settings
?: ClusterSettings
26 * A cluster pool with a fixed number of workers.
28 * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data.
29 * @typeParam Response - Type of execution response. This can only be structured-cloneable data.
30 * @author [Christopher Quadflieg](https://github.com/Shinigami92)
33 export class FixedClusterPool
<
36 > extends AbstractPool
<Worker
, Data
, Response
> {
38 * Constructs a new poolifier fixed cluster pool.
40 * @param numberOfWorkers - Number of workers for this pool.
41 * @param filePath - Path to an implementation of a `ClusterWorker` file, which can be relative or absolute.
42 * @param opts - Options for this fixed cluster pool.
45 numberOfWorkers
: number,
47 protected readonly opts
: ClusterPoolOptions
= {}
49 super(numberOfWorkers
, filePath
, opts
)
53 protected setupHook (): void {
54 cluster
.setupPrimary({ ...this.opts
.settings
, exec
: this.filePath
})
58 protected isMain (): boolean {
59 return cluster
.isPrimary
63 protected destroyWorker (worker
: Worker
): void {
64 this.sendToWorker(worker
, { kill
: 1 })
65 worker
.on('disconnect', () => {
72 protected sendToWorker (worker
: Worker
, message
: MessageValue
<Data
>): void {
77 protected createWorker (): Worker
{
78 return cluster
.fork(this.opts
.env
)
82 protected get
type (): PoolType
{
83 return PoolTypes
.fixed
87 protected get
worker (): WorkerType
{
88 return WorkerTypes
.cluster
92 protected get
minSize (): number {
93 return this.numberOfWorkers
97 protected get
maxSize (): number {
98 return this.numberOfWorkers
102 protected get
busy (): boolean {
103 return this.internalBusy()