Is it a bad design to store images as blobs in a database?
-
I have read online that you should avoid doing this. Can anyone explain what is wrong with this approach and what is a better approach? Are sites like Flikr, Facebook, etc. storing their images as blobs?
-
Answer:
I agree with Ed and recommend storing images outside of the database. There are many reasons but some of the big ones are: It is a lot easier to manage, view, and manipulate images that are on the file system. You can use standard command line tools (imagemagick to resize or crop for example) and image viewers. It provides flexibility long term. As already mentioned, images can consume a lot of space and by keeping them separate you have a smaller database to deal with and more options for scaling down the road. You could for example move all your images to a completely separate server. Blobs are often a "gotcha" item in many replication and backup solutions.
Joe Uhl at Quora Visit the source
Other answers
As others have said, you should really only store text in databases - nothing binary. Put the paths to the images in your db, and the images on disk. If you have to worry about scalability, uptime, etc, then look at using a CDN to hold the images, so that they are served from a more robust platform than a single server.
Matt Chatterley
Storing path to image makes your life easier with high performance website
Ankush Dharkar
Store them in S3.
Stephen Johnston
Its better when you store the image in a folder and update its path in your MySQL Database. It will decrease your database size and process faster when not requesting the database each time an image is needed to be displayed. You need to take care of the image name you are giving. For example you can append the date & time in the image name to avoid data redundancy.
Shahzeb Qureshi
From maintenance and performance angle would strongly suggest to store path in db. That gives you flexibility to store images on filesystem or on cdn, update images as required (you will need to update URL to manage cache accordingly) using FTP, possible to process them into multiple sizes as required while storing a single path in db (there are various ways to do this, just listing a possibility in favour of storing path in db), etc.
Vishal Haria
Following are some reasons why Images should not be stored as BLOBS in database: read/write to a Database is always slower than a file system Your Database backups grow to be huge and more time consuming. It also put Heavy load on the database server. Require additional code to extract and stream the images Web servers, need special coding or processing to access images in the file system
Sheikh Munaf
One of the problems with storing files as blobs is that you database will quickly inflate in size. Recently I had a client who had their site set up this way, but needed to upgrade their systems and wanted a new site. Their database was over a gigabyte in size and it was difficult dealing with a database of that size for a plethora of reasons including having trouble taking it down off the server to deploy on my development server. File systems allow for better organization and will allow for easier transfers in the future should you need to switch servers or software versions.
Ed Nichols
It is advisable not to store images in database and use urls to link to images stored elsewhere like flickr or the images folders in your website. You can always edit/replace/update your images to be current without meddling with the database. You can also use free images from the internet or your clients website. You can link youtube/vimeo videos, pdf files stored in a cloud. About databases, 10 databases is not a limitation in my view. You can create as many tables as you want in each database. but the total DB storage in MB is what counts for your expense. You have to organize, design and structure your database to suit your needs.
G Ram Kumar
If you store images in DB, you can use a lot of benefit like connections, queries , functions, cached, back up - restore strategies. bla bla ... In other side, you can store huge number of images without scare about your DB, images size, number, ...you also may choose store in normal file system or distributed file system based on what you need.
Tú Phạm
Related Q & A:
- Can I create a second filestream container on an existing SQL Server 2008 database without going offline?Best solution by Database Administrators
- How to match a drawn Chinese character to a database of stroke animations?Best solution by Signal Processing
- How to save RSS-feed to a database?Best solution by feeds2mysql.com
- Where do I initialize a database?Best solution by Stack Overflow
- How good is a career as a Database Administrator?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.