Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

in HTTP mode, does node.js have substantial performance advantage over Java?

I just started to code in node.js for a little while. Now here is one of my questions about it:

In HTTP apps, given the request-response model, the single app thread is blocked until all the back end tasks are done and response is returned to the client, so the performance improvement seems to be limited only to fine-tuning back end things like parallelizing IO requests. (Well, this improvement matters when it comes to many heavy and independent IO operations being involved, but usually the condition also implies that by redesigning the data structure you could eliminate a large number of IO request and, possibly, end up with even better performance than just issuing parallelized operations.)

If that is true, how could it produce superior performance than those frameworks based on Java (or PHP, python, etc.) do?

I also referred to an article Understanding the node.js event loop, which also explains that situation:

It really is a single thread running: you can’t do any parallel code execution; doing a “sleep” for example will block the server for one second:

while(new Date().getTime() < now + 1000) {
   // do nothing
}

…however, everything runs in parallel except your code.

I personally verified that by putting exact the "sleep" code into one IO callback closure, and tried submitting a request leading to this callback, then submitted another one. Both requests will trigger a console log when it is processed. And my observation is that the later was blocked until the former returned a response.

So, does it imply that only in socket mode, where both sides can emit events and push messages to each other at any time, would the full power of its asynchronous processing capability be utilized?

I'm a little confused about that. Any comment or advice is welcome. Thanks!

update

I ask this question because some performance evaluation cases are reported, for instance Node.js is taking over the Enterprise – whether you like it or not, and LinkedIn Moved from Rails to Node: 27 Servers Cut and Up to 20x Faster. Some radical opinion claims that J2EE will be totally replaced: J2EE is Dead: Long-live Javascript Backed by JSON Services.

like image 449
coderLMN Avatar asked Apr 27 '13 14:04

coderLMN


People also ask

Is NodeJS faster than Java?

While NodeJS is nearly 5X better performant than Python and Ruby, there is not a lot of difference between the performance of Java and NodeJS.

How node js is better than Java?

It's simpler than Java. It's ideal for full-stack developers. It offers faster and easier code writing. It has a node package manager, letting you store many libraries in one line.

What is the biggest advantage in using node JS?

Node. js offers numerous benefits for web app development such as high scalability, ease of learning, extraordinary performance, profound extensiveness, active support from a large community of developers, among others.

Is Node JS good for performance?

Thanks to Node. js, customer service experience and satisfaction can be increased efficiently, easily, and at a considerably low cost. Interestingly, this runtime environment can be used on both the web server and browser sides, with many open-source modules available, which makes it even more useful and beneficial.

What is the use of HTTP in node JS?

Node.js has a built-in module called HTTP, which allows Node.js to transfer data over the Hyper Text Transfer Protocol (HTTP).

Is node js more scalable than Java?

For example, you can develop an application in Java and link to it with JavaScript through an engine like Rhinorun. However, in a real-world scenario, picking Node. js for your web application makes more sense. It's just faster and more scalable than Java, when it comes to web apps.


2 Answers

NodeJS uses libuv, so IO operations are non-blocking. Yes, your Node app uses 1 thread, however, all the IO requests are pushed to an event queue. Then when the request is made, it is obvious that its response will not be read from socket, file etc. at zero-time. So, whatever is ready in the queue is popped and it is handled. In the mean time, your requests can be answered, there might be chunks or full data to be read, however they are just waiting in the queue to be processed. This goes on until there is no event remains, or the open sockets are closed. Then the NodeJS can finally end its execution.

As you see, NodeJS is not like other frameworks, pretty different. If you have a long going and Non-IO operation, so it is blocking, like matrix operations, image&video processing, you can spawn another processes and assign them the job, use message passing, the way you like TCP, IPC.

The main point of NodeJS is to remove unncesseary context switches which brings significant overhead when not used properly. In NodeJS, why would you want context switches? All the jobs are pushed to event queue and they are probably small in computation, since all they do to make multiple IO/s, (read from db, update db, write to client, write to bare TCP socket, read from cache), it is not logical to stop them in the middle and switch to another job. So with the help of libuv, whichever IO is ready can be executed right now.

For reference please look at libuv documentation: http://nikhilm.github.io/uvbook/basics.html#event-loops

like image 138
Mustafa Avatar answered Sep 27 '22 17:09

Mustafa


I have also noticed a lot of radical opinions regarding Node.js performance when compared to Java. From a queuing theory perspective, I was skeptical how a single thread with no blocking could out perform multiple threads that blocked. I thought that I would conduct my own investigation into just how well Node.js performed against a more established and mature technology.

I evaluated Node.js by writing a functionally identical, multiple datasource micro-service both in Node.js and in DropWizard / Java then subjected both implementions to the same load test. I collected performance measurements of the results from both tests and analyzed the data.

At one fifth the code size, Node.js had comparable latency and 16% lower throughput than DropWizard.

I can see how Node.js has caught on with early stage start-up companies. It is easier to write micro-services very quickly in Node.js and get them running than it is with Java. As companies mature, their focus tends to shift from finding product / market fit to improving economies of scale. This might explain why more established companies prefer Java with its higher scalability.

like image 23
Glenn Avatar answered Sep 27 '22 17:09

Glenn