The cloud's filing system isn't a file system
Disks impose limits: a volume has a size, belongs to one server, and fails with it. Object storage discards the disk metaphor. Each file becomes an object — data plus metadata under a unique key — living in a bucket that no single machine owns; the provider replicates objects across hardware behind the scenes. You talk to it over HTTP from anywhere, which is why Amazon's S3 API became the de-facto standard nearly every provider now speaks.
The trade shaping its use: objects are written and read whole. There is no seeking into a file, no locking, no directories — just keys with an illusion of folders. That makes object storage wrong for databases and live application state, and ideal for everything write-once-read-many: images and video, user uploads, backups, log archives, and static websites served straight from a bucket, usually with a CDN in front. Tiered pricing (hot, infrequent, archive) turns 'keep everything, cheaply' into an actual strategy.
Egress is where the bill lives
Storing data is cheap; moving it out is not. Object-storage pricing charges for outbound transfer, so an architecture that streams large files to users directly from a bucket can cost multiples of the storage itself. This is precisely the cost a CDN or a flat-egress provider is deployed to contain.
