I wonder whether storing all the uploaded files in GridFS is faster than storing them on the usual filesystem, e.g. Ext4 (in terms of reading/writing speed and average server load).

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

In general it's slower for usual filesystem access style. But it can benefit from nice MongoDB features:

  • You can associate any metadata with the files and query it in a usual manner. Actually files are stored as regular Mongo documents in fs.files and fs.chunks collections.
  • Replication. With a replica set you will get an (almost) instant backup, failover and read scalability (read request can go to slave nodes).
  • Sharding. Like any other collection it's possible to distribute files across multiple Mongo instances with auto-sharding. This will improve write scalability.
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.