Conversation with Mai-Lan from AWS: The Next Battlefield for S3 – How to Handle the Data Consumption Surge in the Agent Era

marsbitPubblicato 2026-05-08Pubblicato ultima volta 2026-05-08

Introduzione

The explosive rise of Agent AI, exemplified by OpenClaw in China, is putting unprecedented pressure on cloud data infrastructure. Unlike human engineers, Agents consume data in an "extremely active and aggressive" parallel fashion, launching tens to hundreds of queries simultaneously, leading to exponentially higher call frequencies and throughput. Mai-Lan Tomsen Bukovec, VP of Technology at AWS, emphasizes that cost-effectiveness in this data layer is now a decisive factor for customers building Agent systems. To address this, AWS is positioning its foundational Amazon S3 service, now 20 years old, as the critical data platform for the Agent era. Recent key innovations include: **S3 Table** with native Apache Iceberg support, enabling Agents to efficiently interact with structured data via familiar SQL; **S3 Vector**, which introduces vectors as a native type for building contextual data and serving as a shared "memory space" for AI systems; and the newly launched **S3 Files**, which provides a POSIX-compliant file system interface over S3, allowing Agents to interact with data through the familiar paradigm of files and directories. These enhancements are designed to meet the unique data interaction patterns of Agents, which are trained on models already proficient with SQL, file systems, and contextual vectors. By unifying these access methods on the scalable, durable, and cost-efficient S3 foundation, AWS aims to provide the data backbone capable of supporting the next w...

At the beginning of the year, the popularity of OpenClaw in the Chinese market allowed everyone to see the enormous potential of Agents. But what followed was a question that all cloud vendors must answer: When Agents begin to multiply like cybernetic lobsters and call data at high frequencies, are the AI cloud infrastructure layers, especially the data layer, ready?

For example, when enterprise data teams deploy Agents into production environments, they often encounter bottlenecks at the data layer. Building Agents across different platforms such as vector databases, relational databases, graph databases, and data lakehouses requires synchronized data pipelines to maintain the timeliness of context information. But in real production environments, this context information gradually becomes outdated.

The urgency of this problem stems from the fundamentally different data consumption patterns of Agents compared to human engineers.

"Agents are consuming data in an extremely active and aggressive way. Their call frequency to data warehouses or data lakes is astonishing."

Mai-Lan Tomsen Bukovec, Vice President of Technology at Amazon Web Services, recently pointed out in a discussion with the author that Agents operate through a "parallel comparison and selection" mode of work. That is, instead of one query at a time, they run dozens or hundreds in parallel simultaneously, comparing results to find the optimal path. This makes Agents far more aggressive data consumers than humans—with call frequencies several orders of magnitude higher and data throughput growing exponentially.

Mai-Lan further pointed out, "Customers are now very eager to build Agent infrastructure. Cost, or rather cost-effectiveness, is no longer a secondary factor but has become a decisive one. In the next six months to a year, with the explosion of Agents, the choice of underlying data services will become crucial."

Now, the OpenClaw frenzy is subsiding, leaving behind a pressure test warning for the underlying storage and compute capabilities of cloud vendors. Mai-Lan believes that AWS holds a natural advantage in this field. The scale of Amazon S3 (Amazon Simple Storage Service), and the cost efficiency of Amazon Redshift and Amazon Athena under high concurrency, are precisely prepared for this ultra-large-scale, ultra-high-frequency Agent data interaction mode.

Coinciding with the 20th anniversary of Amazon S3, and centered around customer demands for data processing in the AI era, Amazon S3 has recently implemented three major evolutions: S3 Table (Tabular), S3 Files (Files), and S3 Vector (Vector).

Take S3 Table's native support for Apache Iceberg, for example. Mai-Lan noted that when Agents process data, they tend to interact directly with data in Iceberg format via SQL. The underlying logic is that Agents are built on large language models (LLMs), and LLMs have developed mature processing capabilities for SQL syntax and Iceberg data formats during training. Storing all table data in Iceberg format on S3 allows Agents to efficiently handle data without needing to learn complex access APIs for multiple systems. Currently, Agents show a high degree of compatibility with S3 and Iceberg.

When Iceberg capabilities were introduced to S3, it triggered a new wave of innovation. Data sources like Postgres and Oracle began writing directly to Iceberg, and Agent systems could interact directly with these tables. And with the launch of S3 Vectors, more and more AI applications are using vectors as a shared memory medium, thereby injecting "state" into AI interaction experiences.

Mai-Lan also pointed out that vectors have been introduced as a native data type in S3. The application of vectors mainly concentrates on two dimensions: one is using vectors to build contextual information for data stored in S3, and the other is using vectors as shared memory. In the five months since S3 Vectors was released, market feedback has met expectations. A large number of customers have started using this feature, generating vectors via embedding models to enrich the context of their data. The usage of S3 Vectors as the memory space for Agent systems has seen explosive growth.

It is worth mentioning that S3 Files was released a few weeks ago, enabling Agents to process data in S3 via the POSIX standard—that is, through a file system approach. In Agent systems, LLMs pay high attention to the "file" form. Whether it's Python libraries or Shell scripts, they are content familiar from LLM training. Agents naturally prefer to use files as data interfaces.

For this reason, the design concept of S3 Files is to mount an EFS file system on an S3 bucket. Through this mechanism, users can process S3 data in the file system based on POSIX standards: small files can be accessed faster via EFS caching, while large files are streamed directly from S3. This allows Agents to interact natively with S3 data using the familiar language of the file system and treat the shared file system as a "shared memory space" from S3.

From the perspective of the development of LLM memory capabilities, this progress is significant. Current AI experiences are gradually introducing deeper conversational context and personalized interactions—whether between Agents, between humans and Agents, or between Agents and data, model performance is continuously evolving. By further extending this natural interface of the file system, the memory capabilities of Agent systems are expected to achieve deeper enhancements.

The author notes that from its start in 2006 primarily handling semi-structured data like images, to later analytical data, from the initial data warehouse to the rise of the data lake, AWS is now vigorously promoting Amazon S3 to become the key foundation for carrying AI workloads to meet current customer demands. Mai-Lan believes that the design core of Amazon S3 is to drive the growth of mainstream data types in a cost-effective way, while always adhering to principles such as data availability, durability, and resilience. And this is precisely why customers have entrusted their data operations to S3 for the past 20 years, and it will also carry its possibilities for the next 20 years.

(Author | Yang Li, Editor | Yang Lin)

Crypto di tendenza

Domande pertinenti

QWhat is the core difference in data consumption patterns between AI agents and human engineers as highlighted in the article?

AThe article emphasizes that AI agents consume data in an 'extremely active and aggressive' manner. They operate on a 'parallel comparison' or 'optimization by comparison' model, issuing dozens or even hundreds of parallel queries simultaneously to find the best path. This results in a data consumption frequency and throughput that is several orders of magnitude higher than that of human engineers.

QWhat are the three major innovations recently implemented for Amazon S3 to meet the demands of the AI era?

ATo address AI-era data processing needs, Amazon S3 has recently introduced three major innovations: S3 Table (with native support for Apache Iceberg format), S3 Files (enabling POSIX file system access to S3 data), and S3 Vector (introducing vectors as a native data type for building context and shared memory).

QWhy does the article suggest that S3's support for Apache Iceberg is particularly beneficial for AI agents?

AThe article states that AI agents, built on large language models (LLMs), are already proficient in handling SQL syntax and Iceberg data formats due to their training. By storing all table data in Iceberg format on S3, agents can interact with the data efficiently without needing to learn multiple complex access APIs. This creates a high degree of compatibility between agents and the S3/Iceberg ecosystem.

QHow does the newly released S3 Files feature enable better interaction for AI agents with data in S3?

AS3 Files allows agents to interact with S3 data via the POSIX file system standard. It works by mounting an EFS file system on an S3 bucket. This lets agents use familiar file system operations: small files are accelerated via EFS cache, while large files are streamed directly from S3. This provides agents with a natural 'file' interface, treating the shared file system as a 'shared memory space' sourced from S3.

QAccording to Mai-Lan, what has become a decisive factor for customers looking to build Agent infrastructure, moving beyond just being a secondary consideration?

AMai-Lan points out that for customers eager to build Agent infrastructure, 'cost, or rather cost-performance ratio, is no longer a secondary factor but has become a decisive factor.' She emphasizes that in the coming 6 to 12 months, the choice of underlying data services will be crucial as Agent adoption explodes.

Letture associate

After Tokenized U.S. Treasury Bonds, Tokenized Stocks Are Becoming the New Battleground for RWA

**Tokenized Stocks Emerge as the New RWA Battleground** Following the initial surge of tokenized U.S. Treasuries, the tokenized stock market is rapidly expanding in both scale and quality. Unlike the currently stagnating treasury tokenization market, tokenized stock offerings are seeing significant growth and attracting major players from traditional finance, fintech, crypto exchanges, and native Web3 platforms. The U.S. SEC has outlined a framework for tokenized securities, which applies to stocks: **Issuer-Sponsored Tokenized Securities** (direct tokenization by the issuer, inheriting all shareholder rights but with strict compliance, e.g., Securitize); **Custodial Tokenized Securities** (tokenization of custodied interests, e.g., DTCC, Ondo's recent IVV/MU tokens); **Linked Securities** (tokenized debt notes backed by the stock, offering price exposure and greater on-chain utility, e.g., Ondo, xStocks, Robinhood's new Stock Tokens); and **Security-Based Swaps** (tokenized derivatives contracts, e.g., Robinhood's earlier Classic Stock Tokens). Key platforms are pursuing different strategies: * **Securitize** leads with an issuer-sponsored model, ensuring full rights but limiting on-chain interactions via its compliance-enforcing DS Protocol. * **Ondo** and **xStocks** use the linked security structure for broad accessibility on CEXs and DeFi, though this fragments liquidity and excludes U.S. users. * **Robinhood** recently launched linked security-based Stock Tokens, leveraging its user base and new Robinhood Chain. * Traditional infrastructure giants like **DTCC**, the **NYSE**, and **Nasdaq** are actively developing pilots and platforms for tokenized settlement and trading. * **Coinbase** has announced plans for tokenized stocks, likely using a structure that offers on-chain utility while excluding U.S. customers. Despite different approaches, all players are converging on tokenized stocks as the next major catalyst for the RWA sector. The evolving regulatory landscape and market adoption will shape this competitive new battlefield.

marsbit10 min fa

After Tokenized U.S. Treasury Bonds, Tokenized Stocks Are Becoming the New Battleground for RWA

marsbit10 min fa

Nvidia Faces Collective Selling by Funds: What Are Private Equity Firms Sniffing Out?

Several prominent Chinese private equity funds, including Gaoyi Asset and Dantoo's Orient Harbor, made significant portfolio adjustments in Q2 2024, as revealed in their latest SEC 13F filings. The most notable move was a collective retreat from AI chip leader NVIDIA, with Gaoyi reducing its stake by over 70%, Jilin Asset selling out completely, and Orient Harbor trimming its holdings. This shift does not signal a loss of faith in the AI trend, but rather a change in investment focus from "expectation-driven" to "realization-driven" valuation. Capital is flowing from crowded, high-valuation names towards segments with clearer profitability visibility and better risk-reward profiles. The funds' new major conviction is Taiwan Semiconductor Manufacturing Company (TSMC), which Gaoyi built into its top holding. The thesis centers on TSMC's role as a critical bottleneck in the AI supply chain due to its dominance in advanced semiconductor manufacturing and, crucially, advanced CoWoS packaging capacity. As demand for AI chips explodes, TSMC's "must-pass" foundry services grant it significant pricing power, suggesting a potential migration of profits from chip designers to manufacturers. Simultaneously, both Gaoyi and Orient Harbor substantially increased positions in memory chip companies like Micron and SanDisk. The investment logic here is twofold: a cyclical recovery in the memory market combined with a new, structural growth driver from AI. High Bandwidth Memory (HBM), essential for AI processor performance, is supply-constrained and its production diverts capacity from standard DRAM and NAND, creating a broad-based pricing tailwind for the memory sector. The collective reduction in NVIDIA reflects a view that its massive prior gains have compressed its future upside potential ("lowered赔率"). The market now demands flawless execution and faces new risks like rising costs from TSMC and HBM suppliers, as well as competition from cloud companies' custom chips. The funds' reallocation highlights a broader thematic: as the AI boom matures, investment opportunities and excess profits are shifting along the supply chain—from design to the physical constraints of manufacturing and memory. The next phase of AI investing may be defined by pricing power derived from tangible bottlenecks like advanced packaging and HBM capacity.

marsbit43 min fa

Nvidia Faces Collective Selling by Funds: What Are Private Equity Firms Sniffing Out?

marsbit43 min fa

Reverse Turing Test: This 'Pure Handcrafted Large Model' Is Driving Netizens Crazy

An art project called ChatTJB, humorously billed as a "next-generation, single-operator Large Language Experience" (LLE), gained viral attention in San Francisco. Promoted via a billboard, its website mimicked a genuine AI service with a chat interface, documentation, and even a "Pro" subscription. The twist? It was entirely manual. A single person, named Tucker, personally read, thought about, and typed replies to thousands of user queries using his thumbs, even hand-drawing images. He coined terms like "human-powered reasoning layer" to describe this process, highlighting its inherent human limitations: speed depended on his alertness, capacity was strictly one conversation at a time, and errors were traceable to a specific individual. The project's popularity overwhelmed Tucker, forcing a pause on new users and leading to plans for a community version with volunteer "AIs" (Average Individuals). While initially a source of amusement, Tucker noted that some users began sharing genuine personal concerns, valuing the knowledge that a real person was attentively listening and responding. The project satirizes AI hype while underscoring the irreplaceable value of human connection and attention in an age of automated, scalable interactions. A similar platform, "Your AI Slop Bores Me," was mentioned, where users either submit requests or role-play as the "AI" to fulfill others' text or drawing prompts, further emphasizing the human element behind the interface. The core message: sometimes, knowing there's a real person on the other end is what truly matters.

marsbit46 min fa

Reverse Turing Test: This 'Pure Handcrafted Large Model' Is Driving Netizens Crazy

marsbit46 min fa

Overnight, GPT-5.6 Sol Was Accelerated 14x by OpenAI

OpenAI, in collaboration with chipmaker Cerebras, has unveiled a limited preview of an "Ultrafast Mode" for its flagship GPT-5.6 Sol model. This new service tier reportedly achieves output speeds of up to 750 tokens per second—a 14x increase over the standard mode's baseline of ~53 tokens/s—without any loss in quality. Key to this acceleration is Cerebras's wafer-scale architecture (WSE-3), which houses model parameters entirely in on-chip SRAM to eliminate the memory bandwidth bottlenecks typical of traditional GPU clusters. In benchmark testing on the challenging "Humanity's Last Exam" (HLE), GPT-5.6 Sol in Ultrafast Mode answered all 2500 questions in 11 hours and 11 minutes, compared to over 78 hours for a competitor model, while maintaining similar accuracy. The speed boost also translated to a 5.6x faster end-to-end performance on the GDP-Val benchmark for economically valuable knowledge work. OpenAI highlights several potential applications for such rapid inference, including real-time event response and reliability analysis, dynamic financial research and security, complex customer support, interactive shopping assistance, and accelerated research and experimentation workflows that enable multiple iterative cycles within a single workday. This advancement may allow users to deploy the highest-tier models for tasks previously requiring slower secondary models, significantly compressing multi-step agent workflows from hours to minutes.

marsbit49 min fa

Overnight, GPT-5.6 Sol Was Accelerated 14x by OpenAI

marsbit49 min fa

Trading

Spot

Articoli Popolari

Come comprare ERA

Benvenuto in HTX.com! Abbiamo reso l'acquisto di Caldera (ERA) semplice e conveniente. Segui la nostra guida passo passo per intraprendere il tuo viaggio nel mondo delle criptovalute.Step 1: Crea il tuo Account HTXUsa la tua email o numero di telefono per registrarti il tuo account gratuito su HTX. Vivi un'esperienza facile e sblocca tutte le funzionalità,Crea il mio accountStep 2: Vai in Acquista crypto e seleziona il tuo metodo di pagamentoCarta di credito/debito: utilizza la tua Visa o Mastercard per acquistare immediatamente CalderaERA.Bilancio: Usa i fondi dal bilancio del tuo account HTX per fare trading senza problemi.Terze parti: abbiamo aggiunto metodi di pagamento molto utilizzati come Google Pay e Apple Pay per maggiore comodità.P2P: Fai trading direttamente con altri utenti HTX.Over-the-Counter (OTC): Offriamo servizi su misura e tassi di cambio competitivi per i trader.Step 3: Conserva Caldera (ERA)Dopo aver acquistato Caldera (ERA), conserva nel tuo account HTX. In alternativa, puoi inviare tramite trasferimento blockchain o scambiare per altre criptovalute.Step 4: Scambia Caldera (ERA)Scambia facilmente Caldera (ERA) nel mercato spot di HTX. Accedi al tuo account, seleziona la tua coppia di trading, esegui le tue operazioni e monitora in tempo reale. Offriamo un'esperienza user-friendly sia per chi ha appena iniziato che per i trader più esperti.

529 Totale visualizzazioniPubblicato il 2025.07.17Aggiornato il 2026.06.02

Come comprare ERA

Discussioni

Benvenuto nella Community HTX. Qui puoi rimanere informato sugli ultimi sviluppi della piattaforma e accedere ad approfondimenti esperti sul mercato. Le opinioni degli utenti sul prezzo di ERA ERA sono presentate come di seguito.

活动图片