如何将输出分叉/集群进程通过管道传输到主标准输出/标准



在执行worker = cluster.fork()时,我希望能够将标准输出和标准输出流转发到主节点.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')

相关内容

  • 没有找到相关文章

最新更新