I develop a new website and I want to use GridFS as storage for all user uploads, because it offers a lot of advantages compared to a normal filesystem storage.

Benchmarks with GridFS served by nginx indicate, that it's not as fast as a normal filesystem served by nginx.

Benchmark with nginx

Is anyone out there, who uses GridFS already in a production environment, or would use it for a new project?

link|improve this question

50% accept rate
feedback

4 Answers

up vote 11 down vote accepted

I use gridfs at work on one of our servers which is part of a price-comparing website with honnorable traffic stats (arround 25k visitors per day). The server hasn't much ram, 2gigs, and even the cpu isn't really fast (Core 2 duo 1.8Ghz) but the server has plenty storage space : 10Tb (sata) in raid 0 configuration. The job the server is doing is very simple:

Each product on our price-comparer has an image (there are arround 10 million products according to our product db), and the servers job is to download the image, resize it, store it on gridfs, and deliver it to the visitors browser... if it's not present in the grid... or... deliver it to the visitors browser if it's already stored in the grid. So, this could be called as a 'traditional cdn schema'.

We have stored and processed 4 million images on this server since it's up and running. The resize and store stuff is done by a simple php script... but for sure, a python script, or something like java could be faster.

Current data size : 11.23g

Current storage size : 12.5g

Indeces : 5

Index size : 849.65m

About the reliability : This is very reliable. The server doesn't load, the index size is ok, querys are fast

About the speed : For sure, is it not fast as local file storage, maybe 10% slower, but fast enough to be used in realtime even when the image needs to be processed, which is in our case, very php dependant. Maintenance and developement times have also been reduced: it became so simple to delete a single or multiple images : just query the db with a simple delete command. Another interesting thing : when we rebooted our old server, with local file storage (so million of files in thousands of folders), it sometimes hangs for hours cause the system was performing a file integrity check (this really took hours...). We do not have this problem anymore with gridfs, our images are now stored in big mongodb chunks (2gb files)

So... on my mind... Yes, gridfs is fast and reliable enough to be used for production.

link|improve this answer
1  
I am shocked that anyone would use raid 0 as there primary storage on a production web site. Even with good backups, increasing the probability of a storage failure is a pretty steep price to pay for improved performance. – mikerobi May 12 '11 at 1:17
12  
We use raid 0 because in our particular case, image data can be volatile. It doesn't matter if the image is lost since we will download it again from the merchants website. Pragmatically, we could consider that our server is a simple image cache server. – Manuel Eidenberger May 12 '11 at 21:17
feedback

As mentioned, it might not be as fast as an ordinary filesystem but then it gives you man advantages over ordinary filesystems [0] which I think are worth giving up a bit speed for.

Ultimately, with sharding, you might reach a point however where the GridFS storage actually becomes the faster option as opposed to an ordinary filesystem and a single node.

[0] http://www.markus-gattol.name/ws/mongodb.html#why_use_gridfs_over_ordinary_filesystem_storage

link|improve this answer
feedback

It really depends on which driver you're using. For example, you'll be able to server things much quicker from Java than from Ruby.

Also depends on how many requests you're serving. Definitely benchmark for you particular use case; that's the only way to know if it'll work for you. You might also consider trying the nginx-gridfs module:

http://github.com/mdirolf/nginx-gridfs

It's supposed to be pretty fast.

link|improve this answer
I've tested GridFS with Ruby. It works and it might be fast enough for my purposes. I guess using nginx with the gridfs module is the best/fastest method for serving files. – VEAUTEQ Aug 5 '10 at 14:50
1  
"you'll be able to server things much quicker from Java than from Ruby"? I seriously doubt that. It's all about streaming the file contents, which should yield equivalent performance in both languages, there is no special slow dynamic Ruby stuff used in this case. – foljs Dec 16 '10 at 18:13
Whoever did the main benchmark that gets cited in these gridfs comparisons found that the ruby implementation was orders of magnitude slower for some reason; I suspect just a bug, but that's probably why Ruby is being arbitrarily singled out – Profane Oct 21 '11 at 16:31
feedback

mdirolf's nginx-gridfs module is great and fairly easy to get setup. We're using it in production at paint.ly to serve all of the paintings and there have been no problems so far.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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