Node JS and Express is mixing processingHow to append to a file in Node?Node / Express: EADDRINUSE, Address already in use - Kill serverHow to process POST data in Node.js?How to run Node.js as a background process and never die?What is Node.js' Connect, Express and “middleware”?How to uninstall npm modules in node js?Proper way to return JSON using node or ExpressCannot install packages using node package manager in Ubuntunode how to create a directory if doesn't exist?pg-promise db call returning undefined in 'then' function
Why do distances seem to matter in the Foundation world?
Why did Rep. Omar conclude her criticism of US troops with the phrase "NotTodaySatan"?
Philosophical question on logistic regression: why isn't the optimal threshold value trained?
My admission is revoked after accepting the admission offer
An array in a equation with curly braces in both sides
Injection into a proper class and choice without regularity
Which big number is bigger?
Why do games have consumables?
"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?
Is there a word for the censored part of a video?
Why did C use the -> operator instead of reusing the . operator?
What to do with someone that cheated their way through university and a PhD program?
Rudin 2.10 (b) Example
Don’t seats that recline flat defeat the purpose of having seatbelts?
Is there metaphorical meaning of "aus der Haft entlassen"?
What is the most expensive material in the world that could be used to create Pun-Pun's lute?
I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?
Does a large simulator bay have standard public address announcements?
What does "function" actually mean in music?
How to have a sharp product image?
Can someone publish a story that happened to you?
"The cow" OR "a cow" OR "cows" in this context
How long after the last departure shall the airport stay open for an emergency return?
Retract an already submitted recommendation letter (written for an undergrad student)
Node JS and Express is mixing processing
How to append to a file in Node?Node / Express: EADDRINUSE, Address already in use - Kill serverHow to process POST data in Node.js?How to run Node.js as a background process and never die?What is Node.js' Connect, Express and “middleware”?How to uninstall npm modules in node js?Proper way to return JSON using node or ExpressCannot install packages using node package manager in Ubuntunode how to create a directory if doesn't exist?pg-promise db call returning undefined in 'then' function
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am new to this world of NodeJS and I have a question about the processing of the JS node with the use of express ...
Problem: I am running a routine that I created to compile data from 2 api of 2 sectors and in the routine I make the data come from 1 type only by changing the sector identifier ... when I squeeze from a sector it is processing normal and inserts the data right so if I call to process the 2 sectors at the same time the routine gets mixed up the data of the sectors.
In php if I do this it does not mix the data it does both independent processing.
Example of data:
Call sector 1
"key": 12045,
"tittle": "Help with my pc",
"sector": 1
Call sector 2
"key": "Task-I12",
"tittle": "License expire",
"sector": 2
when processing processing together it blends data from sector 1 with 2 as 1 processing
"key": 12045,
"tittle": "License expire",
"sector": 1
Exemplo Code:
app.get('/api/up',async (req, res) =>
populateData = await PopulateDataBug.populate(req.query).then(result =>
return result;
);
res.send( populateData );
);
async function populate(req)
let tasks = ;
if(req.sector == 2)
tasks = await getFromHelpDesk();
else
tasks = await getFromTI();
for (let index = 0; index < tasks.length; index++)
const bug = tasks[index];
let sql = `INSERT INTO bi_task_data (task_data_id,task_date,task_data_sector)
VALUES ('$bug.id','$bug.closed_time',$sector)`;
await MysqlConn.query(sql).then(r =>
return r
);
return tasks;
node.js nodejs-server
|
show 2 more comments
I am new to this world of NodeJS and I have a question about the processing of the JS node with the use of express ...
Problem: I am running a routine that I created to compile data from 2 api of 2 sectors and in the routine I make the data come from 1 type only by changing the sector identifier ... when I squeeze from a sector it is processing normal and inserts the data right so if I call to process the 2 sectors at the same time the routine gets mixed up the data of the sectors.
In php if I do this it does not mix the data it does both independent processing.
Example of data:
Call sector 1
"key": 12045,
"tittle": "Help with my pc",
"sector": 1
Call sector 2
"key": "Task-I12",
"tittle": "License expire",
"sector": 2
when processing processing together it blends data from sector 1 with 2 as 1 processing
"key": 12045,
"tittle": "License expire",
"sector": 1
Exemplo Code:
app.get('/api/up',async (req, res) =>
populateData = await PopulateDataBug.populate(req.query).then(result =>
return result;
);
res.send( populateData );
);
async function populate(req)
let tasks = ;
if(req.sector == 2)
tasks = await getFromHelpDesk();
else
tasks = await getFromTI();
for (let index = 0; index < tasks.length; index++)
const bug = tasks[index];
let sql = `INSERT INTO bi_task_data (task_data_id,task_date,task_data_sector)
VALUES ('$bug.id','$bug.closed_time',$sector)`;
await MysqlConn.query(sql).then(r =>
return r
);
return tasks;
node.js nodejs-server
Could you please explain it a bit more because I am not understanding what your actual requirement is? I have some considerable experience in node.js and express so I might be able to help you out, once I get what you actually want help with.
– Kiran Mathew Mohan
Mar 22 at 17:02
@KiranMathewMohan Every 10 minutes I call 2 API to get data from different sectors and convert to the same object just changing the sector field to identify where it came from Every 10 minutes it runs the link /up?sector=1 and at the same time I call the /up?sector=2 calling different APIs, converting the data and inserting into the base If I do this in a PHP backend it does split processing without mixing When I did it on NodeJS + Express it runs like 1 processing, even when I call with different parameters it ends up creating records in the database with sector 1 data in sector 2
– Marconi Tenório
Mar 22 at 17:16
Could you please post the code, maybe then I can help you, because I think I got your point but honestly can't say anything for sure without seeing the implementation.
– Kiran Mathew Mohan
Mar 22 at 17:21
II was reading apparently it's the thread problem PHP does multi threads and the node is single theread so the data blending.
– Marconi Tenório
Mar 22 at 17:34
Yes Node.js is single threaded but if you want to take advantage of multi-cores. Refer clustering in Node.js
– Kiran Mathew Mohan
Mar 22 at 17:39
|
show 2 more comments
I am new to this world of NodeJS and I have a question about the processing of the JS node with the use of express ...
Problem: I am running a routine that I created to compile data from 2 api of 2 sectors and in the routine I make the data come from 1 type only by changing the sector identifier ... when I squeeze from a sector it is processing normal and inserts the data right so if I call to process the 2 sectors at the same time the routine gets mixed up the data of the sectors.
In php if I do this it does not mix the data it does both independent processing.
Example of data:
Call sector 1
"key": 12045,
"tittle": "Help with my pc",
"sector": 1
Call sector 2
"key": "Task-I12",
"tittle": "License expire",
"sector": 2
when processing processing together it blends data from sector 1 with 2 as 1 processing
"key": 12045,
"tittle": "License expire",
"sector": 1
Exemplo Code:
app.get('/api/up',async (req, res) =>
populateData = await PopulateDataBug.populate(req.query).then(result =>
return result;
);
res.send( populateData );
);
async function populate(req)
let tasks = ;
if(req.sector == 2)
tasks = await getFromHelpDesk();
else
tasks = await getFromTI();
for (let index = 0; index < tasks.length; index++)
const bug = tasks[index];
let sql = `INSERT INTO bi_task_data (task_data_id,task_date,task_data_sector)
VALUES ('$bug.id','$bug.closed_time',$sector)`;
await MysqlConn.query(sql).then(r =>
return r
);
return tasks;
node.js nodejs-server
I am new to this world of NodeJS and I have a question about the processing of the JS node with the use of express ...
Problem: I am running a routine that I created to compile data from 2 api of 2 sectors and in the routine I make the data come from 1 type only by changing the sector identifier ... when I squeeze from a sector it is processing normal and inserts the data right so if I call to process the 2 sectors at the same time the routine gets mixed up the data of the sectors.
In php if I do this it does not mix the data it does both independent processing.
Example of data:
Call sector 1
"key": 12045,
"tittle": "Help with my pc",
"sector": 1
Call sector 2
"key": "Task-I12",
"tittle": "License expire",
"sector": 2
when processing processing together it blends data from sector 1 with 2 as 1 processing
"key": 12045,
"tittle": "License expire",
"sector": 1
Exemplo Code:
app.get('/api/up',async (req, res) =>
populateData = await PopulateDataBug.populate(req.query).then(result =>
return result;
);
res.send( populateData );
);
async function populate(req)
let tasks = ;
if(req.sector == 2)
tasks = await getFromHelpDesk();
else
tasks = await getFromTI();
for (let index = 0; index < tasks.length; index++)
const bug = tasks[index];
let sql = `INSERT INTO bi_task_data (task_data_id,task_date,task_data_sector)
VALUES ('$bug.id','$bug.closed_time',$sector)`;
await MysqlConn.query(sql).then(r =>
return r
);
return tasks;
node.js nodejs-server
node.js nodejs-server
edited Mar 22 at 17:51
Marconi Tenório
asked Mar 22 at 16:48
Marconi TenórioMarconi Tenório
11
11
Could you please explain it a bit more because I am not understanding what your actual requirement is? I have some considerable experience in node.js and express so I might be able to help you out, once I get what you actually want help with.
– Kiran Mathew Mohan
Mar 22 at 17:02
@KiranMathewMohan Every 10 minutes I call 2 API to get data from different sectors and convert to the same object just changing the sector field to identify where it came from Every 10 minutes it runs the link /up?sector=1 and at the same time I call the /up?sector=2 calling different APIs, converting the data and inserting into the base If I do this in a PHP backend it does split processing without mixing When I did it on NodeJS + Express it runs like 1 processing, even when I call with different parameters it ends up creating records in the database with sector 1 data in sector 2
– Marconi Tenório
Mar 22 at 17:16
Could you please post the code, maybe then I can help you, because I think I got your point but honestly can't say anything for sure without seeing the implementation.
– Kiran Mathew Mohan
Mar 22 at 17:21
II was reading apparently it's the thread problem PHP does multi threads and the node is single theread so the data blending.
– Marconi Tenório
Mar 22 at 17:34
Yes Node.js is single threaded but if you want to take advantage of multi-cores. Refer clustering in Node.js
– Kiran Mathew Mohan
Mar 22 at 17:39
|
show 2 more comments
Could you please explain it a bit more because I am not understanding what your actual requirement is? I have some considerable experience in node.js and express so I might be able to help you out, once I get what you actually want help with.
– Kiran Mathew Mohan
Mar 22 at 17:02
@KiranMathewMohan Every 10 minutes I call 2 API to get data from different sectors and convert to the same object just changing the sector field to identify where it came from Every 10 minutes it runs the link /up?sector=1 and at the same time I call the /up?sector=2 calling different APIs, converting the data and inserting into the base If I do this in a PHP backend it does split processing without mixing When I did it on NodeJS + Express it runs like 1 processing, even when I call with different parameters it ends up creating records in the database with sector 1 data in sector 2
– Marconi Tenório
Mar 22 at 17:16
Could you please post the code, maybe then I can help you, because I think I got your point but honestly can't say anything for sure without seeing the implementation.
– Kiran Mathew Mohan
Mar 22 at 17:21
II was reading apparently it's the thread problem PHP does multi threads and the node is single theread so the data blending.
– Marconi Tenório
Mar 22 at 17:34
Yes Node.js is single threaded but if you want to take advantage of multi-cores. Refer clustering in Node.js
– Kiran Mathew Mohan
Mar 22 at 17:39
Could you please explain it a bit more because I am not understanding what your actual requirement is? I have some considerable experience in node.js and express so I might be able to help you out, once I get what you actually want help with.
– Kiran Mathew Mohan
Mar 22 at 17:02
Could you please explain it a bit more because I am not understanding what your actual requirement is? I have some considerable experience in node.js and express so I might be able to help you out, once I get what you actually want help with.
– Kiran Mathew Mohan
Mar 22 at 17:02
@KiranMathewMohan Every 10 minutes I call 2 API to get data from different sectors and convert to the same object just changing the sector field to identify where it came from Every 10 minutes it runs the link /up?sector=1 and at the same time I call the /up?sector=2 calling different APIs, converting the data and inserting into the base If I do this in a PHP backend it does split processing without mixing When I did it on NodeJS + Express it runs like 1 processing, even when I call with different parameters it ends up creating records in the database with sector 1 data in sector 2
– Marconi Tenório
Mar 22 at 17:16
@KiranMathewMohan Every 10 minutes I call 2 API to get data from different sectors and convert to the same object just changing the sector field to identify where it came from Every 10 minutes it runs the link /up?sector=1 and at the same time I call the /up?sector=2 calling different APIs, converting the data and inserting into the base If I do this in a PHP backend it does split processing without mixing When I did it on NodeJS + Express it runs like 1 processing, even when I call with different parameters it ends up creating records in the database with sector 1 data in sector 2
– Marconi Tenório
Mar 22 at 17:16
Could you please post the code, maybe then I can help you, because I think I got your point but honestly can't say anything for sure without seeing the implementation.
– Kiran Mathew Mohan
Mar 22 at 17:21
Could you please post the code, maybe then I can help you, because I think I got your point but honestly can't say anything for sure without seeing the implementation.
– Kiran Mathew Mohan
Mar 22 at 17:21
II was reading apparently it's the thread problem PHP does multi threads and the node is single theread so the data blending.
– Marconi Tenório
Mar 22 at 17:34
II was reading apparently it's the thread problem PHP does multi threads and the node is single theread so the data blending.
– Marconi Tenório
Mar 22 at 17:34
Yes Node.js is single threaded but if you want to take advantage of multi-cores. Refer clustering in Node.js
– Kiran Mathew Mohan
Mar 22 at 17:39
Yes Node.js is single threaded but if you want to take advantage of multi-cores. Refer clustering in Node.js
– Kiran Mathew Mohan
Mar 22 at 17:39
|
show 2 more comments
0
active
oldest
votes
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%2f55304320%2fnode-js-and-express-is-mixing-processing%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f55304320%2fnode-js-and-express-is-mixing-processing%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
Could you please explain it a bit more because I am not understanding what your actual requirement is? I have some considerable experience in node.js and express so I might be able to help you out, once I get what you actually want help with.
– Kiran Mathew Mohan
Mar 22 at 17:02
@KiranMathewMohan Every 10 minutes I call 2 API to get data from different sectors and convert to the same object just changing the sector field to identify where it came from Every 10 minutes it runs the link /up?sector=1 and at the same time I call the /up?sector=2 calling different APIs, converting the data and inserting into the base If I do this in a PHP backend it does split processing without mixing When I did it on NodeJS + Express it runs like 1 processing, even when I call with different parameters it ends up creating records in the database with sector 1 data in sector 2
– Marconi Tenório
Mar 22 at 17:16
Could you please post the code, maybe then I can help you, because I think I got your point but honestly can't say anything for sure without seeing the implementation.
– Kiran Mathew Mohan
Mar 22 at 17:21
II was reading apparently it's the thread problem PHP does multi threads and the node is single theread so the data blending.
– Marconi Tenório
Mar 22 at 17:34
Yes Node.js is single threaded but if you want to take advantage of multi-cores. Refer clustering in Node.js
– Kiran Mathew Mohan
Mar 22 at 17:39