Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting started with Azure storage: Blobs vs Tables vs SQL Azure

It's quite a topic, blobs vs tables vs SQL, and despite all I read so far I still can't find some proper reasoning on what to use when.

We have a multi-tenant SaaS web-application which we are about to move to Azure. We use an SQL Server 2008 database. We store documents and log information that belongs to the documents. Kinda like dropbox does.

The forums state that you better use Azure Tables when you are considering "large" objects. We typically store hundreds of documents per user where the size of the documents vary from 5kb to 30mb where the vast majority will be around 1MB?

Are there some ground rules when to go for Blobs, Tables, Sql? I already learned that I shouldn't store my documents in SQL since it is too expensive. But when does it get "beneficial" to store the documents in Blobs and when would I be better of with tables? Is there some kind of formula like :

if (objects * MB/object * objectrequested > y) then blobs, else tables

like image 297
bas Avatar asked Dec 24 '12 19:12

bas


People also ask

Is Azure Table storage cheaper than Azure SQL Database?

Azure tables are only cheaper than SQL Azure if the data access pattern is relatively light, since tables have a per-transaction fee and SQL Azure doesn't.

What is the difference between BLOB storage and Table storage?

You can use Tables when your data is flexible and has a lot of metadata. Whereas, blobs are suggested when you just want to stream your data or access from anywhere and also the data does not contain a lot of metadata.

Does Azure SQL use BLOB storage?

SQL Server Managed Backup also uses Azure blob storage to store all backup files. Backups can be configured at both levels, database and instance level of SQL Server.

What are the differences between the Azure Table storage and the Azure SQL service?

There is a fundamental difference between a SQL table and Azure table. While azure tables are capable of storing one type of data in a row and another type of data in an another row, SQL database tables are designed to store the same type of data in each and every row.


2 Answers

I think Igorek has addressed your SQL Azure concerns. You seem to still have questions about Tables vs Blobs, though.

In your case using Table storage would be annoying. Each property/column in ATS can be at most 64KB, so you would have to split the documents across multiple properties and then reassemble them. There is also a limit of 4MB per entity, which would be a problem. Blob storage has neither of these limitations.

I would tend to use Azure Table Storage when you have smallish entities with many properties that need to be stored and queried separately. So it works wells for stored objects, or small documents with lots of metadata.

Blob storage works better for things without a ton of metadata. It's good for things that might work well as files on a filesystem.

like image 147
Brian Reischl Avatar answered Oct 14 '22 02:10

Brian Reischl


I would store documents themselves in the Azure Blob storage (not table storage). Outside of the fact that it is pretty expensive to store documents in a SQL Azure database that charges a penny per meg (or less depending on volume), SQL database is generally not a good place for documents. SQL is a relational database that provides benefits of ability to do queries, joins, etc. There is usually no benefit to storing large documents or images in a SQL database, especially when there is a highly scalable central storage system that is pretty cheap to store/access.

Now, if you need to search thru the documents themselves, I'd use something like Lucene.NET to provide a search capability for document-based repository.

HTH

like image 22
Igorek Avatar answered Oct 14 '22 04:10

Igorek