Storing image in DB vs filesystem for user uploaded images in website
程序员文章站
2022-05-18 13:21:28
...
sigh why does everybody jump to GridFS?
Depending on the size of the images and the exact use case, I'd recommend to store the imagesdirectly in the DB (not via GridFS). Here's why:
File System
- Storing the images in the file system is proven to work well, but it's not trivial
- You will need a different backup system, failover, replication, etc. This can be tricky DevOps-wise
- You will need to create a smart directory structure which is a leaky abstraction, because different file systems have very different characteristics. Some have no problem storing 16k files in one folder, others start to choke at a mere 1k files. A common approach is to use a convention like
af/2c/af2c2ab3852df91.jpg
, where the foldersaf
and2c
are inferred from the file name (which itself might be a hash of the content for deduplication purposes).
GridFS
GridFS is made for storing large files, and for storing files in a very similar way to a file system. That comes with some disadvantages:
- For every file, you will need one
fs.file
and onefs.chunk
document. Chunking is totally required for large files, but if your files are below 256k on average, there's no real chunking going on (default chunk size is 256k). So when storing small files in GridFS, you get the overhead without the advantage. Bad deal. It also requires two queries instead of one. - It imposes a certain structure on your collection, for instance to have a 'file name'. It depends on the use case, but I often choose to use a hash as the id and store the hash in the user, for example. That deduplicates, is easy to implement, aligns beautifully with caching and doesn't require coming up with any convention. It's also very efficient because the index is a byte array.
Things might look different if you're operating a site for photographers where they can upload their RAW files or large JPEGs at 10MB. In that case, GridFS is probably a good choice. For storing user images, thumbnails, etc., I'd simply throw the image in its own document flat.
上一篇: JAVA非阻塞网络通信NIO关键代码
下一篇: 03_MongoDB_增_删_改文档