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
: true, workerId
: worker
.id
})
65 worker
.on('disconnect', () => {
72 protected sendToWorker (worker
: Worker
, message
: MessageValue
<Data
>): void {
77 protected sendStartupMessageToWorker (worker
: Worker
): void {
78 this.sendToWorker(worker
, {
85 protected registerWorkerMessageListener
<Message
extends Data
| Response
>(
87 listener
: (message
: MessageValue
<Message
>) => void
89 worker
.on('message', listener
)
93 protected createWorker (): Worker
{
94 return cluster
.fork(this.opts
.env
)
98 protected get
type (): PoolType
{
99 return PoolTypes
.fixed
103 protected get
worker (): WorkerType
{
104 return WorkerTypes
.cluster
108 protected get
minSize (): number {
109 return this.numberOfWorkers
113 protected get
maxSize (): number {
114 return this.numberOfWorkers
118 protected get
busy (): boolean {
119 return this.internalBusy()