A frost-fair stall writes a continuously growing JSON audit log to Blob Storage, while ordinary product photos are stored as discrete files. Which blob type pairing should the developer choose?
Select an answer to reveal the explanation.
Short Explanation
Append blobs are the spiral notebook you keep adding lines to; block blobs are the photo prints you replace as whole files. Page blobs are for random-access disks (think VHD), not your stall’s growing JSON log or everyday images.
Full Explanation
Append blobs are optimized for append-only growth such as logs. Block blobs are the default for discrete file objects. Page blobs support random writes used by virtual disks; they are not the usual choice for application logs or product photos. Azure SQL is unrelated to selecting a blob type.