Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any benchmark or comparison which is faster: place nginx in front of node and let it serve static files directly or use just node and serve static files using it?

nginx solution seems to be more manageable for me, any thoughts?

share|improve this question
2  
I would say it also depends on the amount of configuration and code you have to write to use one server over the other. If you don't expect to go IPO and your app server is already configured and doing everything you need, then you could just stick with it until it's not enough. – m33lky Apr 2 '12 at 21:44

4 Answers

up vote 19 down vote accepted

I'll have to disagree with the answers here. While Node will do fine, nginx will most definitely be faster when configured correctly. nginx is implemented efficiently in C following a similar pattern (returning to a connection only when needed) with a tiny memory footprint. Moreover, it supports the sendfile syscall to serve those files which is as fast as you can possibly get at serving files, since it's the OS kernel itself that's doing the job.

By now nginx has become the de facto standard as the frontend server. You can use it for its performance in serving static files, gzip, SSL, and even load-balancing later on.

P.S.: This assumes that files are really "static" as in at rest on disk at the time of the request.

share|improve this answer
1  
Just a minor note: node.js also supports sendfile - but it seems you have to write some code, see eg. blog.std.in/2010/09/09/using-sendfile-with-nodejs – tuomassalo Apr 9 '12 at 19:14
Outside of serving static content, why does Nginx performance better than just exposing the main web server (Tomcat/Jetty/IIS, etc) on the public-facing domain? – Raffian May 1 '12 at 18:16
If a request is made to your app, that request won't be made magically faster by routing it through nginx first (it can be noticeably faster in the best case when nginx handles static CSS and js, gzip and SSL). However, nginx is also one of the best software load balancers, so this might be critical as most servers are notorious for flipping out at moderately high loads. – m33lky May 1 '12 at 18:39

That's a tricky question to answer. If you wrote a really lightweight node server to just serve static files, it would most likely perform better than nginx, but it's not that simple. (Here's a "benchmark" comparing a nodejs file server and lighttpd - which is similar in performance to ngingx when serving static files).

Performance in regard to serving static files often comes down to more than just the web-server doing the work. If you want the highest performance possible, you'll be using a CDN to serve your files to reduce latency for end-users, and benefit from edge-caching.

If you're not worried about that, node can serve static files just fine in most situation. Node lends itself to asynchronous code, which it also relies on since it's single-threaded and any blocking i/o can block the whole process, and degrade your applications performance. More than likely you're writing your code in a non-blocking fashion, but if you are doing anything synchronously, you may cause blocking, which would degrade how fast other clients can get their static files served. The easy solution is to not write blocking code, but sometimes that's not a possibility, or you can't always enforce it.

share|improve this answer

I did a quick ab -n 10000 -c 100 for serving a static 1406 byte favicon.ico, comparing nginx, Express.js (static middleware) and clustered Express.js. Hope this helps:

enter image description here

Unfortunately I can't test 1000 or even 10000 concurrent requests as nginx, on my machine, will start throwing errors.

EDIT: as suggested by artvolk, here are the results of cluster + static middleware (slower):

enter image description here

share|improve this answer
Thank you, very helpfull! Did you use this middleware for favicon: senchalabs.org/connect/favicon.html or just served it as static file? – artvolk 2 days ago
@artvolk the favicon one :) – Gremo 2 days ago
It seems that favicon middleware caches the file in memory. Static middleware should be even slower than in your tests. – artvolk 2 days ago
@artvolk good to know, thanks! By the way I'm writing my thesis and the only thing that matters is to prove that nginx is faster than node, with static content. – Gremo 2 days ago
@artvolk Your're right, look at my updated answer. – Gremo 2 days ago
show 1 more comment

Node.js can stand alone. You don't need to use nginx with Node.js any more (see this entry for details). Therefore there is no point in using nginx only for this simple task. As for performance I don't really know, but I don't think that there will be any noticeable difference.

By the way: is there any noticeable difference (in performance) between any two environments in serving static files? Reading files is an OS job and sending them to client depends (mostly) on connection, doesn't it?

share|improve this answer
5  
there's a big difference between how nginx and apache server static files. Apache spins up a new process (or uses an open one) for every request, even if it's a static file request. This can chew up lots of memory and cpu as you start dealing with a large # of concurrent connections. Nginx is event driven, and new requests get handed off to small, worker processes that can typically plow through the job much quicker than Apache can bring up a new process to handle serving a file. – Brad Harris Apr 1 '12 at 21:54
1  
Does Node.js use send_file when serving static files? This will certainly make a difference, since there's less overhead of copying between user and kernel space. – m33lky Apr 1 '12 at 22:39
@BradHarris I see, thanks for this short explanation. :) – freakish Apr 2 '12 at 6:39
@m33lky - Typically in node you'll create a read stream of the file and pipe it to the response. – Brad Harris Apr 2 '12 at 16:12
2  
Then I don't see how Node can match up with nginx for this purpose. Here's more background on sendfile. – m33lky Apr 2 '12 at 18:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.