-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node start uncontrolled paralel process #8362
Comments
This sounds a problem with your application. We may be able to help you if you can post code that reproduces the problem, ideally without dependencies. However, your question is much better suited for the "help" repo: https://github.com/nodejs/help |
Not sure. Look below...I run 31 procedure for each row, and look what happened after row 883...suddenly another thread started from the beginning, and current thread continued with the execution. There is no way I could start that 2nd thread in the application |
Version 6.5.0
MEAN application
I am processing 3000 rows, there are 10 procedures in router (waterfall). I put console.log (rownumber) to track the processing. Somewhere about 1500th row (it is not always the same row) another process is starting to process rows from the beginning while existing process continues to excute. So I am getting something like:
1476
1477
1478
1479
1 - here new process starts suddenly
1480 - the existing process continues with execution
2
1481
3
...
And so on until second cycle is completed. The issue is not happening if I have like 500 rows to import. It starts after 1500-1600. Thoughts? Any help will be greatly appreciated
The text was updated successfully, but these errors were encountered: