I have a collector system written and compiled in c++, which collects data coming from various sources. (It forks out parallel threads to do the work)
So I run this compiled binary and it collects data and write to different files. The speed at which the data flows to it is around 10 Gbps and writing is also at the same speed (as we write everything without drop).
Now rather than manually running the binary I want to call the main function of that code through GUI/Web Interface. So I read over the internet and thought of using Node.js.
Can you guys please suggest if it will cause my system to slow down (as this is the case of high I/o), I cannot take the slow down under any circumstance.
I am not sure what internally will happen if JavaScript of Node.js calls main function.
Any other idea is also totally welcome.