在执行worker = cluster.fork()
时,我希望能够将stdout和stderr流转发到主Node.js进程中。
我怎样才能做到这一点?
我试着做:
worker = cluster.fork();
worker.process.stdout.pipe(process.stdout)
// ^ this is null
一种解决方法是使用消息,但我希望能够流式传输内容。
worker.on("message", function(msg){
console.log("Master says:" + msg);
});
...
worker.send({message:'hello'});
如何访问分叉进程/集群的标准输出?
最佳答案
请参见下面的代码
对于主流程:
const cluster = require('cluster');
cluster.settings.stdio=[0, 1, 2, 'ipc'];
cluster.settings.silent = true; //Whether or not to send output to parent's stdio. Default: false.
cluster.settings.exec = './hello' //the forked process's file path
const childW = cluster.fork();
const child = childW.process;
对于分叉的过程:
./hello.js
console.log('hello')
关于javascript - 如何将输出的 fork /集群过程通过管道传递到主stdout/stderr,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52846069/