Blob storage
Blob storage holds binary large objects — images, video, backups, or any unstructured file — as opaque chunks of bytes accessed by key over HTTP. "Blob" is Microsoft Azure's name for what other providers call object storage. It's built for massive scale and direct delivery, not relational queries.
A blob (binary large object) is just an arbitrary sequence of bytes the storage layer doesn't try to interpret. That's the point: it can hold a JPEG, an MP4, a database dump, or a ZIP equally well, addressing each by a key and serving it back over HTTP.
The terminology is mostly vendor branding. Azure markets "Blob Storage," Amazon markets S3 "objects," and Google markets "Cloud Storage" — but conceptually they're the same flat, key-addressed, HTTP-accessed model. Azure adds blob tiers (hot, cool, archive) for cost-vs-access trade-offs, mirroring the hot/cold tiering other providers offer.
Blob storage is the wrong tool when you need transactions, joins, or per-record updates — that's a database's job. It's the right tool for serving and archiving large unstructured files at scale.