Object Storage
The storage paradigm of flat-namespace, HTTP-accessible binary objects with metadata. Data is addressed by bucket and key, not by filesystem path.
Summary
The storage paradigm of flat-namespace, HTTP-accessible binary objects with metadata. Data is addressed by bucket and key, not by filesystem path.
Object storage is the foundational layer beneath everything in this index. S3 is the dominant API; all technologies, table formats, and architectures in the map operate on top of object storage.
- Object storage has no native directory hierarchy. Prefixes simulate folders but LIST operations scan linearly — not like
lson a filesystem. - Durability (11 9s) is not the same as availability or performance. Data is safe but access can be slow or throttled.
scoped_toS3 — S3 is the dominant object storage API- Lakehouse
scoped_toObject Storage — lakehouses are built on object storage - AWS S3, MinIO, Ceph, Apache Ozone
scoped_toObject Storage — concrete implementations - Separation of Storage and Compute
scoped_toObject Storage — the pattern that decouples compute from data
Definition
The storage paradigm of flat-namespace, HTTP-accessible binary objects with metadata. Data is addressed by bucket and key, not by filesystem path.
Traditional filesystems and block storage do not scale to billions of objects across distributed infrastructure. Object storage trades POSIX semantics for horizontal scalability, durability, and HTTP accessibility.
Recent developments
- Hitachi Vantara named a Leader in the 2026 GigaOm Radar for Object Storage. Per Hitachi Vantara's GigaOm Radar announcement, Hitachi was recognized for AI-optimized data paths that reduce read/write bottlenecks for ML workloads. The 2026 GigaOm Radar field includes Hitachi, Pure Storage FlashBlade, NetApp StorageGRID, Cloudian HyperStore, and VAST Data — the enterprise on-prem object storage segment has hardened into a 4-5 vendor field with each anchored to AI-data-pipeline workloads.
- AI-supercomputer-grade object storage entering the conversation. Per IBM's 2026 Storage Scale roadmap, IBM's "Blue Vela" purpose-built on-prem supercomputer for AI model training uses IBM Scale System 6000 as its object-storage substrate — running continuous training cycles for IBM's Granite LLM family. For organizations sizing internal training infrastructure, the IBM reference shape is now a real comparable to the NVIDIA + VAST and the Meta + 3FS architectures.
- S3-compatible provider field continues to expand. Per Mixpeek's 2026 S3-compatible providers roundup, the credible S3-compat field now spans MinIO (self-hosted, archived), Storj (decentralized at $4/TB/mo), Vultr Object Storage ($5/250GB, 17 global locations), and the existing hyperscaler + EU-sovereign field. The expansion is driven by post-MinIO migration urgency on the self-hosted side and continued egress-cost pressure on the cloud side.
Connections 120
Outbound 1
scoped_to1Inbound 119
scoped_to118is_a1Resources 3
AWS's conceptual explainer defines object storage versus block and file storage, covering the fundamental paradigm shift that underpins S3.
Red Hat's vendor-neutral overview explains object storage architecture, metadata handling, and use cases from an infrastructure perspective.
MinIO is the most widely deployed S3-compatible open-source object store; its architecture docs illuminate how the S3 API is implemented outside AWS.