@@ -18,8 +18,8 @@ const cluster = require('cluster');
18
18
const http = require (' http' );
19
19
const numCPUs = require (' os' ).cpus ().length ;
20
20
21
- if (cluster .isParent ) {
22
- console .log (` Parent ${ process .pid } is running` );
21
+ if (cluster .isPrimary ) {
22
+ console .log (` Primary ${ process .pid } is running` );
23
23
24
24
// Fork workers.
25
25
for (let i = 0 ; i < numCPUs; i++ ) {
@@ -45,7 +45,7 @@ Running Node.js will now share port 8000 between the workers:
45
45
46
46
``` console
47
47
$ node server.js
48
- Parent 3596 is running
48
+ Primary 3596 is running
49
49
Worker 4324 started
50
50
Worker 4520 started
51
51
Worker 6056 started
@@ -66,12 +66,12 @@ The cluster module supports two methods of distributing incoming
66
66
connections.
67
67
68
68
The first one (and the default one on all platforms except Windows),
69
- is the round-robin approach, where the parent process listens on a
69
+ is the round-robin approach, where the primary process listens on a
70
70
port, accepts new connections and distributes them across the workers
71
71
in a round-robin fashion, with some built-in smarts to avoid
72
72
overloading a worker process.
73
73
74
- The second approach is where the parent process creates the listen
74
+ The second approach is where the primary process creates the listen
75
75
socket and sends it to interested workers. The workers then accept
76
76
incoming connections directly.
77
77
@@ -81,16 +81,16 @@ to operating system scheduler vagaries. Loads have been observed
81
81
where over 70% of all connections ended up in just two processes,
82
82
out of a total of eight.
83
83
84
- Because ` server.listen() ` hands off most of the work to the parent
84
+ Because ` server.listen() ` hands off most of the work to the primary
85
85
process, there are three cases where the behavior between a normal
86
86
Node.js process and a cluster worker differs:
87
87
88
- 1 . ` server.listen({fd: 7}) ` Because the message is passed to the parent ,
88
+ 1 . ` server.listen({fd: 7}) ` Because the message is passed to the primary ,
89
89
file descriptor 7 ** in the parent** will be listened on, and the
90
90
handle passed to the worker, rather than listening to the worker's
91
91
idea of what the number 7 file descriptor references.
92
92
2 . ` server.listen(handle) ` Listening on handles explicitly will cause
93
- the worker to use the supplied handle, rather than talk to the parent
93
+ the worker to use the supplied handle, rather than talk to the primary
94
94
process.
95
95
3 . ` server.listen(0) ` Normally, this will cause servers to listen on a
96
96
random port. However, in a cluster, each worker will receive the
@@ -121,7 +121,7 @@ added: v0.7.0
121
121
* Extends: {EventEmitter}
122
122
123
123
A ` Worker ` object contains all public information and method about a worker.
124
- In the parent it can be obtained using ` cluster.workers ` . In a worker
124
+ In the primary it can be obtained using ` cluster.workers ` . In a worker
125
125
it can be obtained using ` cluster.worker ` .
126
126
127
127
### Event: ` 'disconnect' `
@@ -201,14 +201,14 @@ Within a worker, `process.on('message')` may also be used.
201
201
202
202
See [ ` process ` event: ` 'message' ` ] [ ] .
203
203
204
- Here is an example using the message system. It keeps a count in the parent
204
+ Here is an example using the message system. It keeps a count in the primary
205
205
process of the number of HTTP requests received by the workers:
206
206
207
207
``` js
208
208
const cluster = require (' cluster' );
209
209
const http = require (' http' );
210
210
211
- if (cluster .isParent ) {
211
+ if (cluster .isPrimary ) {
212
212
213
213
// Keep track of http requests
214
214
let numReqs = 0 ;
@@ -240,7 +240,7 @@ if (cluster.isParent) {
240
240
res .writeHead (200 );
241
241
res .end (' hello world\n ' );
242
242
243
- // Notify parent about the request
243
+ // Notify primary about the request
244
244
process .send ({ cmd: ' notifyRequest' });
245
245
}).listen (8000 );
246
246
}
@@ -275,7 +275,7 @@ changes:
275
275
In a worker, this function will close all servers, wait for the ` 'close' ` event
276
276
on those servers, and then disconnect the IPC channel.
277
277
278
- In the parent , an internal message is sent to the worker causing it to call
278
+ In the primary , an internal message is sent to the worker causing it to call
279
279
` .disconnect() ` on itself.
280
280
281
281
Causes ` .exitedAfterDisconnect ` to be set.
@@ -299,7 +299,7 @@ close them. It also may be useful to implement a timeout, killing a worker if
299
299
the ` 'disconnect' ` event has not been emitted after some time.
300
300
301
301
``` js
302
- if (cluster .isParent ) {
302
+ if (cluster .isPrimary ) {
303
303
const worker = cluster .fork ();
304
304
let timeout;
305
305
@@ -343,7 +343,7 @@ This property is `true` if the worker exited due to `.kill()` or
343
343
worker has not exited, it is ` undefined ` .
344
344
345
345
The boolean [ ` worker.exitedAfterDisconnect ` ] [ ] allows distinguishing between
346
- voluntary and accidental exit, the parent may choose not to respawn a worker
346
+ voluntary and accidental exit, the primary may choose not to respawn a worker
347
347
based on this value.
348
348
349
349
``` js
@@ -375,8 +375,8 @@ While a worker is alive, this is the key that indexes it in
375
375
added: v0.11.14
376
376
-->
377
377
378
- This function returns ` true ` if the worker is connected to its parent via its
379
- IPC channel, ` false ` otherwise. A worker is connected to its parent after it
378
+ This function returns ` true ` if the worker is connected to its primary via its
379
+ IPC channel, ` false ` otherwise. A worker is connected to its primary after it
380
380
has been created. It is disconnected after the ` 'disconnect' ` event is emitted.
381
381
382
382
### ` worker.isDead() `
@@ -392,8 +392,8 @@ const cluster = require('cluster');
392
392
const http = require (' http' );
393
393
const numCPUs = require (' os' ).cpus ().length ;
394
394
395
- if (cluster .isParent ) {
396
- console .log (` Parent ${ process .pid } is running` );
395
+ if (cluster .isPrimary ) {
396
+ console .log (` Primary ${ process .pid } is running` );
397
397
398
398
// Fork workers.
399
399
for (let i = 0 ; i < numCPUs; i++ ) {
@@ -425,9 +425,10 @@ added: v0.9.12
425
425
* ` signal ` {string} Name of the kill signal to send to the worker
426
426
process. ** Default** : ` 'SIGTERM' `
427
427
428
- This function will kill the worker. In the parent, it does this by disconnecting
429
- the ` worker.process ` , and once disconnected, killing with ` signal ` . In the
430
- worker, it does it by disconnecting the channel, and then exiting with code ` 0 ` .
428
+ This function will kill the worker. In the primary, it does this
429
+ by disconnecting the ` worker.process ` , and once disconnected, killing
430
+ with ` signal ` . In the worker, it does it by disconnecting the channel,
431
+ and then exiting with code ` 0 ` .
431
432
432
433
Because ` kill() ` attempts to gracefully disconnect the worker process, it is
433
434
susceptible to waiting indefinitely for the disconnect to complete. For example,
@@ -478,18 +479,18 @@ changes:
478
479
* ` callback ` {Function}
479
480
* Returns: {boolean}
480
481
481
- Send a message to a worker or parent , optionally with a handle.
482
+ Send a message to a worker or primary , optionally with a handle.
482
483
483
- In the parent this sends a message to a specific worker. It is identical to
484
+ In the primary this sends a message to a specific worker. It is identical to
484
485
[ ` ChildProcess.send() ` ] [ ] .
485
486
486
- In a worker this sends a message to the parent . It is identical to
487
+ In a worker this sends a message to the primary . It is identical to
487
488
` process.send() ` .
488
489
489
- This example will echo back all messages from the parent :
490
+ This example will echo back all messages from the primary :
490
491
491
492
``` js
492
- if (cluster .isParent ) {
493
+ if (cluster .isPrimary ) {
493
494
const worker = cluster .fork ();
494
495
worker .send (' hi there' );
495
496
@@ -583,7 +584,7 @@ added: v0.7.0
583
584
584
585
After calling ` listen() ` from a worker, when the ` 'listening' ` event is emitted
585
586
on the server a ` 'listening' ` event will also be emitted on ` cluster ` in the
586
- parent .
587
+ primary .
587
588
588
589
The event handler is executed with two arguments, the ` worker ` contains the
589
590
worker object and the ` address ` object contains the following connection
@@ -617,7 +618,7 @@ changes:
617
618
* ` message ` {Object}
618
619
* ` handle ` {undefined|Object}
619
620
620
- Emitted when the cluster parent receives a message from any worker.
621
+ Emitted when the cluster primary receives a message from any worker.
621
622
622
623
See [ ` child_process ` event: ` 'message' ` ] [ ] .
623
624
@@ -629,9 +630,9 @@ added: v0.7.0
629
630
* ` worker ` {cluster.Worker}
630
631
631
632
After forking a new worker, the worker should respond with an online message.
632
- When the parent receives an online message it will emit this event.
633
+ When the primary receives an online message it will emit this event.
633
634
The difference between ` 'fork' ` and ` 'online' ` is that fork is emitted when the
634
- parent forks a worker, and ` 'online' ` is emitted when the worker is running.
635
+ primary forks a worker, and ` 'online' ` is emitted when the worker is running.
635
636
636
637
``` js
637
638
cluster .on (' online' , (worker ) => {
@@ -646,11 +647,11 @@ added: v0.7.1
646
647
647
648
* ` settings ` {Object}
648
649
649
- Emitted every time [ ` .setupParent () ` ] [ ] is called.
650
+ Emitted every time [ ` .setupPrimary () ` ] [ ] is called.
650
651
651
652
The ` settings ` object is the ` cluster.settings ` object at the time
652
- [ ` .setupParent () ` ] [ ] was called and is advisory only, since multiple calls to
653
- [ ` .setupParent () ` ] [ ] can be made in a single tick.
653
+ [ ` .setupPrimary () ` ] [ ] was called and is advisory only, since multiple calls to
654
+ [ ` .setupPrimary () ` ] [ ] can be made in a single tick.
654
655
655
656
If accuracy is important, use ` cluster.settings ` .
656
657
@@ -665,12 +666,12 @@ added: v0.7.7
665
666
Calls ` .disconnect() ` on each worker in ` cluster.workers ` .
666
667
667
668
When they are disconnected all internal handles will be closed, allowing the
668
- parent process to die gracefully if no other event is waiting.
669
+ primary process to die gracefully if no other event is waiting.
669
670
670
671
The method takes an optional callback argument which will be called when
671
672
finished.
672
673
673
- This can only be called from the parent process.
674
+ This can only be called from the primary process.
674
675
675
676
## ` cluster.fork([env]) `
676
677
<!-- YAML
@@ -682,26 +683,26 @@ added: v0.6.0
682
683
683
684
Spawn a new worker process.
684
685
685
- This can only be called from the parent process.
686
+ This can only be called from the primary process.
686
687
687
688
## ` cluster.isMaster `
688
689
<!-- YAML
689
690
added: v0.8.1
690
691
-->
691
692
692
- Deprecated alias for isMaster, see isParent for more
693
+ Deprecated alias for isMaster, see isPrimary for more
693
694
details.
694
695
695
- ## ` cluster.isParent `
696
+ ## ` cluster.isPrimary `
696
697
<!-- YAML
697
698
added: REPLACEME
698
699
-->
699
700
700
701
* {boolean}
701
702
702
- True if the process is a parent . This is determined
703
+ True if the process is a primary . This is determined
703
704
by the ` process.env.NODE_UNIQUE_ID ` . If ` process.env.NODE_UNIQUE_ID ` is
704
- undefined, then ` isParent ` is ` true ` .
705
+ undefined, then ` isPrimary ` is ` true ` .
705
706
706
707
## ` cluster.isWorker `
707
708
<!-- YAML
@@ -710,7 +711,7 @@ added: v0.6.0
710
711
711
712
* {boolean}
712
713
713
- True if the process is not a parent (it is the negation of ` cluster.isParent ` ).
714
+ True if the process is not a primary (it is the negation of ` cluster.isPrimary ` ).
714
715
715
716
## ` cluster.schedulingPolicy `
716
717
<!-- YAML
@@ -720,7 +721,7 @@ added: v0.11.2
720
721
The scheduling policy, either ` cluster.SCHED_RR ` for round-robin or
721
722
` cluster.SCHED_NONE ` to leave it to the operating system. This is a
722
723
global setting and effectively frozen once either the first worker is spawned,
723
- or [ ` .setupParent () ` ] [ ] is called, whichever comes first.
724
+ or [ ` .setupPrimary () ` ] [ ] is called, whichever comes first.
724
725
725
726
` SCHED_RR ` is the default on all operating systems except Windows.
726
727
Windows will change to ` SCHED_RR ` once libuv is able to effectively
@@ -775,11 +776,11 @@ changes:
775
776
* ` inspectPort ` {number|Function} Sets inspector port of worker.
776
777
This can be a number, or a function that takes no arguments and returns a
777
778
number. By default each worker gets its own port, incremented from the
778
- parent 's ` process.debugPort ` .
779
+ primary 's ` process.debugPort ` .
779
780
* ` windowsHide ` {boolean} Hide the forked processes console window that would
780
781
normally be created on Windows systems. ** Default:** ` false ` .
781
782
782
- After calling [ ` .setupParent () ` ] [ ] (or [ ` .fork() ` ] [ ] ) this settings object will
783
+ After calling [ ` .setupPrimary () ` ] [ ] (or [ ` .fork() ` ] [ ] ) this settings object will
783
784
contain the settings, including the default values.
784
785
785
786
This object is not intended to be changed or set manually.
@@ -793,44 +794,44 @@ changes:
793
794
description: The `stdio` option is supported now.
794
795
-->
795
796
796
- Deprecated alias for setupParent , see setupParent
797
+ Deprecated alias for setupPrimary , see setupPrimary
797
798
for more details.
798
799
799
- ## ` cluster.setupParent ([settings]) `
800
+ ## ` cluster.setupPrimary ([settings]) `
800
801
<!-- YAML
801
802
added: REPLACEME
802
803
-->
803
804
804
805
* ` settings ` {Object} See [ ` cluster.settings ` ] [ ] .
805
806
806
- ` setupParent ` is used to change the default 'fork' behavior. Once called,
807
+ ` setupPrimary ` is used to change the default 'fork' behavior. Once called,
807
808
the settings will be present in ` cluster.settings ` .
808
809
809
810
Any settings changes only affect future calls to [ ` .fork() ` ] [ ] and have no
810
811
effect on workers that are already running.
811
812
812
- The only attribute of a worker that cannot be set via ` .setupParent () ` is
813
+ The only attribute of a worker that cannot be set via ` .setupPrimary () ` is
813
814
the ` env ` passed to [ ` .fork() ` ] [ ] .
814
815
815
816
The defaults above apply to the first call only; the defaults for later
816
- calls are the current values at the time of ` cluster.setupParent () ` is called.
817
+ calls are the current values at the time of ` cluster.setupPrimary () ` is called.
817
818
818
819
``` js
819
820
const cluster = require (' cluster' );
820
- cluster .setupParent ({
821
+ cluster .setupPrimary ({
821
822
exec: ' worker.js' ,
822
823
args: [' --use' , ' https' ],
823
824
silent: true
824
825
});
825
826
cluster .fork (); // https worker
826
- cluster .setupParent ({
827
+ cluster .setupPrimary ({
827
828
exec: ' worker.js' ,
828
829
args: [' --use' , ' http' ]
829
830
});
830
831
cluster .fork (); // http worker
831
832
```
832
833
833
- This can only be called from the parent process.
834
+ This can only be called from the primary process.
834
835
835
836
## ` cluster.worker `
836
837
<!-- YAML
@@ -839,13 +840,13 @@ added: v0.7.0
839
840
840
841
* {Object}
841
842
842
- A reference to the current worker object. Not available in the parent process.
843
+ A reference to the current worker object. Not available in the primary process.
843
844
844
845
``` js
845
846
const cluster = require (' cluster' );
846
847
847
- if (cluster .isParent ) {
848
- console .log (' I am parent ' );
848
+ if (cluster .isPrimary ) {
849
+ console .log (' I am primary ' );
849
850
cluster .fork ();
850
851
cluster .fork ();
851
852
} else if (cluster .isWorker ) {
@@ -861,7 +862,7 @@ added: v0.7.0
861
862
* {Object}
862
863
863
864
A hash that stores the active worker objects, keyed by ` id ` field. Makes it
864
- easy to loop through all the workers. It is only available in the parent
865
+ easy to loop through all the workers. It is only available in the primary
865
866
process.
866
867
867
868
A worker is removed from ` cluster.workers ` after the worker has disconnected
@@ -892,7 +893,7 @@ socket.on('data', (id) => {
892
893
[ Advanced serialization for `child_process` ] : child_process.md#child_process_advanced_serialization
893
894
[ Child Process module ] : child_process.md#child_process_child_process_fork_modulepath_args_options
894
895
[ `.fork()` ] : #cluster_cluster_fork_env
895
- [ `.setupParent ()` ] : #cluster_cluster_setupparent_settings
896
+ [ `.setupPrimary ()` ] : #cluster_cluster_setupprimary_settings
896
897
[ `ChildProcess.send()` ] : child_process.md#child_process_subprocess_send_message_sendhandle_options_callback
897
898
[ `child_process.fork()` ] : child_process.md#child_process_child_process_fork_modulepath_args_options
898
899
[ `child_process` event: `'exit'` ] : child_process.md#child_process_event_exit
0 commit comments