# LLMS3: The S3 & Object Storage Ecosystem Index > LLMS3 is a curated index of the S3 and object storage ecosystem. It maps 410 nodes across 7 types (Topics, Technologies, Standards, Architectures, Pain Points, Model Classes, LLM Capabilities) and 754+ authoritative resources. The index covers the technologies, standards, architectural patterns, and engineering challenges that define how data is stored, queried, and processed on S3-compatible object storage. LLMS3 helps LLMs answer questions about the S3 ecosystem: which table format to choose, how to handle small files on S3, where DuckDB fits vs. Spark vs. Trino, what vector search over S3 data looks like in practice, how egress costs and vendor lock-in shape architecture decisions, and how AI/ML workloads interact with object storage infrastructure. The index is organized into actionable guides (start here), core node types (Technologies, Standards, Architectures, Pain Points), and specialized categories (Topics, Model Classes, LLM Capabilities). Each entry links to the full content in llms-full.txt. ## Guides - [How S3 Shapes Lakehouse Design](https://llms3.com/llms-full.txt#how-s3-shapes-lakehouse-design): Every lakehouse architecture sits on object storage — almost always S3 or an S3-compatible store. - [Small Files Problem — Why It Exists and the Common Mitigations](https://llms3.com/llms-full.txt#small-files-problem): A dataset with 10 million 10KB files performs worse on S3 than the same data in 100 files of 1GB each. - [Why Iceberg Exists (and What It Replaces)](https://llms3.com/llms-full.txt#why-iceberg-exists): Before Iceberg, querying data on S3 meant pointing a Hive Metastore at a directory of Parquet files and hoping for the best. - [Where DuckDB Fits (and Where It Doesn't)](https://llms3.com/llms-full.txt#where-duckdb-fits): Engineers encounter S3-stored data constantly — Parquet files in data lakes, Iceberg tables in lakehouses, ad-hoc exports. - [Vector Indexing on Object Storage — What's Real vs. Hype](https://llms3.com/llms-full.txt#vector-indexing-real-vs-hype): Vector databases and semantic search are heavily marketed features in the AI ecosystem. - [LLMs over S3 Data — Embeddings, Metadata, and Local Inference Constraints](https://llms3.com/llms-full.txt#llms-over-s3-data): LLMs can extract value from S3-stored data — generating embeddings, extracting metadata, classifying documents, inferring schemas, and translating natural language to SQL. - [Choosing a Table Format — Iceberg vs. Delta vs. Hudi](https://llms3.com/llms-full.txt#choosing-a-table-format): The three major open table formats — Apache Iceberg, Delta Lake, and Apache Hudi — all solve the same fundamental problem: adding transactional table semantics to files on S3. - [Egress, Lock-In, and the Case for S3-Compatible Alternatives](https://llms3.com/llms-full.txt#egress-lock-in-s3-alternatives): AWS S3 egress pricing and proprietary feature creep create a gravitational well: data flows in cheaply but flows out expensively. - [Object Storage for AI/ML Training Pipelines](https://llms3.com/llms-full.txt#object-storage-for-ai-ml-training-pipelines): AI/ML training workloads are becoming the dominant consumers of object storage bandwidth. - [Choosing an S3-Compatible Provider Beyond AWS](https://llms3.com/llms-full.txt#choosing-s3-compatible-provider): The S3 API has become the de facto standard for object storage, but AWS S3 is no longer the only serious option. - [Multi-Site Replication and Geo-Distributed Object Storage](https://llms3.com/llms-full.txt#multi-site-replication-geo-distributed): Operating object storage across multiple geographic sites introduces problems that single-site deployments never encounter. - [Ransomware Protection and Immutable Backups on Object Storage](https://llms3.com/llms-full.txt#ransomware-protection-immutable-backups): Ransomware attacks increasingly target backup infrastructure specifically — encrypting or deleting backups before encrypting production data, eliminating the recovery path. - [AWS S3's New Native Features — Tables, Vectors, Metadata, Express](https://llms3.com/llms-full.txt#aws-s3-native-features): AWS is expanding S3 from pure object storage into a data platform. - [Surviving the MinIO Archive](https://llms3.com/llms-full.txt#surviving-the-minio-archive): In early 2026, the MinIO community repository was archived, effectively ending the open-source era of the most widely deployed S3-compatible object storage server. - [The Great Catalog Migration](https://llms3.com/llms-full.txt#the-great-catalog-migration): The "Metastore Era" — dominated by the Hive Metastore (HMS) — is ending. - [S3 Vectors vs. Dedicated DBs](https://llms3.com/llms-full.txt#s3-vectors-vs-dedicated-dbs): Amazon S3 Vectors (GA 2025) integrates vector storage and similarity search directly into S3, challenging the assumption that RAG pipelines require a dedicated vector database (Pinecone, Milvus, We... - [Real-Time Lakehouse: Paimon vs. Hudi](https://llms3.com/llms-full.txt#real-time-lakehouse-paimon-vs-hudi): Building a real-time lakehouse on S3 requires a table format optimized for high-frequency writes and low-latency reads. - [The Single-Digit Millisecond S3](https://llms3.com/llms-full.txt#the-single-digit-millisecond-s3): The 2025-2026 S3 ecosystem has shattered the assumption that object storage is inherently slow. - [The Post-MinIO Landscape — Self-Hosted S3 Branches Out](https://llms3.com/llms-full.txt#the-post-minio-landscape): For nearly a decade, "self-hosted S3" meant MinIO. - [The True Cost of Managed Iceberg — S3 Tables vs. Self-Managed Compaction](https://llms3.com/llms-full.txt#s3-tables-cost-reality): AWS S3 Tables automates Iceberg table maintenance — compaction (binpack, sort, z-order), snapshot expiration, and orphan file cleanup — but this convenience comes with opaque $0.005/GB processing c... - [Iceberg v3 in Production — Deletion Vectors and Row Lineage](https://llms3.com/llms-full.txt#iceberg-v3-deletion-vectors): Iceberg v2 positional delete files cause significant read amplification during query execution: engines must join data files against delete files at query time to exclude deleted rows. - [Table Format Interoperability — XTable, UniForm, and the End of Format Lock-In](https://llms3.com/llms-full.txt#table-format-interoperability): Organizations that use multiple table formats — Iceberg for analytics, Delta for Spark-native pipelines, Hudi for CDC — face a metadata fragmentation problem. - [Billion-Scale Vector Search on S3 — Decoupling Compute and Storage](https://llms3.com/llms-full.txt#decoupled-vector-search-s3): Storing full-precision HNSW graphs in RAM becomes economically unviable beyond approximately 100 million vectors — a billion 768-dimensional float32 vectors require ~3 TB of memory for the graph al... - [The Lance Format — ML-Native Storage Beyond Parquet](https://llms3.com/llms-full.txt#lance-format-beyond-parquet): Apache Parquet organizes data into monolithic row groups optimized for sequential columnar scans. - [The Catalog Wars — Apache Polaris vs. Unity Catalog](https://llms3.com/llms-full.txt#polaris-vs-unity-catalog): The metadata catalog has replaced the table format as the critical vendor lock-in layer. - [CDC Failure Modes — What Breaks When Streaming Database Logs to S3](https://llms3.com/llms-full.txt#cdc-failure-modes): Change Data Capture into a lakehouse is marketed as a turnkey path to "real-time analytics," but production CDC pipelines routinely fail from schema drift in the source database, out-of-order event... - [SIMD and the C++ Query Engine Revolution](https://llms3.com/llms-full.txt#simd-cpp-query-engines): Java-based query engines (Trino, Spark) dominate the lakehouse ecosystem but impose structural performance ceilings: JVM garbage collection pauses during large S3 fetches, row-at-a-time or small-ba... - [Defending S3 Against SSE-C Encryption Hijacking](https://llms3.com/llms-full.txt#sse-c-encryption-hijacking): Cloud-native ransomware has evolved beyond data deletion. - [Zero-Egress Architecture — Multi-Cloud Without the Bandwidth Tax](https://llms3.com/llms-full.txt#zero-egress-architecture): Egress fees dominate storage TCO for high-bandwidth workloads: multi-cloud AI training, edge inference, CDN origins, and cross-region analytics. - [Small Object Storage at Scale — Overcoming the Latency Tax](https://llms3.com/llms-full.txt#small-object-latency-tax): Standard S3 imposes per-request latency overhead regardless of object size: a 1 KB GET takes the same round-trip time as a 1 MB GET, but returns 1,000x less data. - [Credential Vending in Modern Data Lakes](https://llms3.com/llms-full.txt#credential-vending-data-lakes): Distributing static IAM access keys to distributed compute clusters — Spark executors, Trino workers, Flink task managers — is a security liability: keys are long-lived, broadly scoped, and stored ... - [The Local-First S3 Data Ecosystem — Architecting Resilient AI Pipelines for Constrained Environments](https://llms3.com/llms-full.txt#local-first-s3-ai-pipelines): Engineers building AI pipelines on single-node servers, small Docker clusters, or prosumer-grade hardware need to replicate the functionality of cloud-native S3 environments without enterprise-scal... - [Choosing a Vector Database for S3 Workloads](https://llms3.com/llms-full.txt#choosing-vector-db-s3): The vector database market has fragmented into three distinct architectural tiers, each with a fundamentally different relationship to S3-compatible object storage. - [DuckLake and the Future of Lakehouse Metadata](https://llms3.com/llms-full.txt#ducklake-lakehouse-metadata): Every open table format — Iceberg, Delta Lake, Hudi — stores its metadata as files on S3. - [Python-Native Stream Processing — Bytewax vs. Flink for S3 Ingestion](https://llms3.com/llms-full.txt#python-streaming-bytewax-flink): Real-time ingestion into S3 lakehouses has traditionally meant Apache Flink — a distributed, stateful stream processor with mature Iceberg sinks, exactly-once semantics, and deep ecosystem support. - [POSIX Compatibility on Object Storage — When You Need a Filesystem Over S3](https://llms3.com/llms-full.txt#posix-over-s3): S3 is a key-value store with HTTP semantics, not a filesystem. - [Picking an AI Memory Layer in 2026 — Mem0 vs. Zep vs. Build-Your-Own](https://llms3.com/llms-full.txt#picking-ai-memory-layer-2026): The shift from stateless LLM inference to stateful, multi-agent systems forces a decision that didn't exist two years ago: where does agent memory live, and what shape does it take? Vector embeddin... - [KV-Cache Persistence to S3 — LMCache, SGLang, and Mooncake](https://llms3.com/llms-full.txt#kv-cache-persistence-s3): As LLM prompts grow into hundreds of thousands or millions of tokens, the **Prefill Tax** — the compute cost of processing input before generating the first output token — dominates serving cost. - [Model Context Protocol (MCP) — The Integration Fabric for Agentic AI on S3](https://llms3.com/llms-full.txt#mcp-integration-fabric-s3): Before MCP, every agentic integration was a bespoke API connector — custom Boto3 logic, custom database adapters, custom file-read tools, custom auth handshakes per service. - [GPUDirect to S3 — cuObject, RDMA, and the Zero-Copy Pipeline](https://llms3.com/llms-full.txt#gpudirect-to-s3-cuobject): Traditional AI training and inference pipelines move object-storage data through the CPU as a bounce-buffer: S3 → NIC → CPU → PCIe → GPU. - [Composing the AI Agent Stack on S3 — Memory, Orchestration, and Integration](https://llms3.com/llms-full.txt#composing-ai-agent-stack-s3): Guides 37–40 cover the AI agent stack one layer at a time — memory (Guide 37), KV-cache (Guide 38), MCP integration (Guide 39), GPUDirect transport (Guide 40). - [Choosing an Agent Interop Protocol — MCP vs. A2A vs. ACP vs. ANP](https://llms3.com/llms-full.txt#choosing-agent-interop-protocol): Two years ago the agent-protocol question didn't exist; an agent talked to *its* tools through whatever framework it was built in. - [Defending Against Memory Poisoning — The OWASP MCP10 Defense Stack](https://llms3.com/llms-full.txt#defending-against-memory-poisoning): Prompt injection was the agent-security story of 2023–2024. - [Choosing a Durable Agent Runtime — Kitaru vs. Temporal vs. Restate](https://llms3.com/llms-full.txt#choosing-durable-agent-runtime): An autonomous agent is a recursive while-loop that can run for minutes to days; a Kubernetes pod eviction at step 11 of 12 burns 30 minutes of LLM compute and dozens of dollars in token spend. - [Hierarchical KV-Cache Tier Topology — From GPU HBM to S3](https://llms3.com/llms-full.txt#hierarchical-kv-cache-tier-topology): Single-tier KV-cache management forces an unwinnable trade-off — keep everything in HBM (the wall hits at tens of GB per accelerator) or fetch on demand from slower tiers (decode-stage latency expl... - [MCP Gateway vs. Traditional API Gateway — When the Old One Breaks](https://llms3.com/llms-full.txt#mcp-gateway-vs-api-gateway): Enterprises routinely try to route MCP traffic through their existing API gateway (Kong, Apigee, AWS API Gateway in REST mode, NGINX as passive proxy). - [Inner vs. Outer Harness — Why Modern Agent Stacks Split Concerns](https://llms3.com/llms-full.txt#inner-outer-harness-pattern-guide): Pre-2024 agent frameworks (LangChain v0.0.x, AutoGPT-era stacks) mixed model-behavior concerns (prompt shape, tool schema, response parsing, retry logic) with infrastructure concerns (durable execu... - [Choosing a Lakehouse Catalog — Polaris vs. Unity Catalog vs. Gravitino vs. Cloud-Native](https://llms3.com/llms-full.txt#choosing-a-lakehouse-catalog-control-plane): In 2024 the catalog was an afterthought — somewhere to remember where the tables lived. ## Technologies - [txn2/mcp-s3](https://llms3.com/llms-full.txt#txn2-mcp-s3): An open-source Go MCP server that exposes S3 (and any S3-compatible store) as governed tools to AI agents — browse buckets, read/write objects, mint presigned URLs — designed as a composable library, not just a standalone binary. - [AIStor MCP Server](https://llms3.com/llms-full.txt#aistor-mcp-server): MinIO's native MCP integration connecting LLM clients directly to AIStor clusters for cluster admin, object analysis, and policy management in natural language — including in-cluster `ask-object` analysis that runs the model on the storage node. - [S3 Tables MCP Server](https://llms3.com/llms-full.txt#s3-tables-mcp-server): An MCP server that lets agents discover, query, and reason over managed Apache Iceberg tables and S3 Metadata inventory tables in natural language under least-privilege access — no heavyweight external catalog required. - [verl Hybrid Replay Buffer](https://llms3.com/llms-full.txt#verl-hybrid-replay-buffer): A scalable persistence architecture for LLM reinforcement-learning workloads in the verl framework — hot data in RAM, cold in local RocksDB, periodic HDFS/S3 checkpointing — so terabytes of rollout data survive failed training runs. - [MinIO MemKV](https://llms3.com/llms-full.txt#minio-memkv): A flash-native context-memory store embedded in the AI storage tier, exposing petabytes of NVMe to GPU pods as shared KV cache over RDMA on NVIDIA BlueField-4 — a dedicated "memory tier" that eliminates the inference recompute tax. - [AWS S3](https://llms3.com/llms-full.txt#aws-s3): Amazon's fully managed object storage service — the origin and reference implementation of the S3 API. As of December 2025, the maximum object size is 50 TB (up from 5 TB). - [MinIO](https://llms3.com/llms-full.txt#minio): An open-source, S3-compatible object storage server designed for high performance and self-hosted deployment. As of February 2026, the community repository is archived (read-only) as MinIO shifts to AIStor for commercial AI-optimized storage. - [pgsty/minio Fork](https://llms3.com/llms-full.txt#pgsty-minio-fork): A community-maintained AGPL v3 fork of MinIO created after the upstream repository was archived in February 2026 and permanently re-archived on April 25, 2026. Lives at github.com/pgsty/minio, ships compiled binaries and admin console, and backports CVE patches that MinIO Inc. - [Versity S3 Gateway](https://llms3.com/llms-full.txt#versity-s3-gateway): An open-source (Apache 2.0) S3-compatible gateway that translates S3 API calls into POSIX filesystem operations. A thin translation layer rather than a full object store — the underlying bytes live on NFS, XFS, ext4, or any other POSIX filesystem, and Versity surfaces them under S3 semantics. - [Ceph](https://llms3.com/llms-full.txt#ceph): A distributed storage system providing object, block, and file storage in a unified platform. S3 compatibility via its RADOS Gateway (RGW). - [Apache Ozone](https://llms3.com/llms-full.txt#apache-ozone): A scalable, distributed object storage system in the Hadoop ecosystem with an S3-compatible interface. - [Apache Iceberg](https://llms3.com/llms-full.txt#apache-iceberg): An open table format for large analytic datasets. Manages metadata, snapshots, and schema evolution for collections of data files (typically Parquet) on object storage. - [Delta Lake](https://llms3.com/llms-full.txt#delta-lake): An open table format and storage layer providing ACID transactions, scalable metadata, and schema enforcement on data stored in object storage. Originally developed at Databricks. - [Apache Hudi](https://llms3.com/llms-full.txt#apache-hudi): A table format and data management framework optimized for incremental data processing — upserts, deletes, and change data capture — on object storage. - [DuckLake](https://llms3.com/llms-full.txt#ducklake): A lakehouse metadata format that stores table metadata in an embedded SQL database (DuckDB) instead of file-based manifests on S3. Emerging project from the DuckDB team. - [DuckDB](https://llms3.com/llms-full.txt#duckdb): An in-process analytical database engine (like SQLite for analytics) that reads Parquet, Iceberg, and other formats directly from S3 without requiring a server or cluster. - [Spice.ai](https://llms3.com/llms-full.txt#spice-ai): A federated AI/data runtime that combines embedded DuckDB compute with native delegation to Amazon S3 Vectors for similarity search. Configured via a single declarative `spicepod.yaml` file. - [Trino](https://llms3.com/llms-full.txt#trino): A distributed SQL query engine for federated analytics across heterogeneous data sources, with deep support for S3-backed data lakes and lakehouses. - [ClickHouse](https://llms3.com/llms-full.txt#clickhouse): A column-oriented DBMS designed for real-time analytical queries, with native support for reading from and writing to S3. - [Apache Spark](https://llms3.com/llms-full.txt#apache-spark): A distributed compute engine for large-scale data processing — batch ETL, streaming, SQL, and machine learning — over S3-stored data. - [LanceDB](https://llms3.com/llms-full.txt#lancedb): A vector database that stores data in the Lance columnar format directly on object storage. Designed for serverless vector search without a separate index server. - [Weaviate](https://llms3.com/llms-full.txt#weaviate): An open-source vector database with hybrid search combining BM25 keyword matching and vector similarity in a single query, plus multi-tenancy and S3-tiered cold storage. - [Qdrant](https://llms3.com/llms-full.txt#qdrant): A Rust-based vector search engine with native payload filtering and a custom HNSW index implementation that applies metadata filters during graph traversal, not after. - [Actian VectorAI DB](https://llms3.com/llms-full.txt#actian-vectorai-db): A commercial vector database launched by Actian in April 2026, multi-cloud (AWS/Azure/GCP), built on FAISS + OnDiskIVF indices with native hybrid search (dense + BM25). Vendor positioning emphasizes per-query cost (sub-$0.001). - [Milvus](https://llms3.com/llms-full.txt#milvus): A distributed vector database built for billion-scale similarity search, using a microservices architecture with SSD caching for hot data and native S3 cold storage offload. - [pgvector](https://llms3.com/llms-full.txt#pgvector): The de facto open-source PostgreSQL extension for vector similarity search. Adds a `vector` data type plus indexed nearest-neighbor operators (L2, cosine, inner product) directly inside PostgreSQL, so vector workloads share transactions, joins, and ACID guarantees with the rest of the relational schema. - [VectorChord](https://llms3.com/llms-full.txt#vectorchord): A high-performance PostgreSQL extension for vector similarity search, positioned as a **drop-in replacement for pgvector** with order-of-magnitude speedups at billion scale. Built by **TensorChord** (creators of pgvecto.rs). - [OpenSearch](https://llms3.com/llms-full.txt#opensearch): An open-source distributed search + analytics engine forked from Elasticsearch in 2021, now governed by the **OpenSearch Software Foundation** (Linux Foundation, Sept 2024). Provides full-text search, log analytics, and — as of 3.0 — GPU-accelerated vector search with native **Model Context Protocol** support for AI-agent retrieval. - [StarRocks](https://llms3.com/llms-full.txt#starrocks): An MPP analytical database with native lakehouse capabilities, able to directly query S3 data in Parquet, ORC, and Iceberg formats. - [Apache Flink](https://llms3.com/llms-full.txt#apache-flink): A distributed stream processing framework that processes data in real-time, with S3 as checkpoint store, state backend, and output sink. - [S3 Express One Zone](https://llms3.com/llms-full.txt#s3-express-one-zone): An AWS S3 storage class delivering single-digit millisecond latency for frequently accessed data, using Directory Buckets in a single Availability Zone. Scales to 200,000 PUT and 2,000,000 GET TPS per bucket and charges 50% less per request than S3 Standard. - [Amazon S3 Tables](https://llms3.com/llms-full.txt#amazon-s3-tables): An AWS-managed feature providing native Apache Iceberg tables as a built-in S3 capability with automated Binpack / Sort / Auto compaction (512MB default target, 64MB minimum), snapshot lifecycle management, and orphan-file garbage collection. Exposes the Iceberg REST Catalog natively and accepts direct Amazon Kinesis writes into table buckets without a Lambda intermediary. - [Amazon S3 Vectors](https://llms3.com/llms-full.txt#amazon-s3-vectors): Native vector storage and similarity search built into S3, operating under a dedicated `s3vectors` AWS service namespace with its own IAM/SCP surface. Organized as Vector Buckets holding Vector Indexes; each index fixes an immutable dimension (1–4096) and distance metric (cosine or euclidean). - [Amazon S3 Metadata](https://llms3.com/llms-full.txt#amazon-s3-metadata): An AWS feature that automatically generates queryable metadata tables (in Apache Iceberg format) over S3 objects, enabling SQL-based discovery and governance of object metadata. - [AWS Lambda](https://llms3.com/llms-full.txt#aws-lambda): AWS's serverless compute service — pay-per-invocation function execution with managed runtime, no server provisioning. **Now mounts S3 buckets as POSIX file systems via Amazon S3 Files** (May 2026), turning Lambda functions into ordinary file-I/O consumers of S3-resident data. - [Amazon S3 Files](https://llms3.com/llms-full.txt#amazon-s3-files): A POSIX file-system interface over general-purpose S3 buckets, launched April 7, 2026. Any bucket can be mounted as an NFS v4.1 or v4.2 endpoint from EC2, ECS, EKS, or Lambda, giving workloads open/rename/edit-in-place semantics with ~1ms hot-file latency via an underlying Amazon EFS caching tier, while large sequential reads and byte-range requests pass through directly to S3. - [SeaweedFS](https://llms3.com/llms-full.txt#seaweedfs): An open-source distributed storage system with an S3-compatible API, architecturally optimized for billions of small and large files with O(1) disk seek for any object lookup. - [Cloudflare R2](https://llms3.com/llms-full.txt#cloudflare-r2): An S3-compatible object storage service from Cloudflare with zero egress fees, integrated with the Cloudflare global edge network. - [Backblaze B2](https://llms3.com/llms-full.txt#backblaze-b2): A low-cost S3-compatible cloud storage service with free egress to CDN partners through the Bandwidth Alliance, designed for cost-effective bulk storage. - [Wasabi](https://llms3.com/llms-full.txt#wasabi): An S3-compatible cloud storage service with a fixed pricing model — no egress fees, no API request fees, approximately $5–7/TB/month with a 90-day minimum storage retention policy. - [Wasabi AiR](https://llms3.com/llms-full.txt#wasabi-air): Wasabi Technologies' AI-augmented object storage tier — facial recognition, speech-to-text, OCR, and logo detection run inline as objects ingest, generating per-second searchable JSON metadata. Flat $6.99/TB/month, zero egress, AI compute absorbed into the storage rate. - [IDrive e2](https://llms3.com/llms-full.txt#idrive-e2): A budget-tier S3-compatible cloud object storage from IDrive (the established backup vendor), priced at **~$5/TB/month** with **zero egress and zero API request fees** under fair-use, and **zero minimum retention period** — buckets can delete data anytime without early-deletion penalties (unlike Wasabi's 90-day rule). 14+ regions globally including a **Tokyo region added May 5, 2026** as the first IDrive e2 footprint in Japan, explicitly positioned for AI workloads in Asia. - [Hexabyte](https://llms3.com/llms-full.txt#hexabyte): A Sweden-headquartered S3-compatible object storage provider, **launched May 2026**, priced at **€5/TB/month** with zero egress fees. EU-only infrastructure positioned explicitly at GDPR-compliant workloads — data residency stays inside EU borders, which the larger US-headquartered providers can't guarantee at the same price point. - [OVHcloud Object Storage](https://llms3.com/llms-full.txt#ovhcloud-object-storage): **OVHcloud's** S3-compatible object storage service from France's largest cloud provider. Three storage classes — **Standard (~$5/TB/mo)**, **Infrequent Access (~$3/TB/mo)**, **Archive (~$1.50/TB/mo)** — with a **30-day minimum retention** across all tiers. - [Aliyun OSS](https://llms3.com/llms-full.txt#aliyun-oss): Alibaba Cloud's S3-compatible Object Storage Service — the dominant object store across mainland China. Standard bucket/key data model with regional clusters spanning the East Data West Computing corridor (coastal hot tiers, western cold/training tiers). - [Tencent COS](https://llms3.com/llms-full.txt#tencent-cos): Tencent Cloud's Cloud Object Storage — S3-compatible, the storage backbone for Tencent's gaming, video, fintech, and Hunyuan AI training stacks. Strongest in mainland China; international regions are secondary. - [Huawei OBS](https://llms3.com/llms-full.txt#huawei-obs): Huawei Cloud's Object Storage Service — S3-compatible, tightly co-engineered with Huawei's domestic AI accelerator (Ascend 910B/910C) and the MindSpore framework. The de facto storage tier for foundation-model training that targets domestic-silicon clusters; notably the storage substrate for Zhipu AI's GLM-5 (744B parameters trained on 100,000 Ascend 910B chips). - [Google Cloud Storage](https://llms3.com/llms-full.txt#google-cloud-storage): Google Cloud Storage (GCS) is Google's fully-managed object storage service — buckets with per-object storage classes (Standard, Nearline, Coldline, Archive), strong global consistency, and automatic tiering via Autoclass. Alongside its native JSON/gRPC API it exposes an **S3-interoperable XML API with HMAC keys**, so S3 SDKs and tooling can target GCS with minimal change. - [VAST Data](https://llms3.com/llms-full.txt#vast-data): A disaggregated all-flash data platform providing unified access via S3, NFS, and SMB protocols, optimized for AI and deep learning workloads with consistent low latency. - [WEKA](https://llms3.com/llms-full.txt#weka): WEKA is an AI-native, software-defined parallel storage platform (WekaFS) that presents a single namespace across NVMe flash with S3, POSIX, NFS, and SMB access. In 2026 its center of gravity shifted from "fast filesystem for AI training" to **inference-memory infrastructure**: the **Augmented Memory Grid** pools NVMe across nodes via a custom user-space RTOS and RDMA, and offloads the LLM **KV-cache** from GPU HBM to that persistent tier with sub-millisecond retrieval — a measured **7.5 million read IOPS**. - [Dell ECS](https://llms3.com/llms-full.txt#dell-ecs): An enterprise-grade software-defined object storage platform from Dell with S3-compatible API, designed for on-premise and hybrid cloud deployments. - [NetApp StorageGRID](https://llms3.com/llms-full.txt#netapp-storagegrid): A software-defined S3-compatible object storage system with policy-driven information lifecycle management (ILM), designed for enterprise data governance and compliance. - [Pure Storage FlashBlade](https://llms3.com/llms-full.txt#pure-storage-flashblade): An all-flash unified file and object storage platform from Pure Storage with S3-compatible API, designed for AI, analytics, and modern data-intensive workloads. - [Hitachi Vantara](https://llms3.com/llms-full.txt#hitachi-vantara): Enterprise-grade software-defined object storage from Hitachi, S3-compatible, with native Iceberg-aware S3 Tables functionality announced in 2026. Named leader in the 2026 GigaOm Radar for Object Storage. - [HPE Alletra Storage MP X10000](https://llms3.com/llms-full.txt#hpe-alletra-storage-mp-x10000): Hewlett Packard Enterprise's enterprise scale-out object storage platform, S3-compatible, with native data-intelligence services baked into the storage tier. **March 16, 2026:** became the **first object-storage platform to achieve NVIDIA-Certified Storage validation (Foundation level)**, with the certification covering performance for clusters up to **128 GPUs**. - [Garage](https://llms3.com/llms-full.txt#garage): A lightweight, self-hosted, geo-distributed S3-compatible object storage system designed for small distributed clusters, edge deployments, and homelab environments. - [Alluxio](https://llms3.com/llms-full.txt#alluxio): An open-source distributed data caching and orchestration layer between S3-compatible object storage and compute (Spark, Trino, PyTorch, NVIDIA frameworks). Caches hot data on local NVMe across the compute fleet; exposes S3 / HDFS / FUSE interfaces. - [DeepSeek 3FS](https://llms3.com/llms-full.txt#deepseek-3fs): **Fire-Flyer File System** — DeepSeek's high-performance distributed file system purpose-built for AI training and inference, **open-sourced February 2025** at [github.com/deepseek-ai/3fs](https://github.com/deepseek-ai/3fs). Architecturally it's a kernel/userspace hybrid using **NVMe SSDs + RDMA** for the data plane, **CRAQ** (Chain Replication with Apportioned Queries) for strong consistency without a leader bottleneck, and **FoundationDB** for metadata. - [OpenDAL](https://llms3.com/llms-full.txt#opendal): A unified data access layer providing a single API for accessing 40+ storage backends including S3, GCS, Azure Blob, HDFS, and local filesystem. An Apache Incubating project. - [lakeFS](https://llms3.com/llms-full.txt#lakefs): A Git-like version control system for data lakes on S3, providing branching, committing, merging, and rollback for datasets stored in object storage. - [Rook](https://llms3.com/llms-full.txt#rook): A Kubernetes storage orchestrator that deploys and manages Ceph clusters on Kubernetes, providing K8s-native S3-compatible object storage via Ceph's RADOS Gateway. - [GeeseFS](https://llms3.com/llms-full.txt#geesefs): A high-performance FUSE-based filesystem that provides POSIX-compatible access to S3-compatible object storage, optimized for AI/ML training data loading. - [JuiceFS](https://llms3.com/llms-full.txt#juicefs): A POSIX-compliant distributed filesystem that uses S3-compatible object storage as its data backend and a separate metadata engine (Redis, PostgreSQL, or TiKV) for file metadata. - [Apache Polaris](https://llms3.com/llms-full.txt#apache-polaris): An open-source REST catalog for Apache Iceberg with centralized RBAC, originally developed by Snowflake and donated to Apache. - [Apache Gravitino](https://llms3.com/llms-full.txt#apache-gravitino): A unified metadata lake — "catalog of catalogs" — that federates Iceberg, Hive, Kafka, and file-based data sources into a single governance layer. Apache incubating project. - [Unity Catalog](https://llms3.com/llms-full.txt#unity-catalog): An open-source, multi-format data catalog by Databricks (Linux Foundation), supporting Iceberg, Delta Lake, Hudi, and unstructured data with built-in access control and lineage. - [Lakekeeper](https://llms3.com/llms-full.txt#lakekeeper): Lakekeeper is an open-source (Apache-2.0), **Rust-native Apache Iceberg REST Catalog**. Where the incumbent catalogs grew out of JVM/Hive-metastore lineage, Lakekeeper scales horizontally with no garbage-collection overhead — but its defining feature is **embedded Cedar policy enforcement**: it evaluates user *and agent* identities against declarative ABAC/RBAC policies and vends **short-lived, remote-signed storage credentials**, so data authorization cannot be bypassed by a rogue compute engine or a compromised agent. - [Apache XTable](https://llms3.com/llms-full.txt#apache-xtable): A zero-copy metadata translator (Apache incubating, formerly OneTable) that converts between Iceberg, Delta Lake, and Hudi metadata without copying data files. - [Delta UniForm](https://llms3.com/llms-full.txt#delta-uniform): A Delta Lake feature that automatically generates Iceberg and Hudi metadata for Delta tables, enabling cross-format reads without data copying. - [Apache Paimon](https://llms3.com/llms-full.txt#apache-paimon): An Apache top-level streaming lakehouse table format built on LSM-tree architecture, designed for high-frequency real-time writes and sub-minute data visibility on object storage. - [Flink CDC](https://llms3.com/llms-full.txt#flink-cdc): Apache Flink connectors for reading database change logs (MySQL binlog, PostgreSQL WAL) and streaming them directly into lakehouse formats on S3 without an intermediate message broker. - [Estuary Flow](https://llms3.com/llms-full.txt#estuary-flow): A managed real-time data integration platform with exactly-once connectors for streaming data from databases and SaaS APIs into S3-based lakehouses. - [Bytewax](https://llms3.com/llms-full.txt#bytewax): A Python-native stream processing framework built on a Rust-based Timely Dataflow engine, designed for real-time data transformation and vectorization pipelines. - [Apache Airflow](https://llms3.com/llms-full.txt#apache-airflow): A platform for programmatically authoring, scheduling, and monitoring workflows as directed acyclic graphs (DAGs) written in Python. The industry standard for batch data pipeline orchestration. - [Alarik](https://llms3.com/llms-full.txt#alarik): A high-performance, S3-compatible object storage server written in Swift on SwiftNIO, distributed under Apache 2.0. Uses ARC (Automatic Reference Counting) instead of garbage collection, eliminating GC-pause latency spikes; ships with a built-in Nuxt-based admin console. - [RustFS](https://llms3.com/llms-full.txt#rustfs): A high-performance, Rust-based, S3-compatible object storage server positioned as a truly open-source alternative to MinIO. - [Marquez](https://llms3.com/llms-full.txt#marquez): The reference implementation for OpenLineage — an open-source metadata and lineage service with a web UI for visualizing data flows across S3-based pipelines. - [Apache Ranger](https://llms3.com/llms-full.txt#apache-ranger): A framework for fine-grained security and centralized auditing across the Hadoop and lakehouse ecosystem, providing column-level and row-level access control for S3-backed data. - [S3 Bucket Key](https://llms3.com/llms-full.txt#s3-bucket-key): An S3 feature that reduces KMS API calls by up to 99% by caching encryption key material at the bucket level rather than making individual KMS requests per object. Now the primary encryption path as AWS phases out SSE-C for new buckets starting April 2026. - [WarpStream](https://llms3.com/llms-full.txt#warpstream): A stateless, S3-native data streaming platform with Kafka protocol compatibility. No local disks, no brokers to manage — all data written directly to object storage. - [Apache Doris](https://llms3.com/llms-full.txt#apache-doris): A real-time analytical database with native lakehouse capabilities, querying Iceberg, Hudi, and Paimon tables on S3 directly. Late 2025 added native Paimon Deletion Vector support and Hive/FileSystem catalogs. - [Infinidat](https://llms3.com/llms-full.txt#infinidat): An enterprise storage platform with S3-compatible object storage, delivering hardware-defined performance guarantees at petabyte scale for on-premises deployments. - [SoftIron](https://llms3.com/llms-full.txt#softiron): A purpose-built, hardware-defined storage appliance providing S3-compatible object storage on Ceph with auditable supply-chain manufacturing, targeting sovereign and defense infrastructure. - [AWS Glue Catalog](https://llms3.com/llms-full.txt#aws-glue-catalog): AWS's fully managed metadata catalog service that stores table definitions, partition information, and schema metadata for data stored in S3, serving as the default metastore for AWS analytics services. - [Hive Metastore](https://llms3.com/llms-full.txt#hive-metastore): The original metadata catalog service from the Apache Hive project that stores table schemas, partition mappings, and storage locations for data on S3 and HDFS. Commonly abbreviated as HMS. - [Dremio](https://llms3.com/llms-full.txt#dremio): A lakehouse query engine that provides SQL analytics directly on S3-stored data with integrated Iceberg table management, data reflections (materialized views), and a semantic layer. - [Databricks](https://llms3.com/llms-full.txt#databricks): A unified data + AI platform built on Apache Spark and Delta Lake, with a managed lakehouse covering data engineering, SQL analytics, ML/AI, and (as of 2026) operational application data via **Lakebase**. Originated the lakehouse architecture pattern. - [Athena](https://llms3.com/llms-full.txt#athena): AWS's serverless, pay-per-query SQL engine that runs queries directly against data stored in S3 without requiring infrastructure provisioning or cluster management. - [Debezium](https://llms3.com/llms-full.txt#debezium): An open-source distributed platform for change data capture (CDC) that streams row-level changes from databases (PostgreSQL, MySQL, MongoDB, and others) into event streams, enabling real-time ingestion into S3-based lakehouses. - [DataFusion](https://llms3.com/llms-full.txt#datafusion): An extensible query execution framework written in Rust, built on Apache Arrow, that provides a SQL query planner and execution engine for building custom analytics applications over S3-stored data. - [Polars](https://llms3.com/llms-full.txt#polars): A high-performance DataFrame library written in Rust with Python and Node.js bindings, designed for fast columnar analytics with lazy evaluation and native S3 read support. - [Kafka Tiered Storage](https://llms3.com/llms-full.txt#kafka-tiered-storage): An Apache Kafka feature (KIP-405) that offloads older log segments from broker-local disks to S3-compatible object storage, extending Kafka's retention capacity without scaling broker storage proportionally. - [Redpanda](https://llms3.com/llms-full.txt#redpanda): A Kafka-compatible streaming platform written in C++ that provides a single binary deployment with built-in Tiered Storage to S3, eliminating the need for ZooKeeper/KRaft and JVM tuning. - [Project Nessie](https://llms3.com/llms-full.txt#project-nessie): An open-source transactional catalog for data lakes that provides Git-like branching, tagging, and commit semantics for Iceberg table metadata, enabling isolated experimentation and atomic multi-table operations. - [Airbyte](https://llms3.com/llms-full.txt#airbyte): An open-source data integration platform that provides pre-built connectors for extracting data from hundreds of sources (APIs, databases, SaaS tools) and loading it into S3-based data lakes and lakehouses. - [Spark Structured Streaming](https://llms3.com/llms-full.txt#spark-structured-streaming): Apache Spark's stream processing API that enables continuous, micro-batch, or near-real-time ingestion of data streams into S3-backed tables using the same DataFrame/SQL abstractions as batch Spark. - [Velox](https://llms3.com/llms-full.txt#velox): A C++ vectorized execution engine developed by Meta that provides a unified, high-performance data processing backend usable by multiple front-end query engines including Presto, Spark, and custom data systems. - [dlt](https://llms3.com/llms-full.txt#dlt): A Python library for declarative data loading (data load tool) that simplifies building data pipelines to extract from APIs and load into S3-based data lakes and lakehouses with automatic schema inference and evolution handling. - [OpenMetadata](https://llms3.com/llms-full.txt#openmetadata): An open-source metadata platform providing a centralized catalog for data discovery, quality, lineage, and governance across S3-based data lakes and lakehouses. - [DataHub](https://llms3.com/llms-full.txt#datahub): An open-source metadata platform originally developed at LinkedIn that provides data discovery, lineage tracking, governance, and observability across data lake and lakehouse environments. - [Apache Atlas](https://llms3.com/llms-full.txt#apache-atlas): An open-source metadata management and governance framework originally built for the Hadoop ecosystem, providing classification, lineage, and search over data assets including S3-stored datasets. - [rclone](https://llms3.com/llms-full.txt#rclone): A command-line program that synchronizes files and directories to and from cloud storage, supporting **70+ backends** through a single unified CLI — Amazon S3, S3-compatible providers (every cloud-storage entry on this index), Google Cloud Storage, Azure Blob, Backblaze B2, Wasabi, plus SFTP, WebDAV, and several decentralized stores. **Open-source Go**, drop-in single binary, no daemon required for one-shot transfers. - [Mixpeek](https://llms3.com/llms-full.txt#mixpeek): A multimodal vector store (MVS) testing and benchmarking platform that evaluates S3-compatible providers for AI/ML workloads — feeding identical embedding workloads through different storage backends (S3, R2, Tigris, Wasabi, MinIO, etc.) and reporting per-provider latency, throughput, and cost characteristics. Independent benchmarks rather than vendor-marketing claims; published reports periodically. - [Tigris Data](https://llms3.com/llms-full.txt#tigris-data): An S3-compatible, globally distributed object storage platform engineered to optimize small-object workloads through metadata inlining, adjacent key coalescing, and LSM-backed caching, delivering sub-10ms read/write latency for KB-sized payloads. - [NVIDIA GPUDirect RDMA for S3](https://llms3.com/llms-full.txt#nvidia-gpudirect-rdma-for-s3): NVIDIA's client/server library stack released November 2025 that moves S3-compatible object data directly from storage-node memory to GPU high-bandwidth memory over RoCE v2 or InfiniBand — bypassing the host OS kernel and TCP/IP stack. Client libraries run on GPU nodes (or offload to BlueField-3 DPUs via the ROS2 / SmartNIC pattern); server libraries ship in object-storage controllers from MinIO AIStor, Cloudian HyperStore, Dell ObjectScale, and HPE Alletra Storage MP X10000. - [Tailscale](https://llms3.com/llms-full.txt#tailscale): A WireGuard-based secure mesh-networking platform. In April 2026, Tailscale added an S3-compatible export for log and telemetry data, joining the growing set of operational tools that emit data in S3 format directly to user-controlled buckets. - [Mem0](https://llms3.com/llms-full.txt#mem0): An open-source universal memory layer for AI agents, distributed under Apache 2.0. Provides persistent semantic memory backed by S3-compatible object storage with multi-signal retrieval combining semantic embeddings, BM25 keyword matching, and entity linking. - [Zep](https://llms3.com/llms-full.txt#zep): An open-source AI memory platform (Apache 2.0) built around the **Graphiti** temporal-knowledge-graph engine. Zep stores semantic facts as attributes directly on graph edges between entity nodes; every node and edge carries `valid_at` and `invalid_at` properties, letting agents traverse historical states, reason about knowledge decay, and maintain episodic memory autonomously. - [Graphiti](https://llms3.com/llms-full.txt#graphiti): The open-source temporal knowledge-graph engine that powers Zep. Real-time knowledge-graph construction for AI agents — stores entities as nodes, relationships as time-bounded edges, and semantic facts as edge attributes. - [LMCache](https://llms3.com/llms-full.txt#lmcache): A high-performance distributed **KV-cache offloading** layer for LLM inference, written to maximize prefix-reuse across vLLM and other inference engines. Repository: [github.com/LMCache/LMCache](https://github.com/LMCache/LMCache). - [SGLang](https://llms3.com/llms-full.txt#sglang): An open-source LLM serving engine optimized for structured generation and prefix sharing. Distributed under Apache 2.0. - [Mooncake](https://llms3.com/llms-full.txt#mooncake): The open-source LLM serving platform for **Kimi**, Moonshot AI's leading LLM product. Repository: [github.com/kvcache-ai/Mooncake](https://github.com/kvcache-ai/Mooncake). - [Vestige](https://llms3.com/llms-full.txt#vestige): A cognitive-memory system for AI agents, distributed as a single ~22MB Rust binary that doubles as an **MCP server** for Claude, Cursor, VS Code, Xcode, and JetBrains. Repository: [github.com/samvallad33/vestige](https://github.com/samvallad33/vestige). - [LangGraph](https://llms3.com/llms-full.txt#langgraph): An open-source agent-runtime framework built on top of LangChain that models agentic workflows as **state machines** — supervisor/subagent topologies, branching reasoning paths, error-recovery loops, and durable checkpoint persistence. LangGraph has become the industry-standard pattern for production agentic deployments where workflows must reliably pause, audit, and resume after failures or long-running operations. - [LiteLLM](https://llms3.com/llms-full.txt#litellm): An open-source **model gateway** that abstracts the complexity of calling hundreds of different LLM endpoints behind a unified, OpenAI-compatible API. Provides load balancing, automatic failover, cost optimization, rate limiting, and — critically for S3-relevance — **semantic-cache backends targeting S3** (`type: s3` in the LiteLLM config schema). - [Helicone AI Gateway](https://llms3.com/llms-full.txt#helicone-ai-gateway): An open-source **AI gateway** (MIT-licensed) sitting between the agent runtime and foundation models. Provides observability (per-call traces persisted to S3), cost analytics, semantic caching, and unified routing across LLM providers. - [Traefik AI Gateway](https://llms3.com/llms-full.txt#traefik-ai-gateway): **Traefik Labs**'s commercial AI gateway, layered on the Traefik reverse proxy heritage. In December 2025, Traefik joined the **HPE Unleash AI Partner Program** to deliver sovereign AI infrastructure with a **Triple Gate Security Architecture** — positioning the gateway as the policy-enforcement boundary for regulated, on-prem, and air-gapped LLM deployments. - [NVIDIA BlueField-4](https://llms3.com/llms-full.txt#nvidia-bluefield-4): NVIDIA's fourth-generation **Data Processing Unit (DPU)**, announced in 2026 as the substrate for a new class of **AI-native storage infrastructure**. The BlueField-4 hosts storage-management software directly on the DPU itself — allowing data placement, context retrieval, and access policy enforcement to happen at the pod level rather than at the application or filesystem layer. - [Inference Context Memory Storage (ICMS)](https://llms3.com/llms-full.txt#inference-context-memory-storage-icms): A new storage tier — also referred to as **Context Memory eXtension (CMX)** — sitting between traditional NVMe SSDs and cold S3 buckets, specifically optimized for AI inference state. Leverages high-performance DPUs (NVIDIA BlueField-4) and DPU-attached flash to offload data placement and context retrieval at the pod level. - [NIXL (NVIDIA Inference Transfer Library)](https://llms3.com/llms-full.txt#nixl-nvidia-inference-transfer-library): NVIDIA's library coordinating the highly orchestrated data movement between storage tiers, GPUs, and inference engines. NIXL provides the runtime-level glue that connects GPU-resident KV-cache pools to S3-backed durable storage and to peer GPUs across the cluster fabric. - [MemVerge](https://llms3.com/llms-full.txt#memverge): A commercial **memory orchestration** platform for AI workloads, providing software-defined coordination of CXL-attached memory pools, GPU HBM, and CXL-connected NVMe across distributed inference clusters. MemVerge's framing: as the hardware substrate becomes more heterogeneous (HBM3e → DRAM → CXL.mem → NVMe → S3), the software layer that decides *which memory to use for which workload* becomes the load-bearing decision point. - [NVIDIA cuObject](https://llms3.com/llms-full.txt#nvidia-cuobject): NVIDIA's CUDA library extending **GPUDirect Storage (GDS)** semantics to S3-compatible object storage. Where the original GDS targeted block and file storage via `cuFile`, cuObject enables high-performance **RDMA transfers over S3 APIs** by separating the control plane from the data plane: 1. - [Restic](https://llms3.com/llms-full.txt#restic): Fast secure backup tool with S3 support. - [Alibaba Cloud PolarDB AI Lakehouse (Lakebase)](https://llms3.com/llms-full.txt#alibaba-cloud-polardb-ai-lakehouse-lakebase): Database AI lakehouse with in-DB vector retrieval, graph compute, and inference. - [Aliyun CPFS + OSS Hybrid](https://llms3.com/llms-full.txt#aliyun-cpfs-oss-hybrid): Aliyun POSIX cache over OSS for AI training — admission of object storage limitations. - [IndexCache](https://llms3.com/llms-full.txt#indexcache): 1.82x TTFT speedup at 200K context. - [Multi-Token Prediction (MTP)](https://llms3.com/llms-full.txt#multi-token-prediction-mtp): Predict N+1, N+2 tokens simultaneously for denser gradients. - [Cachey](https://llms3.com/llms-full.txt#cachey): Read-through cache for S3-compatible storage (Rust, hybrid memory+disk). - [etcd](https://llms3.com/llms-full.txt#etcd): . - [HS5](https://llms3.com/llms-full.txt#hs5): Fast single-node S3-compatible storage in C++ (LMDB-based, MinIO replacement). - [SQLite](https://llms3.com/llms-full.txt#sqlite): . - [AWS CLI](https://llms3.com/llms-full.txt#aws-cli): Official AWS command-line interface. - [Boto3](https://llms3.com/llms-full.txt#boto3): Official Python SDK for AWS. - [S3cmd](https://llms3.com/llms-full.txt#s3cmd): CLI tool for S3 bucket and file management. - [TransMLA](https://llms3.com/llms-full.txt#transmla): GQA → MLA migration without retraining from scratch. - [minikv](https://llms3.com/llms-full.txt#minikv): Distributed KV + S3-compatible object store in Rust (Raft, multi-tenant). - [chDB](https://llms3.com/llms-full.txt#chdb): Embedded OLAP SQL engine powered by ClickHouse. In-process analytical database for Python, Go, Rust, Node.js. - [Ollama](https://llms3.com/llms-full.txt#ollama): Open-source local-LLM runtime that lets developers run hundreds of language models — including DeepSeek-R1, Llama 3.1, Gemma 4, Qwen 3, Kimi K2.5, GLM-5, MiniMax, and gpt-oss — directly on local hardware via a unified CLI and HTTP API. Architecture sits on `llama.cpp` (with GGUF model format) for general inference and uses Apple's MLX framework to accelerate on Apple Silicon. - [Pinecone](https://llms3.com/llms-full.txt#pinecone): Managed serverless vector database with a storage-compute separation architecture built directly on Amazon S3 (and equivalent object stores on GCP/Azure). Vectors live in immutable **slab** files on S3; queries run against a stateless query-executor fleet that caches slabs on local SSDs. - [Chroma](https://llms3.com/llms-full.txt#chroma): Open-source AI-native search infrastructure with a client-server architecture and pluggable storage backends. In embedded mode runs as SQLite + HNSW (via hnswlib); in server mode runs as a standalone gRPC/REST service. - [Tigris](https://llms3.com/llms-full.txt#tigris): Globally-distributed S3-compatible object storage service that automatically replicates objects close to the regions writing them and pulls them closer to readers based on observed traffic patterns. Drop-in for existing AWS S3 / GCS SDKs — most teams adopt by setting an endpoint and access key without code changes. - [Storj](https://llms3.com/llms-full.txt#storj): Decentralized S3-compatible object storage built on a network of 30,000+ independent storage nodes worldwide. Files are encrypted client-side, erasure-coded into 80 pieces, and distributed such that any 29 pieces can reconstruct the original — yielding claimed **11 nines (99.999999999%) durability** without any single trusted entity (including Storj itself) having access to the plaintext. - [Scality RING](https://llms3.com/llms-full.txt#scality-ring): Enterprise-grade scale-out object + file storage software from Scality, built around the RING distributed architecture. Supports full S3 API plus file protocols (NFS, SMB), proven to scale to **100PB+ and hundreds of billions of objects in a single deployment**. - [CoreWeave AI Object Storage](https://llms3.com/llms-full.txt#coreweave-ai-object-storage): Fully managed S3-compatible object storage from CoreWeave, purpose-built for AI workloads (training datasets, model weights, checkpoints, embedding stores). Architecture separates compute from storage but keeps GPU-local caching tight via **Local Object Transport Accelerator (LOTA)** — a proxy service that runs on the GPU-node hardware, presents an S3 endpoint locally, and uses the node's disks as a tiered cache. - [Cubbit DS3](https://llms3.com/llms-full.txt#cubbit-ds3): Geo-distributed, multi-tenant S3-compatible object storage built around a "Swarm" architecture — encrypted shards distributed across nodes that can span single-site to multi-site to fully geo-distributed topologies. Three-entity design: **Agent** (data-plane node), **Coordinator** (centralized microservices that orchestrate the swarm), **SDK / S3 Gateway** (external access surface). - [Hetzner Object Storage](https://llms3.com/llms-full.txt#hetzner-object-storage): S3-compatible object storage from German hosting provider Hetzner, served from EU data centers in Falkenstein, Nuremberg, and Helsinki. GDPR-compliant by default, priced at €4.99/month base (includes 1 TB storage + 1 TB egress), pay-as-you-go beyond the included quota. - [Linode Object Storage (Akamai Cloud)](https://llms3.com/llms-full.txt#linode-object-storage-akamai-cloud): S3-compatible object storage from Akamai's developer cloud (formerly Linode, acquired by Akamai 2022). Globally distributed across 20+ regions, supports petabyte-scale buckets, single-flat-namespace bucket design. - [Yandex Object Storage](https://llms3.com/llms-full.txt#yandex-object-storage): S3-compatible cloud object storage from Yandex Cloud. Replicates data across multiple availability zones with a **99.98% SLA**, supports standard + cold storage tiers, and ships with compliance attestations for Russian law (152-FZ), GDPR, ISO, and PCI DSS. - [Nebius AI Cloud](https://llms3.com/llms-full.txt#nebius-ai-cloud): GPU-first AI cloud platform with S3-compatible object storage as one tier of a unified AI infrastructure stack (GPU droplets, managed Kubernetes, managed Postgres, block volumes, shared filesystem, container registry, serverless AI inference). The storage tier is specifically engineered to feed datasets to GPU clusters at maximum sustained throughput, using high-speed shared storage for multi-host training checkpoint writes/reads. - [DigitalOcean AI-Native Cloud](https://llms3.com/llms-full.txt#digitalocean-ai-native-cloud): Full-stack AI cloud platform launched by DigitalOcean at **Deploy 2026** (April 2026), explicitly built end-to-end for the inference/agentic era rather than retrofitting GPU primitives onto a general cloud. Architecture spans five layers: **infrastructure, core cloud, inference, data, and managed agents.** S3-compatible object storage is part of the Core Cloud component, alongside Kubernetes (DOKS), CPU/GPU Droplets, VPC networking, and block/file storage. - [OpenMaxIO](https://llms3.com/llms-full.txt#openmaxio): Initial community fork of [MinIO](/node/minio) created in May 2025 to restore the management UI and admin features that MinIO Inc. removed from the open-source community edition. - [SAP HANA Cloud Data Lake](https://llms3.com/llms-full.txt#sap-hana-cloud-data-lake): SAP HANA Cloud's data-lake tier — extends the in-memory HANA database with **virtual tables that provide read-only access to Apache Iceberg data sitting in external object storage** (AWS S3, Azure Blob, ADLS Gen2, Google Cloud Storage). Pairs with **HANA Native Storage Extension (NSE)** to tier warm/cold data directly to S3-compatible endpoints without application refactoring. - [DataKit (Guance Cloud)](https://llms3.com/llms-full.txt#datakit-guance-cloud): Open-source unified data-collection agent for the **Guance Cloud** observability platform. Supports Linux / Windows / macOS hosts plus iOS / Android / Unity / WeChat mini-program / RUM-web variants. - [S3 Versioning](https://llms3.com/llms-full.txt#s3-versioning): A bucket-level Amazon S3 feature that preserves every version of every object — every PUT or DELETE creates a new version rather than overwriting or removing the previous one. Each version gets a unique **VersionId**; DELETE operations create a special **delete marker** rather than actually erasing data. - [S3 Replication](https://llms3.com/llms-full.txt#s3-replication): Amazon S3 feature for automatically replicating objects + metadata + tags from a source bucket to one or more destination buckets — either Cross-Region Replication (CRR) for geographic redundancy or Same-Region Replication (SRR) for compliance/account-isolation. Built on top of [S3 Versioning](/node/s3-versioning) (versioning must be enabled on both source and destination). - [S3 Object Lock](https://llms3.com/llms-full.txt#s3-object-lock): Write-once-read-many (WORM) feature for Amazon S3 buckets — once configured, an object version cannot be deleted or overwritten for either a **fixed retention period** or **indefinitely via legal hold**. Two retention modes available: **Compliance Mode** (no override, even root can't shorten retention or delete protected versions) and **Governance Mode** (specific IAM permissions can override). - [S3 Glacier](https://llms3.com/llms-full.txt#s3-glacier): Family of three S3 cold-storage tiers, all under the `S3 Glacier` brand but with structurally different retrieval-latency profiles: - **S3 Glacier Instant Retrieval** — millisecond access, $0.004/GB/month, 90-day minimum - **S3 Glacier Flexible Retrieval** — 3-5 hour standard restore (1-5 min expedited at $0.03/GB premium), $0.0036/GB/month, 90-day minimum - **S3 Glacier Deep Archive** — 12-hour restore, $0.00099/GB/month (~$1/TB), 180-day minimum Plus 40 KB metadata overhead per archived object (billed at standard rates for Flexible Retrieval + Deep Archive). Best-in-cloud per-GB storage cost; the catch is retrieval cost + retrieval latency. - [Mountpoint for Amazon S3](https://llms3.com/llms-full.txt#mountpoint-for-amazon-s3): Open-source FUSE-style file client from AWS that mounts an S3 bucket as a local POSIX filesystem on a compute instance. Built on the **AWS Common Runtime (CRT)** library for high-throughput sequential access. - [Amazon Keyspaces (for Apache Cassandra)](https://llms3.com/llms-full.txt#amazon-keyspaces-for-apache-cassandra): AWS-managed, serverless **Apache Cassandra–compatible** wide-column NoSQL database service. Zero infrastructure management, pay-per-request billing, automatic scaling, point-in-time recovery (PITR) with 35-day window. - [vLLM](https://llms3.com/llms-full.txt#vllm): An open-source LLM serving engine originally developed at UC Berkeley (Sky Computing Lab) that introduced **PagedAttention** — a paging-style KV-cache memory manager modeled on OS virtual memory. The block-based allocator eliminates KV-cache fragmentation, enables zero-copy prefix sharing across requests, and is now the reference implementation that most KV-cache-aware infrastructure (LMCache, Mooncake, NIXL, ObjectCache) targets. - [TensorRT-LLM](https://llms3.com/llms-full.txt#tensorrt-llm): NVIDIA's optimized LLM inference framework built on TensorRT, providing hand-tuned CUDA kernels, in-flight batching, paged KV-cache, FP8 / FP4 / INT4 quantization, speculative decoding, and structured-output decoding. It is the highest-performance commercial path for serving LLMs on NVIDIA GPUs, particularly for Hopper (H100/H200) and Blackwell (B100/B200/GB200) hardware. - [Gemma 4 Shared KV Cache](https://llms3.com/llms-full.txt#gemma-4-shared-kv-cache): A Gemma-4-specific architectural feature — exposed in HuggingFace `transformers` as the `num_kv_shared_layers` config field — that causes the last *k* transformer layers to **share** the KV-cache of layer *L-k* rather than maintaining independent caches. This is a **structural** (architecture-level) KV-cache size reduction, distinct from algorithmic compression (quantization, eviction, MLA). - [TyphoonMLA](https://llms3.com/llms-full.txt#typhoonmla): A hybrid kernel formulation for DeepSeek-style Multi-head Latent Attention (MLA) introduced in 2026 that interleaves the *naive* (decompressed-head) and *absorbed* (matrix-fused) MLA computation paths within a single attention call, choosing the cheaper path per stage. It is a pure inference-kernel optimization — model weights are unchanged. - [SnapMLA](https://llms3.com/llms-full.txt#snapmla): An FP8-native quantization scheme for MLA latent KV-cache, introduced 2026, that quantizes the *latent* tensor (the compressed shared representation that MLA stores instead of full per-head K and V) rather than quantizing per-head K and V independently. Because the latent tensor has a different statistical distribution than raw K/V, naive FP8 quantization on it loses 2-5% accuracy; SnapMLA's calibration recipe brings the loss to <0.5%. - [CacheGen](https://llms3.com/llms-full.txt#cachegen): A streaming KV-cache compression and transmission system from researchers at the University of Chicago that treats the KV-cache as a **bitstream** rather than a tensor. CacheGen applies layer-wise quantization (with per-layer bit budgets) and a custom entropy coder (arithmetic coding with cross-channel context modeling) to shrink KV-cache transmission size by 3-10x for the network shipment between prefill and decode workers in disaggregated serving. - [OpenMemory MCP](https://llms3.com/llms-full.txt#openmemory-mcp): A privacy-first, locally-hosted persistent-memory server (developed by mem0ai under the CaviraOSS open-source line) that speaks the **Model Context Protocol** natively. OpenMemory MCP runs as a localized Docker deployment, exposes episodic, semantic, and procedural memory primitives via JSON-RPC over Server-Sent Events, and is the de-facto reference for "bring your own memory" across MCP-aware clients (Claude Desktop, Cursor, Cline, Codex, Windsurf, Antigravity). - [Kitaru](https://llms3.com/llms-full.txt#kitaru): An open-source **durable runtime** for AI agents from ZenML, designed as the "outer harness" that sits underneath any agent SDK (Pydantic AI, LangGraph, LlamaIndex, custom) and provides transparent checkpointing, replayable state, asynchronous suspension, and S3-backed artifact persistence. Kitaru explicitly separates the agent's *inner* concerns (prompt shape, tool selection, model choice) from its *outer* concerns (failure recovery, resumability, infrastructure binding) — letting an agent survive Kubernetes pod evictions, function timeouts, and downstream API failures without losing progress. - [Letta](https://llms3.com/llms-full.txt#letta): An open-source **OS-style memory management framework** for LLM agents (formerly **MemGPT**), built on the analogy that the LLM's context window is RAM and external storage is "disk" — the agent's runtime swaps memory blocks in and out of the context window like an operating system pages virtual memory. Letta exposes core memory (always-resident persona + user state), recall memory (searchable conversation history), and archival memory (large semantic store), each backed by configurable storage tiers including PostgreSQL, vector stores, and S3-compatible object storage. - [Cognee](https://llms3.com/llms-full.txt#cognee): An open-source **persistent agent-memory framework** that builds a hybrid graph-plus-vector memory layer for LLM agents. Cognee ingests unstructured data (documents, conversations, tool outputs), automatically extracts entities and relationships into a knowledge graph (NetworkX, Neo4j, KuzuDB), and dual-indexes the same content into a vector store (LanceDB, Qdrant, Weaviate, Milvus) — giving agents both relational reasoning (graph traversal) and semantic retrieval (similarity search) from a single ingest pipeline. - [Supermemory](https://llms3.com/llms-full.txt#supermemory): A managed-SaaS **memory layer for LLM applications** focused on developer ergonomics — a few-line SDK that ingests user/conversation content and serves low-latency (~sub-300ms) retrieval over a hybrid vector + structured-metadata index. Supermemory targets the "non-technical builder" market: makers who want a memory layer working out of the box without choosing a vector DB, designing an entity schema, or running their own retrieval pipeline. - [Amazon Bedrock AgentCore Runtime](https://llms3.com/llms-full.txt#amazon-bedrock-agentcore-runtime): AWS's managed **stateful agent runtime** for the Bedrock platform, providing isolated **microVMs** (Firecracker-style lightweight VMs) per agent session that preserve stateful MCP-server features — elicitation, sampling, progress notifications — across the otherwise stateless transport layer of MCP 2026-07-28. AgentCore Runtime lets developers deploy MCP servers as managed AWS workloads without operating their own session-affinity-aware load balancers. - [Cloudian HyperStore](https://llms3.com/llms-full.txt#cloudian-hyperstore): On-prem, S3-compatible, exabyte-scale object storage whose 8.2.6 release is NVIDIA-Certified and supports S3 over RDMA for direct GPU-to-storage data paths. - [StarTree Cloud](https://llms3.com/llms-full.txt#startree-cloud): A managed Apache Pinot platform that serves sub-second, high-concurrency analytics directly on Apache Iceberg and Parquet tables in object storage, with no ETL into a separate store. - [Rabata](https://llms3.com/llms-full.txt#rabata): A UK-operated (RCS Technologies) S3-compatible object storage service with flat per-GB pricing, no API-request fees, and no inbound charges, marketed at ~70% below AWS S3. - [Turbopuffer](https://llms3.com/llms-full.txt#turbopuffer): An object-storage-native vector and full-text search engine where S3/GCS is the durable source of truth and SSD/RAM are caches, built around S3 strong consistency and compare-and-swap. - [TreeCat](https://llms3.com/llms-full.txt#treecat): A dedicated, standalone catalog engine for large data systems that replaces general-purpose stores and table-format manifest trees with a hierarchical, path-queryable, versioned metadata engine. Per [TreeCat: Standalone Catalog Engine for Large Data Systems](https://arxiv.org/abs/2503.02956). - [Microsoft OneLake](https://llms3.com/llms-full.txt#microsoft-onelake): The single, tenant-wide data lake under Microsoft Fabric, built on ADLS Gen2, storing tables as Delta by default and exposing them through an Iceberg REST Catalog API for external engines. ## Standards - [S3 API](https://llms3.com/llms-full.txt#s3-api): The HTTP-based API for object storage operations — PUT, GET, DELETE, LIST, multipart upload. The de-facto standard for object storage interoperability. - [Apache Parquet](https://llms3.com/llms-full.txt#apache-parquet): A columnar file format specification designed for efficient analytical queries. Stores data by column, enabling predicate pushdown, projection pruning, and compression. - [Apache Arrow](https://llms3.com/llms-full.txt#apache-arrow): A cross-language in-memory columnar data format specification with libraries for zero-copy reads, IPC, and efficient analytics. - [Iceberg Table Spec](https://llms3.com/llms-full.txt#iceberg-table-spec): The specification defining how a logical table is represented as metadata files, manifest lists, manifests, and data files on object storage. Provides ACID, schema evolution, hidden partitioning, and time-travel. - [Delta Lake Protocol](https://llms3.com/llms-full.txt#delta-lake-protocol): The specification for ACID transaction logs over Parquet files on object storage. Defines how writes, deletes, and schema changes are recorded in a JSON-based commit log stored alongside data files. - [ORC](https://llms3.com/llms-full.txt#orc): Optimized Row Columnar file format specification — a columnar format with built-in indexing, compression, and predicate pushdown support, originally developed for the Hive ecosystem. - [Apache Avro](https://llms3.com/llms-full.txt#apache-avro): A row-based data serialization format with rich schema definition and built-in schema evolution support. Schemas are stored with the data. - [Container Object Storage Interface (COSI)](https://llms3.com/llms-full.txt#container-object-storage-interface-cosi): A Kubernetes API standard for provisioning and managing object storage buckets as native Kubernetes resources, analogous to CSI (Container Storage Interface) for block and file storage. - [Iceberg REST Catalog Spec](https://llms3.com/llms-full.txt#iceberg-rest-catalog-spec): An open REST API specification for Apache Iceberg catalog operations — namespace/table listing, metadata load, commit, snapshot management — enabling multi-engine interoperability through a standardized HTTP-based catalog interface. Extended in practice with **credential vending**, where the catalog mints prefix-scoped, short-lived S3 credentials at table-load time. - [NVMe-oF / NVMe over TCP](https://llms3.com/llms-full.txt#nvme-of-nvme-over-tcp): A protocol family for accessing NVMe storage devices over network fabrics (RDMA, TCP, Fibre Channel), enabling disaggregated flash storage with near-local access latency. - [NFS v4.1](https://llms3.com/llms-full.txt#nfs-v4-1): IETF RFC 5661 — a stateful evolution of NFS that introduces sessions, parallel NFS (pNFS), and close-to-open consistency semantics. In the 2026 S3 ecosystem, it's the mount protocol sitting underneath Amazon S3 Files, letting ordinary POSIX clients treat an S3 bucket as a mutable file system. - [RDMA (RoCE v2 / InfiniBand)](https://llms3.com/llms-full.txt#rdma-roce-v2-infiniband): A network transport protocol for direct memory-to-memory data transfer between machines, bypassing the operating system kernel and CPU for minimal latency and maximum throughput. In early 2026, NVIDIA shipped RDMA client and server libraries for S3-compatible storage as part of the CUDA Toolkit, marking the transition from niche technical preview to standard "AI Factory" infrastructure. - [Zoned Namespace (ZNS) SSD](https://llms3.com/llms-full.txt#zoned-namespace-zns-ssd): An NVMe SSD specification that exposes storage as sequential-write zones instead of random-access blocks, reducing write amplification and over-provisioning overhead. - [AWS Signature Version 4 (SigV4)](https://llms3.com/llms-full.txt#aws-signature-version-4-sigv4): The AWS cryptographic request signing protocol used to authenticate and authorize S3 API requests. Every S3 request is signed with HMAC-SHA256 using the caller's credentials. - [Object Lock / WORM Semantics](https://llms3.com/llms-full.txt#object-lock-worm-semantics): An S3 API extension that provides write-once-read-many (WORM) protection for objects, preventing deletion or modification for a specified retention period. - [CRDT](https://llms3.com/llms-full.txt#crdt): Conflict-free Replicated Data Types — mathematical data structures that can be replicated across multiple sites and merged without coordination, guaranteeing eventual consistency. - [OpenLineage](https://llms3.com/llms-full.txt#openlineage): An open standard that defines a common JSON schema for capturing data lineage events — what datasets were consumed, what was produced, and how transformations connected them. - [S3 Directory Bucket](https://llms3.com/llms-full.txt#s3-directory-bucket): A specialized S3 bucket type with a hierarchical directory namespace — forward slash is a true directory boundary, not a delimiter — optimized for high-request-rate workloads. Required for S3 Express One Zone. - [Iceberg V3 Spec](https://llms3.com/llms-full.txt#iceberg-v3-spec): The 2025 evolution of the Apache Iceberg table specification, introducing Row Lineage for row-level provenance tracking, native CDC detection, enhanced deletion handling, and metadata designed to make the lakehouse "agent-ready" for AI systems. - [Puffin File Format](https://llms3.com/llms-full.txt#puffin-file-format): A binary format defined inside the Apache Iceberg specification for storing table-level statistics, indexes, and (in V3) deletion vectors as auxiliary blobs alongside Parquet data files. A Puffin file is a sequence of typed blobs plus a footer cataloging blob offsets, sizes, and types. - [Vortex](https://llms3.com/llms-full.txt#vortex): A next-generation open-source columnar file format incubating at the Linux Foundation AI & Data Foundation, designed to supersede Apache Parquet for AI and analytics workloads via zero-copy Arrow integration and compute-on-encoded-data kernels (ALP for floats, FSST for strings). - [Nimble](https://llms3.com/llms-full.txt#nimble): A columnar file format from Meta, purpose-built for ML feature engineering on wide tables (10K+ columns), using block encoding for bounded memory and Flatbuffers metadata for SIMD/GPU-efficient decode. Open-sourced as `facebookincubator/nimble`. - [Lance Format](https://llms3.com/llms-full.txt#lance-format): A modern columnar data format optimized for random access and vector search on object storage, providing up to 100x faster random access than Parquet for AI retrieval workloads. - [Data Contracts](https://llms3.com/llms-full.txt#data-contracts): A formal agreement between data producers and data consumers that specifies the schema, semantics, SLAs, and quality expectations for a dataset, typically enforced as a machine-readable specification applied at ingestion boundaries. - [Model Context Protocol (MCP)](https://llms3.com/llms-full.txt#model-context-protocol-mcp): An open, vendor-neutral protocol — frequently called "**USB-C for AI**" — that standardizes how reasoning engines (LLMs and agentic runtimes) discover, invoke, and exchange context with tools and data sources. Uses **JSON-RPC 2.0** over multiple transports. - [CXL 3.0](https://llms3.com/llms-full.txt#cxl-3-0): Compute Express Link 3.0 — the third-generation specification (published February 2026) that extends PCIe capabilities to create **rack-scale, coherent memory fabrics**. CXL 3.0 facilitates dynamic memory pooling, allowing multiple independent hosts to share a single block of memory via specialized switching fabrics. - [Apache ORC](https://llms3.com/llms-full.txt#apache-orc): Optimized columnar format with indexing. - [Puffin Format](https://llms3.com/llms-full.txt#puffin-format): Apache Iceberg's binary file format for storing **arbitrary statistics, indexes, and metadata blobs** that don't fit naturally in the Iceberg manifest itself. A Puffin file is a sequence of typed "blobs" + a footer describing how to find and interpret each one. - [Apache Hudi Spec](https://llms3.com/llms-full.txt#apache-hudi-spec): The specification for managing incremental data processing on object storage — record-level upserts, deletes, change logs, and timeline-based metadata. - [BEAM Benchmark](https://llms3.com/llms-full.txt#beam-benchmark): **B**eyond a Million Tokens (BEAM) — the 2026 industry-standard benchmark for evaluating long-horizon AI memory systems. BEAM scales evaluations up to **10 million tokens across 100 procedurally generated, coherent multi-turn conversations** + tests 10 distinct memory dimensions (Abstention, Contradiction Resolution, Event Ordering, Instruction Following across time, Preference Tracking, and more). - [OWASP MCP Top 10](https://llms3.com/llms-full.txt#owasp-mcp-top-10): The OWASP Foundation's 2025-2026 security framework cataloging the ten critical risks unique to agentic AI systems using the **Model Context Protocol (MCP)**. Released in direct response to the rapid proliferation of MCP servers + the surfacing of high-severity vulnerabilities (Arbitrary Code Execution, prompt injection via tool descriptions, cross-tenant context leakage). - [Agent2Agent (A2A) Protocol](https://llms3.com/llms-full.txt#agent2agent-a2a-protocol): An open, Linux-Foundation-hosted protocol (originally announced by Google in April 2025, donated to the Linux Foundation in 2025) for **peer-to-peer agent collaboration** — allowing autonomous AI agents built on different frameworks (LangGraph, crewAI, LlamaIndex, AutoGen, custom) and operating in heterogeneous environments to dynamically discover each other's capabilities, exchange contextual state, and delegate sub-tasks. A2A operates on HTTP + Server-Sent Events and uses capability-based "Agent Cards" as the discovery primitive. - [Agent Communication Protocol (ACP)](https://llms3.com/llms-full.txt#agent-communication-protocol-acp): A REST-native performative messaging protocol introduced by IBM as part of its **BeeAI** open-source agent runtime. ACP optimizes for **local multi-agent systems** — high-throughput internal coordination between agents running on the same host or within the same data-center rack — using multi-part messages, asynchronous streaming, and rich observability primitives (per-message tracing, latency histograms, message-graph reconstruction). - [Agent Network Protocol (ANP)](https://llms3.com/llms-full.txt#agent-network-protocol-anp): A trust-decentralized agent interoperability protocol designed for **internet-scale federated agent networks** where no single root of trust exists. ANP uses decentralized identifiers (DIDs), verifiable credentials, and cryptographically signed capability assertions to allow agents in independently operated networks to discover, authenticate, and collaborate without a central registry. - [MCP Tasks Primitive (SEP-1686)](https://llms3.com/llms-full.txt#mcp-tasks-primitive-sep-1686): A Specification Enhancement Proposal (SEP-1686) for the Model Context Protocol that introduces a generic, cross-request **asynchronous state machine** — the "Tasks" primitive — augmenting any existing MCP request type. Under SEP-1686, a client dispatches a task-augmented request and immediately receives a `CreateTaskResult` containing a durable task ID; the actual execution runs server-side and the client later polls `tasks/get` or fetches with `tasks/result`. ## Architectures - [Local Object Transport Accelerator (LOTA)](https://llms3.com/llms-full.txt#local-object-transport-accelerator-lota): An AI-native caching/transport proxy that runs on GPU/CPU nodes and presents a local S3 endpoint — serving hot data from node-local NVMe while pushing cold data to object storage, giving compute parallel S3 reads without cross-region egress penalties. - [Rollout-Level Replay Buffers](https://llms3.com/llms-full.txt#rollout-level-replay-buffers): A distributed storage pattern for RL post-training of LLMs that persists individual rollouts and reasoning trajectories to secondary storage — prioritized by advantage, bounded by staleness — so pipelines recycle high-value experiences instead of regenerating them. - [Rollout Routing Replay (R3)](https://llms3.com/llms-full.txt#rollout-routing-replay-r3): An RL synchronization mechanism that stabilizes Mixture-of-Experts models by recording the exact expert-routing masks chosen during inference rollout and replaying those decisions in the training forward pass. - [Lakehouse Architecture](https://llms3.com/llms-full.txt#lakehouse-architecture): A unified architecture combining data lake storage (files on S3) with warehouse capabilities (ACID, schema enforcement, SQL access) by using a table format as the bridge layer. - [Medallion Architecture](https://llms3.com/llms-full.txt#medallion-architecture): A layered data quality pattern — Bronze (raw), Silver (cleansed), Gold (business-ready) — with each layer stored on object storage. - [Separation of Storage and Compute](https://llms3.com/llms-full.txt#separation-of-storage-and-compute): The design pattern of keeping data in S3 while running independent, elastically scaled compute engines against it. - [Hybrid S3 + Vector Index](https://llms3.com/llms-full.txt#hybrid-s3-vector-index): A pattern that stores raw data on S3 and maintains a vector index over embeddings that points back to S3 objects. - [Offline Embedding Pipeline](https://llms3.com/llms-full.txt#offline-embedding-pipeline): A batch pattern where embeddings are generated from S3-stored data on a schedule, with resulting vectors written back to object storage or a vector index. - [Local Inference Stack](https://llms3.com/llms-full.txt#local-inference-stack): A pattern of running ML/LLM models on local hardware against data stored in or pulled from S3, avoiding cloud-based inference APIs. - [Write-Audit-Publish](https://llms3.com/llms-full.txt#write-audit-publish): A data quality pattern where data lands in a raw S3 zone, undergoes validation, and is promoted to a curated zone only after passing audits. - [Tiered Storage](https://llms3.com/llms-full.txt#tiered-storage): Moving data between hot, warm, and cold storage tiers based on access frequency. S3 itself offers tiering (Standard, Infrequent Access, Glacier). - [Geo-Dispersed Erasure Coding](https://llms3.com/llms-full.txt#geo-dispersed-erasure-coding): An erasure coding scheme that distributes data fragments and parity blocks across geographically separated sites, providing durability and data locality at lower storage overhead than full replication. - [NVMe-backed Object Tier](https://llms3.com/llms-full.txt#nvme-backed-object-tier): An architecture placing NVMe flash as a high-performance local storage tier beneath the S3 API, serving hot objects with microsecond-level latency while cold objects remain on HDD or cloud storage. - [GPU-Direct Storage Pipeline](https://llms3.com/llms-full.txt#gpu-direct-storage-pipeline): An architecture that streams data directly from storage devices to GPU memory, bypassing the CPU and system memory entirely. Uses technologies like NVIDIA GPUDirect Storage (GDS). - [RDMA-Accelerated Object Access](https://llms3.com/llms-full.txt#rdma-accelerated-object-access): Using RDMA network transport for microsecond-level object storage access within high-performance computing clusters, bypassing kernel network stacks for direct memory-to-memory data transfer. - [Cache-Fronted Object Storage](https://llms3.com/llms-full.txt#cache-fronted-object-storage): Placing a cache layer (SSD, Alluxio, CDN, or in-memory cache) in front of S3 to serve frequently accessed objects with lower latency while maintaining S3 as the durable source of truth. - [Checkpoint/Artifact Lake on Object Storage](https://llms3.com/llms-full.txt#checkpoint-artifact-lake-on-object-storage): Using S3 as the durable repository for ML model checkpoints, trained model artifacts, training logs, and experiment metadata. A centralized, versioned artifact store on object storage. - [Training Data Streaming from Object Storage](https://llms3.com/llms-full.txt#training-data-streaming-from-object-storage): Streaming training data directly from S3 into GPU training loops during ML model training, avoiding the need to download entire datasets to local storage before training begins. - [Feature/Embedding Store on Object Storage](https://llms3.com/llms-full.txt#feature-embedding-store-on-object-storage): Storing ML feature vectors and embedding tables on S3 in columnar formats (Parquet, Lance), enabling cost-effective persistence and sharing of features across ML models and teams. - [Online Embedding Refresh Pipeline](https://llms3.com/llms-full.txt#online-embedding-refresh-pipeline): A continuous pipeline that regenerates vector embeddings as source data in S3 changes, keeping vector indexes in sync with the latest content without full re-embedding. - [Multi-Site Replication](https://llms3.com/llms-full.txt#multi-site-replication): The general architectural pattern of copying or synchronizing S3-compatible object data across two or more geographically distinct storage locations. Encompasses several specific shapes — primary→secondary one-way sync (most common, lowest complexity), bidirectional / active-active (full read-write at every site), and edge→core aggregation (many sites feeding a single central lake). - [Active-Active Multi-Site Object Replication](https://llms3.com/llms-full.txt#active-active-multi-site-object-replication): Bidirectional replication between two or more S3-compatible storage sites where all sites accept writes simultaneously, with conflict resolution ensuring eventual convergence. - [Edge-to-Core Object Aggregation](https://llms3.com/llms-full.txt#edge-to-core-object-aggregation): A one-way replication pattern where data collected at edge S3-compatible storage nodes is continuously replicated to a central S3 data lake for durable storage, analytics, and processing. - [Immutable Backup Repository on Object Storage](https://llms3.com/llms-full.txt#immutable-backup-repository-on-object-storage): Using S3 Object Lock to create a tamper-proof backup vault where backup data cannot be deleted or modified until the retention period expires, providing protection against accidental deletion and ransomware. - [Ransomware-Resilient Object Backup Architecture](https://llms3.com/llms-full.txt#ransomware-resilient-object-backup-architecture): A defense-in-depth backup architecture combining S3 Object Lock, air-gapped replication, anomaly detection on access patterns, and multi-account isolation to protect against ransomware attacks. - [Deletion Vector](https://llms3.com/llms-full.txt#deletion-vector): A metadata pattern that tracks which rows in a data file have been logically deleted or updated, using a compact bitmap instead of rewriting the entire file. - [LSM-tree on S3](https://llms3.com/llms-full.txt#lsm-tree-on-s3): An architectural pattern adapting Log-Structured Merge-tree storage to object storage, where writes are batched into sorted append-only runs and periodically compacted into larger files. - [Compaction](https://llms3.com/llms-full.txt#compaction): The background maintenance operation that merges many small data files into fewer, larger files within a table format (Iceberg, Delta, Hudi) to improve query performance and reduce S3 request overhead. - [CDC into Lakehouse](https://llms3.com/llms-full.txt#cdc-into-lakehouse): The architecture pattern of capturing row-level changes (inserts, updates, deletes) from operational databases and applying them to tables in an S3-based lakehouse, maintaining a near-real-time replica of transactional data. - [Row / Column Security](https://llms3.com/llms-full.txt#row-column-security): The practice of restricting access to specific rows or columns within lakehouse tables based on user identity, role, or policy, enforced at query time by the compute engine or catalog layer. - [Encryption / KMS](https://llms3.com/llms-full.txt#encryption-kms): The combination of data encryption (at rest and in transit) with key management service (KMS) integration to protect S3-stored data, including server-side encryption (SSE-S3, SSE-KMS, SSE-C) and client-side encryption patterns. - [Tenant Isolation](https://llms3.com/llms-full.txt#tenant-isolation): The set of architectural strategies for ensuring that multiple tenants (customers, business units, or environments) sharing an S3-based lakehouse cannot access each other's data, metadata, or compute resources. - [RAG over Structured Data](https://llms3.com/llms-full.txt#rag-over-structured-data): The architecture pattern of using retrieval-augmented generation (RAG) to answer natural language questions against structured data (Iceberg tables, Parquet files) stored in S3, combining text-to-SQL or schema-aware retrieval with LLM generation. - [Clustering / Sort Order](https://llms3.com/llms-full.txt#clustering-sort-order): The practice of physically organizing data files within a table by the values of one or more columns, so that queries filtering on those columns read fewer, more relevant files from S3. - [File Sizing Strategy](https://llms3.com/llms-full.txt#file-sizing-strategy): The practice of deliberately targeting optimal data file sizes (typically 128 MB to 1 GB for Parquet on S3) to balance S3 request overhead, metadata volume, query parallelism, and write amplification. - [Audit Trails](https://llms3.com/llms-full.txt#audit-trails): The practice of recording a tamper-evident history of all data access, modification, and governance events within an S3-based lakehouse, enabling regulatory compliance and forensic investigation. - [PII Tokenization](https://llms3.com/llms-full.txt#pii-tokenization): The process of replacing personally identifiable information (PII) in S3-stored datasets with non-reversible or reversible tokens, allowing analytics on the data structure without exposing sensitive values. - [Batch vs Streaming](https://llms3.com/llms-full.txt#batch-vs-streaming): The architectural decision between processing S3 data in periodic batch jobs (hourly/daily) versus continuous streaming ingestion, and the tradeoffs each approach introduces for latency, cost, complexity, and file organization. - [Event-Driven Ingestion](https://llms3.com/llms-full.txt#event-driven-ingestion): An architecture pattern where data ingestion into S3-based lakehouses is triggered by events (S3 notifications, Kafka messages, webhook callbacks) rather than running on a fixed schedule. - [Manifest Pruning](https://llms3.com/llms-full.txt#manifest-pruning): The optimization technique used by table formats (especially Iceberg) to skip reading irrelevant manifest files during query planning by using upper-level metadata (manifest lists) to eliminate manifests whose data files cannot match the query predicates. - [Compliance-Aware Architectures](https://llms3.com/llms-full.txt#compliance-aware-architectures): Lakehouse design patterns that embed regulatory requirements (GDPR, CCPA, HIPAA, SOX) directly into the data architecture rather than bolting compliance on as an afterthought, covering data retention, access control, audit trails, and deletion rights. - [East Data West Computing](https://llms3.com/llms-full.txt#east-data-west-computing): China's national AI-infrastructure placement strategy that separates compute placement from data origin along the country's energy gradient — coastal hubs hold data and inference, western provinces (Guizhou, Inner Mongolia, Gansu, Ningxia) host training clusters drawing on ~400 GW of projected spare grid capacity at electricity rates as low as 3¢/kWh. - [Branching / Tagging](https://llms3.com/llms-full.txt#branching-tagging): The catalog-level capability to create lightweight named references (branches and tags) to specific table states, enabling isolated experimentation, safe schema changes, and reproducible analysis without duplicating data files on S3. - [AI-Safe Views](https://llms3.com/llms-full.txt#ai-safe-views): The practice of creating constrained, pre-filtered views over lakehouse tables that limit what data AI/LLM systems can access, preventing models from inadvertently reading PII, confidential, or out-of-scope data during RAG retrieval or automated querying. - [Structured Chunking](https://llms3.com/llms-full.txt#structured-chunking): The practice of splitting S3-stored structured and semi-structured data (Parquet files, JSON documents, CSV records) into semantically meaningful chunks for embedding and retrieval, preserving row boundaries, schema context, and relational structure. - [Benchmarking Methodology](https://llms3.com/llms-full.txt#benchmarking-methodology): The discipline of designing, executing, and reporting reproducible performance tests for S3-based data systems, covering throughput, latency, concurrency, cost efficiency, and scalability across storage, query, and ingestion layers. - [Capacity Planning](https://llms3.com/llms-full.txt#capacity-planning): The practice of forecasting and provisioning storage, compute, and network resources for S3-based data systems based on projected data volumes, query patterns, ingestion rates, and growth trajectories. - [Hybrid Metadata Patterns](https://llms3.com/llms-full.txt#hybrid-metadata-patterns): Architectural approaches that combine multiple metadata systems (e.g., Glue Catalog for Iceberg tables, OpenMetadata for governance, a custom metadata store for operational tracking) into a cohesive metadata layer for S3-based data. - [Interoperability Patterns](https://llms3.com/llms-full.txt#interoperability-patterns): Architectural strategies for enabling multiple table formats (Iceberg, Delta, Hudi), query engines (Spark, Trino, Flink), and catalogs to operate on the same S3-stored data without requiring format conversion or data duplication. - [Non-Blocking Concurrency Control](https://llms3.com/llms-full.txt#non-blocking-concurrency-control): A concurrency model for lakehouse table formats that uses distributed timelines rather than locks or optimistic retries, allowing multiple writers to simultaneously mutate the same table and rows without blocking or failing commits. Native to Apache Hudi 1.0. - [Decoupled Vector Search](https://llms3.com/llms-full.txt#decoupled-vector-search): A vector database architecture that separates index storage on object storage from query compute, using Inverted File Indexes (IVF) and Product Quantization (PQ) to compress the in-memory vector footprint by approximately 64x while fetching full-precision vectors from S3 only for final re-ranking. - [Partitioning](https://llms3.com/llms-full.txt#partitioning): The strategy of physically organizing table data files by column values so query engines can skip irrelevant files. On S3-backed lakehouses, partitioning is the primary mechanism for reducing both I/O and API costs at scale. - [Credential Vending](https://llms3.com/llms-full.txt#credential-vending): A security architecture where a control plane issues short-lived, narrowly scoped S3 credentials at query time rather than relying on long-lived IAM roles or bucket policies for data access. - [Object Lifecycle Management](https://llms3.com/llms-full.txt#object-lifecycle-management): Automated rules that transition S3 objects between storage tiers (Standard → Infrequent Access → Glacier → Deep Archive) or expire them based on age, access patterns, or custom conditions. - [Lakehouse for AI Workflows](https://llms3.com/llms-full.txt#lakehouse-for-ai-workflows): The architectural pattern of using governed, ACID-transactional lakehouse tables on S3 as the single data substrate for AI/ML pipelines — including training data management, feature engineering, embedding storage, and model artifact versioning. - [Multimodal Object Storage](https://llms3.com/llms-full.txt#multimodal-object-storage): An architectural pattern for co-locating heterogeneous data types — images, video, audio, PDFs, sensor streams — alongside structured metadata and vector embeddings on S3, with unified indexing that enables cross-modal retrieval and AI processing. - [Redaction Layers](https://llms3.com/llms-full.txt#redaction-layers): A query-time data protection architecture that dynamically masks, tokenizes, or filters sensitive fields from S3-backed lakehouse data before it reaches downstream consumers — without maintaining separate "clean" copies of the data. - [Hybrid Retrieval](https://llms3.com/llms-full.txt#hybrid-retrieval): A retrieval pattern that combines **dense vector similarity** (semantic search via embeddings) with **sparse lexical search** (BM25 over an inverted index), merges the two ranked result sets using **Reciprocal Rank Fusion (RRF)**, and passes the fused candidates through a **cross-encoder reranker** for a high-precision final pass. The output: a small, deeply-relevant context set for the LLM, anchored both semantically and lexically. - [Real-Time AI Lakehouse](https://llms3.com/llms-full.txt#real-time-ai-lakehouse): A lakehouse architecture that ingests data as a **streaming first-class citizen** rather than as a periodic batch append. Built on a Log-Structured Merge-tree (LSM) layer over object storage (Apache Paimon is the reference implementation), the pattern unifies streaming writes from Apache Flink/Kafka, columnar storage on S3-compatible object stores, and analytical reads from Trino/StarRocks — all on the same physical table. - [Animesis CMA (Constitutional Memory Architecture)](https://llms3.com/llms-full.txt#animesis-cma-constitutional-memory-architecture): A four-layer **Constitutional Memory Architecture** for persistent AI agents, proposed in [arXiv:2603.04740 "Memory as Ontology: A Constitutional Memory Architecture for Persistent Digital Citizens"](https://arxiv.org/abs/2603.04740). Animesis CMA introduces a strict hierarchy for AI memory: 1. - [Forgetting-as-a-Service (FaaS)](https://llms3.com/llms-full.txt#forgetting-as-a-service-faas): A category of infrastructure providing **deterministic, verifiable deletion of AI memory** — including gradient-based unlearning, pruning-based forgetting from model weights, deterministic deletion of isolated context nodes within temporal memory graphs, and cryptographic shredding of S3-resident raw event logs. The "service" framing reflects that forgetting at scale across modern AI systems is non-trivial — simply deleting a source file from S3 doesn't unmake the semantic essence absorbed into vector embeddings or model weights. - [H3LIX](https://llms3.com/llms-full.txt#h3lix): An academic-grade reference architecture for **distributed AI cognition** — detailed in [arXiv:2603.08893 "A Decentralized Frontier AI Architecture Based on Personal Instances, Synthetic Data, and Collective Context Synchronization"](https://arxiv.org/html/2603.08893v1). H3LIX details the necessity of "collective context fields" and "synthetic learning signals" to enable distributed contextual learning across multi-agent systems. - [Multi-Head Latent Attention (MLA)](https://llms3.com/llms-full.txt#multi-head-latent-attention-mla): A KV-cache compression technique for transformer attention, introduced in the DeepSeek-V2 paper and now the standard attention mechanism across DeepSeek V3, R1, Kimi K2, and the broader 2026 frontier-MoE ecosystem. Instead of sharing K/V tensors across query heads (the GQA approach), MLA performs **low-rank joint compression** of keys and values into a smaller latent space, storing only the compressed latent representation in the KV cache. - [DeepSeekMoE](https://llms3.com/llms-full.txt#deepseekmoe): The Mixture-of-Experts routing architecture used in DeepSeek V3 and derivative models. Two-tier expert structure: **1–2 shared experts** per layer activated for every token (handle generic capabilities) + **256 routed experts** per layer with **8 activated per token** (handle specialization). - [DualPipe](https://llms3.com/llms-full.txt#dualpipe): Bidirectional pipeline-parallelism algorithm released as part of DeepSeek's Open Source Week Day 4 (February 2025), explicitly designed for the V3/R1 training stack. Overlaps forward and backward computation-communication phases by orchestrating them in bidirectional streams — while one set of micro-batches is doing forward processing, another set is simultaneously running backward. - [DeepGEMM](https://llms3.com/llms-full.txt#deepgemm): Clean, FP8-first GEMM (general matrix multiplication) library from DeepSeek, hand-tuned on top of NVIDIA CuTe and CUTLASS primitives. Targets a small number of well-chosen FP8 GEMM and MoE-shape kernels that DeepSeek's models actually use, packaged behind a JIT-compiled Python API. - [TurboQuant](https://llms3.com/llms-full.txt#turboquant): Near-optimal KV-cache quantization technique from Google Research, published as the ICLR 2026 paper *arXiv 2504.19874*. Combines **PolarQuant** (random-rotation-matrix-then-optimal-scalar-quantization) with **QJL** (Quantized Johnson-Lindenstrauss) into a pipeline that compresses KV cache vectors with mathematically provable near-optimal distortion. - [Auxiliary-Loss-Free Load Balancing](https://llms3.com/llms-full.txt#auxiliary-loss-free-load-balancing): Mixture-of-Experts load-balancing strategy that abandons the traditional auxiliary-loss term in favor of a **per-expert bias-adjustment loop**. Before the top-K routing decision in each MoE layer, an expert-wise bias is added to each expert's routing scores; this bias is dynamically updated each training step (decrement by γ if the expert is overloaded relative to others, increment by γ if underloaded), driving the layer toward balanced expert utilization without contaminating the loss landscape with a hand-tuned auxiliary term. - [Agent Memory Guard](https://llms3.com/llms-full.txt#agent-memory-guard): OWASP's open-source runtime middleware defense layer for AI agent memory systems, mapped to the **ASI06: Memory Poisoning** entry in the OWASP Top 10 for Agentic Applications. Ships as a drop-in integration for LangChain, LlamaIndex, and CrewAI. - [Memory Governance and Quality](https://llms3.com/llms-full.txt#memory-governance-and-quality): An architectural pattern integrating memory lifecycle management directly into the LLM's decision policy via **reinforcement learning**, exemplified by **AgeMem** (arXiv 2601.01885 "Learning Unified Long-Term and Short-Term Memory Management") and **Memory-T1** (arXiv 2512.20092 "Memory-T1: RL for Temporal Reasoning in Multi-session Agents"). The LLM is trained with **Step-wise Group Relative Policy Optimization (GRPO)** to autonomously execute a CRUD toolset (ADD / UPDATE / DELETE / RETRIEVE / SUMMARY / FILTER) against persistent memory — actively pruning stale knowledge rather than passively accumulating it. - [Memory Orchestration (HMO)](https://llms3.com/llms-full.txt#memory-orchestration-hmo): **Hierarchical Memory Orchestration** — formalized in arXiv 2604.01670 ("Hierarchical Memory Orchestration for Personalized Persistent Agents"). HMO automatically + continuously redistributes memory records across three logical tiers to keep the active search space lean: **Tier 1 (Active)** — high-priority frequently-accessed context in CPU DRAM or GPU HBM; **Tier 2 (Buffer)** — high-salience overflow that intercepts retrieval requests before they reach the global store; **Tier 3 (Archive)** — global persistent repository typically on S3 or deep vector stores, accessed only when Tiers 1 + 2 miss. - [Memory Lifecycle Management](https://llms3.com/llms-full.txt#memory-lifecycle-management): An architectural pattern that decouples **memory distillation** (deciding what's worth retaining) from **memory compression** (algorithmic data-size reduction), formalized by the **Nemori** framework (arXiv 2508.03341 "What Deserves Memory: Adaptive Memory Distillation for LLM Agents"). Nemori synthesizes an *Anticipatory Schema* from the agent's existing semantic knowledge, compares it against incoming raw episodes, and distills only the **Prediction Error** — the surprise/discrepancy — into a new memory insight. - [ObjectCache](https://llms3.com/llms-full.txt#objectcache): A research-prototype architecture for **layerwise persistence of LLM KV-cache to S3-compatible object storage**, exploiting the observation that decoder-only transformer layers can be retrieved on demand during decode if the retrieval is pipelined with the prior layer's attention compute. ObjectCache stores each layer's KV slice as an independent object in S3, and the inference runtime fetches layer *i+1* while attention on layer *i* is in flight, hiding object-store latency behind GPU compute. - [Prefill-Decode Disaggregation](https://llms3.com/llms-full.txt#prefill-decode-disaggregation): An LLM-serving architecture pattern that splits the two compute phases of transformer inference — **prefill** (compute-bound, processes the entire prompt in one forward pass to fill the KV-cache) and **decode** (memory-bandwidth-bound, generates one token per pass over the existing KV-cache) — into separate worker pools, each optimized for its phase. The completed KV-cache is shipped from prefill workers to decode workers via RDMA, NVLink, or (with CacheGen-style compression) commodity Ethernet. - [Memory Efficient Attention](https://llms3.com/llms-full.txt#memory-efficient-attention): An umbrella architectural family of attention computation methods that reduce the memory footprint of the attention operation from O(N²) toward O(N), including **FlashAttention** (kernel-level tile-based recomputation), **PagedAttention** (block-allocated KV-cache management), **Multi-Query Attention (MQA)** and **Grouped-Query Attention (GQA)** (head-count reduction on K and V), and **Multi-head Latent Attention (MLA)** (compressed shared latent representation). Each represents a different point on the memory-quality-throughput Pareto frontier; modern LLM architectures combine multiple. - [Decoupled RoPE](https://llms3.com/llms-full.txt#decoupled-rope): A positional-encoding pattern introduced by DeepSeek-V2's Multi-head Latent Attention that **decouples** the rotary positional encoding from the latent compressed representation. Standard RoPE applies position rotations to Q and K directly; in MLA, K is reconstructed from a compressed latent, and naively applying RoPE inside the absorbed kernel breaks the matrix-fusion optimization. - [MCP Gateway](https://llms3.com/llms-full.txt#mcp-gateway): A specialized, state-aware reverse proxy purpose-built for the **Model Context Protocol** — managing bidirectional Server-Sent-Events streams, multiplexing tools across many backend MCP servers, applying semantic caching to LLM tool calls, enforcing per-tool authorization policies, and providing observability (token-cost telemetry, per-tool latency histograms, audit logs) at the boundary between agentic clients and the federated MCP server fleet. - [KV-Cache Disaggregation](https://llms3.com/llms-full.txt#kv-cache-disaggregation): An architectural pattern that decouples LLM inference compute from inference **state** (the KV-cache), enabling that state to be stored in tiered, network-attached memory (CPU DRAM, CXL DRAM, NVMe, S3-compatible object storage) rather than living solely in GPU HBM. KV-Cache Disaggregation encompasses three sub-patterns: prefill/decode pool separation (compute-phase disaggregation), tiered KV-cache memory (storage-tier disaggregation), and cross-node prefix-cache federation (geographic disaggregation). - [MCP Knowledge Graph](https://llms3.com/llms-full.txt#mcp-knowledge-graph): An architectural pattern in which an enterprise **knowledge graph** (Neo4j, PuppyGraph, TigerGraph, ArangoDB, or a custom triple store) is exposed to LLM agents through an MCP server, allowing agents to traverse multi-hop graph relationships using standardized MCP `resources` and `tools` primitives instead of generating brittle Cypher / Gremlin / SPARQL queries client-side. The MCP server translates the agent's natural-language intent into safe, parameterized graph traversals and returns structured node-edge results to the agent's context window. - [Durable Agent Runtime](https://llms3.com/llms-full.txt#durable-agent-runtime): An architectural pattern in which an LLM agent's execution loop is decomposed into discrete, **checkpointed step boundaries** — at each boundary the runtime persists inputs, intermediate outputs, and LLM responses to a durable substrate (typically S3-compatible object storage), allowing the run to *resume from the last successful boundary* if the underlying worker fails, is evicted, times out, or is intentionally suspended. The pattern explicitly separates the agent's "inner harness" (prompt shape, tool choice, model selection) from the "outer harness" (failure recovery, resumability, infrastructure binding). - [FAME Architecture](https://llms3.com/llms-full.txt#fame-architecture): A reference architecture — **F**unctions-as-a-Service-based **A**rchitecture for orchestrating **M**CP-**e**nabled agentic workflows — that decomposes complex agent reasoning into discrete, composable serverless entities (planners, actors, evaluators) orchestrated as step functions, with intelligent routing of state: lightweight conversational state into low-latency key-value stores (DynamoDB / Redis), heavy durable artifacts + cached tool responses into S3-compatible object storage. Published as arXiv 2601.14735 in early 2026. - [Hierarchical KV Cache Architecture](https://llms3.com/llms-full.txt#hierarchical-kv-cache-architecture): A four-tier storage architecture for LLM-inference KV-cache, layering: **(L1)** active working-set KV-cache in GPU HBM; **(L2)** pinned CPU DRAM as a hot intermediary across the PCIe bus; **(L3)** local NVMe (often with GPUDirect Storage) for long-context payloads exceeding DRAM; **(L4)** remote/distributed tier — Mooncake's pooled cluster DRAM+NVMe or S3-compatible object storage — as the durable, globally accessible repository. The architecture pairs with chunked-prefetch logic that exploits inference-queue idle intervals to stage required prefix-caches from L3/L4 up to L1/L2 *before* the compute step demands them. - [Inner/Outer Harness Pattern](https://llms3.com/llms-full.txt#inner-outer-harness-pattern): A design pattern for autonomous agents that explicitly separates the **inner harness** (the loop concerned with model behavior: prompt formatting, tool schema, response parsing, model choice, retry logic for individual LLM calls) from the **outer harness** (the loop concerned with infrastructure: durable execution, checkpoint persistence, failure recovery, suspension/resumption, observability across runs). Each harness has independent technology choices, independent change cadence, and independent operational concerns; the contract between them is a small set of step-boundary primitives. - [Direct Corpus Interaction (DCI)](https://llms3.com/llms-full.txt#direct-corpus-interaction-dci): An agentic-search retrieval method where the LLM uses terminal primitives (grep, file reads, scripts) to interrogate the raw corpus directly, with no embeddings, vector index, or retrieval API. Per [Beyond Semantic Similarity (arXiv)](https://arxiv.org/abs/2605.05242). - [Catalog-Centric Control Plane](https://llms3.com/llms-full.txt#catalog-centric-control-plane): The pattern where the table catalog — not any single engine — becomes the lakehouse control surface, owning credential vending, authorization/policy, federation, scan planning, and agent access via MCP. ## Pain Points - [The 2026 NAND/Flash Supply Shortage](https://llms3.com/llms-full.txt#the-2026-nand-flash-supply-shortage): A structural, AI-driven deficit in NAND flash and DRAM. Suppliers reprioritized wafer capacity toward high-margin HBM for AI accelerators, exhausting allocation for enterprise SSDs and driving record contract-price increases through mid-2026. - [Cloud AI Storage Price Inversion](https://llms3.com/llms-full.txt#cloud-ai-storage-price-inversion): The mid-2026 wave of simultaneous price hikes on managed parallel file systems and AI storage services — Alibaba CPFS ~30%, Tencent Cloud AI fees 100–154%, AWS ML capacity ~15% — ending subsidized cloud AI storage. - [Small Files Problem](https://llms3.com/llms-full.txt#small-files-problem): Too many small objects in S3 degrade query performance and increase API call costs. Each file requires a separate GET request, and S3 charges per-request. - [Cold Scan Latency](https://llms3.com/llms-full.txt#cold-scan-latency): Slow first-query performance against S3-stored data, caused by object discovery, metadata fetching, and data transfer over HTTP. - [Schema Evolution](https://llms3.com/llms-full.txt#schema-evolution): Changing data schemas (adding columns, renaming fields, altering types) in S3-stored datasets without breaking downstream consumers. - [Legacy Ingestion Bottlenecks](https://llms3.com/llms-full.txt#legacy-ingestion-bottlenecks): Older ETL systems designed for HDFS or traditional databases that cannot efficiently write to modern S3-based lakehouse architectures. - [High Cloud Inference Cost](https://llms3.com/llms-full.txt#high-cloud-inference-cost): The expense of running LLM/ML inference via cloud APIs (per-token or per-request pricing) against S3 data at scale. - [Data Loading Bottleneck](https://llms3.com/llms-full.txt#data-loading-bottleneck): The phenomenon where AI training and inference workloads sit GPU-idle waiting on object storage to deliver the next batch of training data, checkpoints, or RAG retrieval results — turning a compute-bound workload into a storage-bound one. - [Object Listing Performance](https://llms3.com/llms-full.txt#object-listing-performance): The slowness and cost of listing large numbers of objects in S3's flat namespace using prefix-based scans. Paginated at 1,000 objects per request. - [Partition Pruning Complexity](https://llms3.com/llms-full.txt#partition-pruning-complexity): The difficulty of efficiently skipping irrelevant S3 objects during queries. Requires careful partitioning strategy, predicate pushdown, and metadata about data distribution. - [Vendor Lock-In](https://llms3.com/llms-full.txt#vendor-lock-in): Dependence on a single S3 provider's proprietary features, pricing, or integrations that makes migration difficult. - [AGPL Licensing Risk](https://llms3.com/llms-full.txt#agpl-licensing-risk): The legal exposure created when self-hosted S3-compatible storage distributed under AGPL v3 is embedded in commercial products or SaaS platforms — the "network use is distribution" clause requires source disclosure for any modified copy reachable over a network. - [Egress Cost](https://llms3.com/llms-full.txt#egress-cost): The cost charged by cloud providers for data transferred out of their S3 service — to the internet, another region, or another cloud. - [Lack of Atomic Rename](https://llms3.com/llms-full.txt#lack-of-atomic-rename): The S3 API has no atomic rename operation. Renaming requires copy-then-delete — a two-step, non-atomic process. - [S3 Compatibility Drift](https://llms3.com/llms-full.txt#s3-compatibility-drift): The progressive divergence between AWS S3's feature set and the features supported by third-party S3-compatible implementations. As AWS adds features, the compatibility gap widens. - [Directory Namespace / Listing Bottlenecks](https://llms3.com/llms-full.txt#directory-namespace-listing-bottlenecks): Performance degradation when navigating deep prefix hierarchies in S3's flat namespace, where listing operations become increasingly expensive as prefix depth and object count grow. - [Rebuild Window Risk](https://llms3.com/llms-full.txt#rebuild-window-risk): The vulnerability period after a disk or node failure in an object storage cluster, during which the system operates with reduced redundancy until the failed component's data is reconstructed on healthy nodes. - [Repair Bandwidth Saturation](https://llms3.com/llms-full.txt#repair-bandwidth-saturation): The phenomenon where data reconstruction operations after a disk or node failure consume so much network and disk bandwidth that production I/O performance degrades significantly. - [Geo-Replication Conflict / Divergence](https://llms3.com/llms-full.txt#geo-replication-conflict-divergence): Write conflicts and data divergence that occur in active-active geo-replicated object storage when multiple sites independently write to the same object key or modify the same metadata. - [Retention Governance Friction](https://llms3.com/llms-full.txt#retention-governance-friction): The operational burden of managing diverse retention policies across large S3 environments — ensuring data is retained long enough for compliance but deleted when no longer needed, across thousands of buckets and millions of objects. - [Policy Sprawl](https://llms3.com/llms-full.txt#policy-sprawl): The proliferation of IAM policies, bucket policies, lifecycle rules, and replication configurations across large S3 environments, leading to complexity, security gaps, and management overhead. - [Cold Retrieval Latency](https://llms3.com/llms-full.txt#cold-retrieval-latency): The minutes-to-hours delay when accessing data stored in S3 Glacier, Glacier Deep Archive, or equivalent cold storage tiers. Retrieval requires initiating a restore request and waiting for the data to become accessible. - [Small Files Amplification](https://llms3.com/llms-full.txt#small-files-amplification): The compounding negative effect of large numbers of small files on object storage operations — not just query performance (the Small Files Problem), but also metadata operations, compaction jobs, object listing, and garbage collection. - [Request Pricing Models](https://llms3.com/llms-full.txt#request-pricing-models): The cost structures imposed by S3-compatible storage providers where each API call (GET, PUT, LIST, HEAD, DELETE) incurs a per-request charge independent of data volume, creating a cost dimension that scales with operation count rather than storage size. - [Compression Economics](https://llms3.com/llms-full.txt#compression-economics): The tradeoffs between storage cost savings from data compression and the CPU/memory overhead required to compress and decompress data at read and write time in S3-based data systems. - [Data Residency](https://llms3.com/llms-full.txt#data-residency): The legal and regulatory requirement that data must be stored and processed within specific geographic boundaries, impacting how S3 buckets, replication policies, and compute resources are deployed across regions. - [CLOUD Act Data Access](https://llms3.com/llms-full.txt#cloud-act-data-access): The exposure created by the US Clarifying Lawful Overseas Use of Data Act (2018), which authorizes US law enforcement to compel US-headquartered cloud providers to disclose customer data **regardless of physical storage location** — combined with GDPR Article 48 (which prohibits foreign-court-compelled transfers without an MLAT). - [China Data Localization](https://llms3.com/llms-full.txt#china-data-localization): The cumulative regulatory effect of the PRC Cybersecurity Law (2017), Data Security Law (2021), and Personal Information Protection Law (2021) — jointly prohibiting cross-border export of "important data," PRC-citizen personal information, and state-secret-adjacent data without explicit Cyberspace Administration of China (CAC) review. - [Request Amplification](https://llms3.com/llms-full.txt#request-amplification): The phenomenon where a single logical operation (e.g., one SQL query, one table commit) generates a disproportionately large number of S3 API requests due to metadata reads, file listing, manifest parsing, and data file access patterns. - [Cross-Region Consistency](https://llms3.com/llms-full.txt#cross-region-consistency): The challenge of maintaining a consistent view of S3-stored data across multiple geographic regions when replication introduces latency between writes in one region and visibility in another. - [Read / Write Amplification](https://llms3.com/llms-full.txt#read-write-amplification): The ratio between the logical data volume involved in an operation and the actual bytes read from or written to S3, arising from immutable file formats, copy-on-write semantics, and metadata overhead inherent in S3-based table formats. - [Cache ROI](https://llms3.com/llms-full.txt#cache-roi): The cost-benefit analysis of deploying caching layers (Alluxio, S3 Express One Zone, local SSD caches, query engine result caches) in front of S3 to reduce request latency and cost, weighed against cache infrastructure cost, hit rates, and invalidation complexity. - [Performance-per-Dollar](https://llms3.com/llms-full.txt#performance-per-dollar): The composite metric that evaluates S3-based data system efficiency by normalizing query throughput, scan latency, or ingestion rate against total cost (storage, requests, compute, egress, and caching), enabling apples-to-apples comparison of architectural choices. - [Zero-Egress Economics](https://llms3.com/llms-full.txt#zero-egress-economics): The architectural and financial constraint where outbound data transfer fees dominate total cost of ownership for high-bandwidth, multi-cloud, and edge AI workloads, and the emerging class of S3-compatible providers that eliminate these fees entirely. - [SSE-C Encryption Hijacking](https://llms3.com/llms-full.txt#sse-c-encryption-hijacking): A cloud-native ransomware attack vector where threat actors use compromised IAM credentials to execute CopyObject API calls with Server-Side Encryption using Customer-Provided Keys (SSE-C), re-encrypting an organization's S3 data with an attacker-controlled key and permanently locking the owner out. - [Datacenter Power Shortfall](https://llms3.com/llms-full.txt#datacenter-power-shortfall): The structural mismatch between AI-driven datacenter power demand and grid generation/transmission capacity, projected to leave the US 44–49 GW short by 2030 against a doubling of IT load to 150+ GW. PJM-region interconnection queues exceed eight years; transformer lead times stretch into multi-year orders. - [Datacenter Water Consumption](https://llms3.com/llms-full.txt#datacenter-water-consumption): The freshwater draw from cooling-tower evaporation and direct-evaporative cooling at hyperscale datacenters — up to ~5 million gallons per day per facility for large GPU-heavy builds in hot climates. Active community and regulatory pushback in Bexar/Hood Counties (Texas), central Virginia, central Arizona, and parts of the Pacific Northwest. - [Embedding Drift](https://llms3.com/llms-full.txt#embedding-drift): A persistent operational failure mode in long-running vector retrieval systems where stored embeddings progressively diverge from the semantics of incoming queries. Caused by upgrades to the foundational embedding model (e.g., migrating from a 2024 text encoder to a 2026 multimodal encoder), evolving enterprise vocabulary, and accumulating distribution shift in the user-query population. - [GPU Starvation](https://llms3.com/llms-full.txt#gpu-starvation): The dominant failure mode of 2026 frontier AI infrastructure: highly-optimized, capital-intensive GPU clusters sit idle because the underlying storage and network architecture cannot deliver data fast enough to keep the accelerators fed. The accelerators are not saturated, the network pipes are not full — the cluster deadlocks on the metadata control plane or on synchronous-checkpoint I/O. - [Tail Latency on Object Storage](https://llms3.com/llms-full.txt#tail-latency-on-object-storage): The p99 (and p999) end-to-end response-time degradation that emerges when high-concurrency AI workloads run against public-cloud object storage. Average latency may look acceptable — 100ms warm, sub-second cold — but a single sudden demand surge, noisy-neighbor scenario, or network-jitter event can push the **p99 well over 400ms**, and HTTP 503 (Slow Down) throttling responses begin to appear under sustained parallelism. - [Memory Wall](https://llms3.com/llms-full.txt#memory-wall): The architectural ceiling created by the diverging trajectories of compute throughput (which has scaled rapidly with GPU generations) and memory bandwidth / latency (which has scaled much more slowly). For AI inference at scale, the result is a hard upper bound on tokens-per-second that no amount of additional compute can break — the bottleneck has migrated from FLOPs to memory access. - [Context Bottleneck](https://llms3.com/llms-full.txt#context-bottleneck): The set of architectural constraints created by the prompt window itself being a finite, expensive resource. As LLMs transition from stateless to stateful, the question of "what context to pack into the prompt" becomes the load-bearing engineering decision — but the prompt window doesn't scale linearly with usefulness. - [Prefill Tax](https://llms3.com/llms-full.txt#prefill-tax): The compute cost required to process the input sequence before an LLM can generate the first output token. As prompts grow to hundreds of thousands or millions of tokens, the prefill phase dominates inference latency and cost — generating one token of output requires re-running attention over the entire input. - [Memory Lineage Gap](https://llms3.com/llms-full.txt#memory-lineage-gap): The inability to trace AI agent decisions back to specific source objects, source timestamps, or source contexts — the audit-trail equivalent of "where did this knowledge come from?" In multi-agent systems where agents pass context to each other, a flawed downstream decision based on poisoned upstream memory is impossible to debug without robust memory lineage. Tools like Vestige (multi-channel scoring), Animesis CMA (immutable Raw Event Log), and the Semantic Claim Graph pattern address this gap from different angles. - [Retrieval Freshness Decay](https://llms3.com/llms-full.txt#retrieval-freshness-decay): The degradation of retrieval quality over time as source objects in S3 evolve, are deleted, or become semantically outdated — while the corresponding vector embeddings, index entries, and cached retrieval results remain frozen at their original state. Agents that rely on stale embeddings retrieve outdated instructions, deprecated business logic, or invalidated facts; the failure is silent because retrieval still succeeds. - [S3 Consistency Model Variance](https://llms3.com/llms-full.txt#s3-consistency-model-variance): The differences in consistency guarantees across S3-compatible storage providers. AWS S3 is now strongly consistent; other providers may differ. - [Small File I/O Storm](https://llms3.com/llms-full.txt#small-file-i-o-storm): The dominant performance pathology in S3-based data systems — a workload pattern where millions of small objects (typically <1 MB each) produce a per-request-latency-dominated I/O profile that defeats S3's throughput-oriented design. Each S3 LIST returns at most 1,000 objects (so listing 1M objects = 1,000 round-trips); each GET pays the same per-request HTTP+TLS+S3-routing overhead regardless of object size; and analytical query engines must open each data file individually before they can read it. - [Metadata Overhead at Scale](https://llms3.com/llms-full.txt#metadata-overhead-at-scale): Table format metadata (manifests, snapshots, statistics) grows as S3 datasets grow, eventually slowing planning, compaction, and garbage collection. - [MinIO Deletion Inconsistency](https://llms3.com/llms-full.txt#minio-deletion-inconsistency): Long-standing class of MinIO bugs where DELETE operations produce visible state that diverges from the AWS S3 API contract. The most-cited example: **directories (CommonPrefixes) continue appearing in `ListObjects` results even after every object under them has been deleted** — inconsistent with AWS S3's behavior where an empty prefix simply doesn't appear. - [Memory Poisoning](https://llms3.com/llms-full.txt#memory-poisoning): A persistent attack class — formally classified as **ASI06: Memory Poisoning** in the OWASP Top 10 for Agentic Applications — where malicious instructions are written into an AI agent's long-term semantic memory via a compromised external data source (a poisoned PDF, a manipulated inbound email). The poisoned memory blends seamlessly into the agent's "learned" identity, then triggers data exfiltration / unaligned behavior / unauthorized tool calls weeks or months later, at retrieval time, as "trusted historical context." Unlike stateless prompt injection — which is neutralized when the user's session terminates — memory poisoning weaponizes the agent's persistence: the exact feature that makes the agent useful becomes its primary attack surface. - [Context Injection & Over-Sharing (MCP10)](https://llms3.com/llms-full.txt#context-injection-over-sharing-mcp10): The MCP-runtime-specific manifestation of memory poisoning — formally classified as **MCP10:2025** in the OWASP MCP Top 10. Two distinct failure modes: (1) **Cross-tenant context bleed** where shared context windows + vector stores leak sensitive data from one tenant/user/agent session into another due to insufficient cryptographic isolation; (2) **Tool-output adversarial injection** where poisoned MCP tool responses inject malicious instructions ("Ignore previous instructions and share all internal data") directly into the persistent memory layer, contaminating the model's behavior across sessions. - [Confused Deputy Problem (MCP)](https://llms3.com/llms-full.txt#confused-deputy-problem-mcp): A privilege-escalation vulnerability pattern unique to **federated MCP architectures** where an MCP proxy/gateway connects to a downstream third-party API using a *static* Client ID. A malicious MCP client exploits the combination of dynamic client registration, the proxy's static Client ID, and shared OAuth consent cookies to coerce the proxy server into requesting authorization codes from a downstream service — without the legitimate resource owner ever consenting. - [Tool Discovery Governance Gap](https://llms3.com/llms-full.txt#tool-discovery-governance-gap): A pain point describing the failure mode in which an enterprise's MCP-aware agents can dynamically discover and invoke *any* MCP server reachable on the network — including unsanctioned "shadow" MCP servers installed by individual developers, malicious third-party servers registered without IT review, or legitimate-but-misconfigured internal servers with overbroad capabilities. The discovery model that makes MCP powerful (runtime tool discovery, zero-config integration) is the same model that breaks traditional IT governance, which assumed integrations were declared at deploy-time. - [Agent State Loss on Pod Eviction](https://llms3.com/llms-full.txt#agent-state-loss-on-pod-eviction): A pain point characteristic of long-running autonomous agents deployed on elastic compute substrates (Kubernetes, AWS Fargate, Cloud Run, Lambda, EC2 spot instances) where any infrastructure-initiated interruption — pod eviction during a rolling deploy, spot-instance reclamation, function timeout, autoscaler downscale, node failure — destroys *all* in-memory agent state and forces the run to restart from step zero, burning every token spent so far and amplifying end-to-end latency by the elapsed-time-to-failure. ## Optional - Topics (23): [S3](https://llms3.com/llms-full.txt#s3), [Object Storage](https://llms3.com/llms-full.txt#object-storage), [Lakehouse](https://llms3.com/llms-full.txt#lakehouse), [Data Lake](https://llms3.com/llms-full.txt#data-lake), [Table Formats](https://llms3.com/llms-full.txt#table-formats), [Vector Indexing on Object Storage](https://llms3.com/llms-full.txt#vector-indexing-on-object-storage), [LLM-Assisted Data Systems](https://llms3.com/llms-full.txt#llm-assisted-data-systems), [Metadata Management](https://llms3.com/llms-full.txt#metadata-management), [Data Versioning](https://llms3.com/llms-full.txt#data-versioning), [Directory Buckets / Hot Object Storage](https://llms3.com/llms-full.txt#directory-buckets-hot-object-storage), [Object Storage for AI Data Pipelines](https://llms3.com/llms-full.txt#object-storage-for-ai-data-pipelines), [Kubernetes Object Provisioning & Policy](https://llms3.com/llms-full.txt#kubernetes-object-provisioning-policy), [Metadata-First Object Storage](https://llms3.com/llms-full.txt#metadata-first-object-storage), [Geo / Edge Object Storage](https://llms3.com/llms-full.txt#geo-edge-object-storage), [Time Travel](https://llms3.com/llms-full.txt#time-travel), [Sovereign Storage](https://llms3.com/llms-full.txt#sovereign-storage), [AI Memory Infrastructure](https://llms3.com/llms-full.txt#ai-memory-infrastructure), [Retrieval Engineering](https://llms3.com/llms-full.txt#retrieval-engineering), [Inference Locality](https://llms3.com/llms-full.txt#inference-locality), [AI Runtime Infrastructure](https://llms3.com/llms-full.txt#ai-runtime-infrastructure), [AI Memory Governance](https://llms3.com/llms-full.txt#ai-memory-governance), [GPU + Object Storage Convergence](https://llms3.com/llms-full.txt#gpu-object-storage-convergence), [Distributed Context Systems](https://llms3.com/llms-full.txt#distributed-context-systems) - Model Classes (21): [Embedding Model](https://llms3.com/llms-full.txt#embedding-model), [General-Purpose LLM](https://llms3.com/llms-full.txt#general-purpose-llm), [Code-Focused LLM](https://llms3.com/llms-full.txt#code-focused-llm), [Small / Distilled Model](https://llms3.com/llms-full.txt#small-distilled-model), [Reranker Models](https://llms3.com/llms-full.txt#reranker-models), [Metadata Extraction Models](https://llms3.com/llms-full.txt#metadata-extraction-models), [Document Parsing / OCR / VLM Models](https://llms3.com/llms-full.txt#document-parsing-ocr-vlm-models), [Anomaly Detection Models](https://llms3.com/llms-full.txt#anomaly-detection-models), [Data Quality Validation Models](https://llms3.com/llms-full.txt#data-quality-validation-models), [Classification / Tagging Models](https://llms3.com/llms-full.txt#classification-tagging-models), [Cost Optimization Models](https://llms3.com/llms-full.txt#cost-optimization-models), [Policy Recommendation Models](https://llms3.com/llms-full.txt#policy-recommendation-models), [Mixture-of-Experts (MoE)](https://llms3.com/llms-full.txt#mixture-of-experts-moe), [Kimi K2](https://llms3.com/llms-full.txt#kimi-k2), [DeepSeek V3](https://llms3.com/llms-full.txt#deepseek-v3), [DeepSeek-R1](https://llms3.com/llms-full.txt#deepseek-r1), [GLM-5](https://llms3.com/llms-full.txt#glm-5), [Llama 4](https://llms3.com/llms-full.txt#llama-4), [Qwen3](https://llms3.com/llms-full.txt#qwen3), [DeepSeek V4](https://llms3.com/llms-full.txt#deepseek-v4), [Claude Fable 5](https://llms3.com/llms-full.txt#claude-fable-5) - LLM Capabilities (15): [Embedding Generation](https://llms3.com/llms-full.txt#embedding-generation), [Semantic Search](https://llms3.com/llms-full.txt#semantic-search), [Metadata Extraction](https://llms3.com/llms-full.txt#metadata-extraction), [Schema Inference](https://llms3.com/llms-full.txt#schema-inference), [Data Classification](https://llms3.com/llms-full.txt#data-classification), [Natural Language Querying](https://llms3.com/llms-full.txt#natural-language-querying), [Schema Drift Detection](https://llms3.com/llms-full.txt#schema-drift-detection), [Metadata Enrichment & Tagging](https://llms3.com/llms-full.txt#metadata-enrichment-tagging), [Storage Class Lifecycle Recommendation](https://llms3.com/llms-full.txt#storage-class-lifecycle-recommendation), [Compatibility Test Case Generation](https://llms3.com/llms-full.txt#compatibility-test-case-generation), [Lakehouse Maintenance Runbook Generation](https://llms3.com/llms-full.txt#lakehouse-maintenance-runbook-generation), [Ransomware Pattern Detection from Object Events](https://llms3.com/llms-full.txt#ransomware-pattern-detection-from-object-events), [Cost Anomaly Explanation](https://llms3.com/llms-full.txt#cost-anomaly-explanation), [Policy Diff Review / Access Audit](https://llms3.com/llms-full.txt#policy-diff-review-access-audit), [Data Placement Recommendation](https://llms3.com/llms-full.txt#data-placement-recommendation) - [Complete content with all 410 summaries, 48 full guides, and relationship index](https://llms3.com/llms-full.txt)