Multiple AWS Instances and Node events The 2019 Stack Overflow Developer Survey Results Are InNodeJS process communication - (via a text file?)How to decide when to use Node.js?Grasping the Node JS alternative to multithreadingnode.js event emitters binding to mulitple instancesstop all instances of node.js serverHow the single threaded non blocking IO model works in Node.jsNode EventEmitter to EventEmitter emits. Multiple emittersKeep event listeners alive after script completion in Node jsNode emitter : how to properly design event listenersNode event emitter with conditionNode.js: Sharing an object between multiple files
What do hard-Brexiteers want with respect to the Irish border?
Is bread bad for ducks?
Why “相同意思的词” is called “同义词” instead of "同意词"?
How can I have a shield and a way of attacking with a ranged weapon at the same time?
Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?
Correct punctuation for showing a character's confusion
What is the most efficient way to store a numeric range?
What is preventing me from simply constructing a hash that's lower than the current target?
Why not take a picture of a closer black hole?
Did any laptop computers have a built-in 5 1/4 inch floppy drive?
Are spiders unable to hurt humans, especially very small spiders?
How come people say “Would of”?
Short story: man watches girlfriend's spaceship entering a 'black hole' (?) forever
Does adding complexity mean a more secure cipher?
Why couldn't they take pictures of a closer black hole?
Keeping a retro style to sci-fi spaceships?
What do these terms in Caesar's Gallic Wars mean?
A word that means fill it to the required quantity
If my opponent casts Ultimate Price on my Phantasmal Bear, can I save it by casting Snap or Curfew?
Why can't devices on different VLANs, but on the same subnet, communicate?
Ubuntu Server install with full GUI
What is this sharp, curved notch on my knife for?
How to type this arrow in math mode?
How to support a colleague who finds meetings extremely tiring?
Multiple AWS Instances and Node events
The 2019 Stack Overflow Developer Survey Results Are InNodeJS process communication - (via a text file?)How to decide when to use Node.js?Grasping the Node JS alternative to multithreadingnode.js event emitters binding to mulitple instancesstop all instances of node.js serverHow the single threaded non blocking IO model works in Node.jsNode EventEmitter to EventEmitter emits. Multiple emittersKeep event listeners alive after script completion in Node jsNode emitter : how to properly design event listenersNode event emitter with conditionNode.js: Sharing an object between multiple files
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have an implementation in node where an API when called does some processing and waits for an event from another function before returning the response. This works fine when ran locally and when running in a single instance in AWS but when multiple instances are involved there are some issues which I'm assuming is because the API is being called from one instance and the emitter is being emitted in another instance. Is there any way to keep the listeners and emitters same across all instances?
node.js amazon-web-services amazon-elastic-beanstalk
add a comment |
I have an implementation in node where an API when called does some processing and waits for an event from another function before returning the response. This works fine when ran locally and when running in a single instance in AWS but when multiple instances are involved there are some issues which I'm assuming is because the API is being called from one instance and the emitter is being emitted in another instance. Is there any way to keep the listeners and emitters same across all instances?
node.js amazon-web-services amazon-elastic-beanstalk
add a comment |
I have an implementation in node where an API when called does some processing and waits for an event from another function before returning the response. This works fine when ran locally and when running in a single instance in AWS but when multiple instances are involved there are some issues which I'm assuming is because the API is being called from one instance and the emitter is being emitted in another instance. Is there any way to keep the listeners and emitters same across all instances?
node.js amazon-web-services amazon-elastic-beanstalk
I have an implementation in node where an API when called does some processing and waits for an event from another function before returning the response. This works fine when ran locally and when running in a single instance in AWS but when multiple instances are involved there are some issues which I'm assuming is because the API is being called from one instance and the emitter is being emitted in another instance. Is there any way to keep the listeners and emitters same across all instances?
node.js amazon-web-services amazon-elastic-beanstalk
node.js amazon-web-services amazon-elastic-beanstalk
asked Mar 22 at 4:52
VinaayakhVinaayakh
199311
199311
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
AFAIU you think that event emitted from one process is being handled in a different process, but it never would be the case from what I know because each process has its own memory and also events would be associated with the process only.
I have added a sample code that demonstrates what I meant by it. Maybe if you post the code you are referring to, we could check what went wrong.
const cluster = require("cluster");
const EventEmitter = require("events");
if (cluster.isMaster)
cluster.fork();
const myEE = new EventEmitter();
myEE.on("foo", arg =>
console.log("emitted from ", arg, "received in master")
);
setTimeout(() =>
myEE.emit("foo", "master");
, 1000);
else
const myEE = new EventEmitter();
myEE.on("foo", arg => console.log("emitted from", arg, "received in worker"));
setTimeout(() =>
myEE.emit("foo", "client");
, 2000);
Hi Kiran, I tried this implementation but the issue I'm facing is that if an event is emitted in a fork, then all the other listeners in the other forks should also be able to receive the event and process it. Is this possible?
– Vinaayakh
Mar 29 at 6:23
@Vinaayakh I think your requirement is different from what you have stated in the question, neverthless I can suggest some solutions for your requirement. Either you can do is send a message from worker usingprocess.send(msg);
and let master resend the message to all other workers usingworker.send('hi there');
. or the best and preferred way is to setup a pub/sub using redis(redis.io/topics/pubsub) or node-ipc(npmjs.com/package/node-ipc). Please refer this for more idea stackoverflow.com/questions/55400905/…
– Kiran Mathew Mohan
Mar 29 at 6:34
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55293114%2fmultiple-aws-instances-and-node-events%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
AFAIU you think that event emitted from one process is being handled in a different process, but it never would be the case from what I know because each process has its own memory and also events would be associated with the process only.
I have added a sample code that demonstrates what I meant by it. Maybe if you post the code you are referring to, we could check what went wrong.
const cluster = require("cluster");
const EventEmitter = require("events");
if (cluster.isMaster)
cluster.fork();
const myEE = new EventEmitter();
myEE.on("foo", arg =>
console.log("emitted from ", arg, "received in master")
);
setTimeout(() =>
myEE.emit("foo", "master");
, 1000);
else
const myEE = new EventEmitter();
myEE.on("foo", arg => console.log("emitted from", arg, "received in worker"));
setTimeout(() =>
myEE.emit("foo", "client");
, 2000);
Hi Kiran, I tried this implementation but the issue I'm facing is that if an event is emitted in a fork, then all the other listeners in the other forks should also be able to receive the event and process it. Is this possible?
– Vinaayakh
Mar 29 at 6:23
@Vinaayakh I think your requirement is different from what you have stated in the question, neverthless I can suggest some solutions for your requirement. Either you can do is send a message from worker usingprocess.send(msg);
and let master resend the message to all other workers usingworker.send('hi there');
. or the best and preferred way is to setup a pub/sub using redis(redis.io/topics/pubsub) or node-ipc(npmjs.com/package/node-ipc). Please refer this for more idea stackoverflow.com/questions/55400905/…
– Kiran Mathew Mohan
Mar 29 at 6:34
add a comment |
AFAIU you think that event emitted from one process is being handled in a different process, but it never would be the case from what I know because each process has its own memory and also events would be associated with the process only.
I have added a sample code that demonstrates what I meant by it. Maybe if you post the code you are referring to, we could check what went wrong.
const cluster = require("cluster");
const EventEmitter = require("events");
if (cluster.isMaster)
cluster.fork();
const myEE = new EventEmitter();
myEE.on("foo", arg =>
console.log("emitted from ", arg, "received in master")
);
setTimeout(() =>
myEE.emit("foo", "master");
, 1000);
else
const myEE = new EventEmitter();
myEE.on("foo", arg => console.log("emitted from", arg, "received in worker"));
setTimeout(() =>
myEE.emit("foo", "client");
, 2000);
Hi Kiran, I tried this implementation but the issue I'm facing is that if an event is emitted in a fork, then all the other listeners in the other forks should also be able to receive the event and process it. Is this possible?
– Vinaayakh
Mar 29 at 6:23
@Vinaayakh I think your requirement is different from what you have stated in the question, neverthless I can suggest some solutions for your requirement. Either you can do is send a message from worker usingprocess.send(msg);
and let master resend the message to all other workers usingworker.send('hi there');
. or the best and preferred way is to setup a pub/sub using redis(redis.io/topics/pubsub) or node-ipc(npmjs.com/package/node-ipc). Please refer this for more idea stackoverflow.com/questions/55400905/…
– Kiran Mathew Mohan
Mar 29 at 6:34
add a comment |
AFAIU you think that event emitted from one process is being handled in a different process, but it never would be the case from what I know because each process has its own memory and also events would be associated with the process only.
I have added a sample code that demonstrates what I meant by it. Maybe if you post the code you are referring to, we could check what went wrong.
const cluster = require("cluster");
const EventEmitter = require("events");
if (cluster.isMaster)
cluster.fork();
const myEE = new EventEmitter();
myEE.on("foo", arg =>
console.log("emitted from ", arg, "received in master")
);
setTimeout(() =>
myEE.emit("foo", "master");
, 1000);
else
const myEE = new EventEmitter();
myEE.on("foo", arg => console.log("emitted from", arg, "received in worker"));
setTimeout(() =>
myEE.emit("foo", "client");
, 2000);
AFAIU you think that event emitted from one process is being handled in a different process, but it never would be the case from what I know because each process has its own memory and also events would be associated with the process only.
I have added a sample code that demonstrates what I meant by it. Maybe if you post the code you are referring to, we could check what went wrong.
const cluster = require("cluster");
const EventEmitter = require("events");
if (cluster.isMaster)
cluster.fork();
const myEE = new EventEmitter();
myEE.on("foo", arg =>
console.log("emitted from ", arg, "received in master")
);
setTimeout(() =>
myEE.emit("foo", "master");
, 1000);
else
const myEE = new EventEmitter();
myEE.on("foo", arg => console.log("emitted from", arg, "received in worker"));
setTimeout(() =>
myEE.emit("foo", "client");
, 2000);
answered Mar 22 at 5:38
Kiran Mathew MohanKiran Mathew Mohan
573213
573213
Hi Kiran, I tried this implementation but the issue I'm facing is that if an event is emitted in a fork, then all the other listeners in the other forks should also be able to receive the event and process it. Is this possible?
– Vinaayakh
Mar 29 at 6:23
@Vinaayakh I think your requirement is different from what you have stated in the question, neverthless I can suggest some solutions for your requirement. Either you can do is send a message from worker usingprocess.send(msg);
and let master resend the message to all other workers usingworker.send('hi there');
. or the best and preferred way is to setup a pub/sub using redis(redis.io/topics/pubsub) or node-ipc(npmjs.com/package/node-ipc). Please refer this for more idea stackoverflow.com/questions/55400905/…
– Kiran Mathew Mohan
Mar 29 at 6:34
add a comment |
Hi Kiran, I tried this implementation but the issue I'm facing is that if an event is emitted in a fork, then all the other listeners in the other forks should also be able to receive the event and process it. Is this possible?
– Vinaayakh
Mar 29 at 6:23
@Vinaayakh I think your requirement is different from what you have stated in the question, neverthless I can suggest some solutions for your requirement. Either you can do is send a message from worker usingprocess.send(msg);
and let master resend the message to all other workers usingworker.send('hi there');
. or the best and preferred way is to setup a pub/sub using redis(redis.io/topics/pubsub) or node-ipc(npmjs.com/package/node-ipc). Please refer this for more idea stackoverflow.com/questions/55400905/…
– Kiran Mathew Mohan
Mar 29 at 6:34
Hi Kiran, I tried this implementation but the issue I'm facing is that if an event is emitted in a fork, then all the other listeners in the other forks should also be able to receive the event and process it. Is this possible?
– Vinaayakh
Mar 29 at 6:23
Hi Kiran, I tried this implementation but the issue I'm facing is that if an event is emitted in a fork, then all the other listeners in the other forks should also be able to receive the event and process it. Is this possible?
– Vinaayakh
Mar 29 at 6:23
@Vinaayakh I think your requirement is different from what you have stated in the question, neverthless I can suggest some solutions for your requirement. Either you can do is send a message from worker using
process.send(msg);
and let master resend the message to all other workers using worker.send('hi there');
. or the best and preferred way is to setup a pub/sub using redis(redis.io/topics/pubsub) or node-ipc(npmjs.com/package/node-ipc). Please refer this for more idea stackoverflow.com/questions/55400905/…– Kiran Mathew Mohan
Mar 29 at 6:34
@Vinaayakh I think your requirement is different from what you have stated in the question, neverthless I can suggest some solutions for your requirement. Either you can do is send a message from worker using
process.send(msg);
and let master resend the message to all other workers using worker.send('hi there');
. or the best and preferred way is to setup a pub/sub using redis(redis.io/topics/pubsub) or node-ipc(npmjs.com/package/node-ipc). Please refer this for more idea stackoverflow.com/questions/55400905/…– Kiran Mathew Mohan
Mar 29 at 6:34
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55293114%2fmultiple-aws-instances-and-node-events%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown