Quick question. I've been reading tons of information about the azure blob/file/disk storage options and I have a such simple storage requirement that I'm confused as to what would be the best choice. Most of the information I'm reading is going totally over my head.
I was hoping someone might be able to narrow down the field of view to a more reasonable sized set of pros/cons. My situation is as follows:
I am building an API that is doing image processing. To put it simply, the user makes a get request for a specific image with specific text to print on top, my API processes it and spits an image back out. Currently I'm running on an Azure emulator so the image files(about 3 gigs of PNGs) are being pulled from a local path. I will soon be deploying to a live azure server so I will want to store these image files somewhere (without putting them in the actual application files).
My understanding so far is that the disk and file options will allow me to keep my code relatively the same, still using general file I/O to load the image paths. The disks will only allow access of data to the machine this API is running on which would be fine, but I dont know if theres any benefit to having the disks, which impose this limitation. The blob storage will require me to change this, but there isn't very much code and I don't foresee this being too difficult.
There's so many details to each different choice that I am having trouble coming to a decision: For my situation, is there a clear choice between the three? Does it come down to whatever is easier? Performance and cost are the top priorities, so what are the pros/cons with respect to these? This does need to be able to scale to more images, but only to a certain degree. I could see it going from 3 gigs of images to 10 gigs of images in the next few years, but not from 3 gigs to 1000 gigs.
Which you choose is entirely up to you, but objectively:
(Edited to reflect larger block-blob size, introduced December 2016)