Performance Azure Blob vs Azure Table Performance Azure Blob vs Azure Table azure azure

Performance Azure Blob vs Azure Table


I agree with Andrei M. The best solution is blob storage with a table service or even a sql database to store reference.

Just one more thing, if you plan to search for content in those file, neither table service / blob will be good for that. If that's the case, I recommend you setup a VM with elastic search / solr and index those contents.

PS: there's also Azure Search, for that, you can give it a try too.


Blob storage is better then Table storage if you want to work with files. I definitely would not want to deal with file chunks in a table. If you need to keep references to your blobs, how about combining two options and use Table storage for references? I think this would be the best in terms of performance :).