Reputation: 91
I have various file types that are uploaded into blob storage. I am needing to edit/read these files using third party tools (Exiftool, Imagemagick, etc. - I know I could possibly use the Media Services but I am required to use these tools). Once the files are in blob storage does my worker role have to download the blob from storage in order to work with the file? The reason for the questions is that I am working with very large files (videos, images, etc.) and I don't necessarily want to use MemoryStream.
If I have to download the file from storage into let's say a temporary folder, what is the performance hit and are there any other options for editing/reading the file?
Upvotes: 4
Views: 3012
Reputation: 71118
Third-party tools will be working with the file system and it's unlikely they have built-in knowledge of the Azure REST API. So, you have two primary choices:
Option #1 will give you best performance with the tool itself, since it will work with a local copy. And you get 500TB per storage account.
Option #2 will let you point the tool at any file without copying, but the access itself will be over the local network and will be slower than accessing locally. You get 5TB per SMB volume.
Upvotes: 3