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

marsbitPublished on 2026-05-08Last updated on 2026-05-08

Abstract

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)

Trending Cryptos

Related Questions

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.

Related Reads

Conversation with Co-founder of Hyperdash: Why is Hyperliquid Still Severely Undervalued?

Interview Summary with Hanson Birringer, Co-founder of Hyperdash: Why Hyperliquid Remains Undervalued In an interview on *The Rollup*, Hanson Birringer, Co-founder and Chief Revenue Officer of Hyperdash—a trading data analytics platform for Hyperliquid—shared his investment thesis on the Hyperliquid ecosystem. He described Hyperliquid as a pure play on three key crypto super-trends: perpetual contracts, real-world assets (RWAs), and stablecoins. The platform is an open-source, decentralized, and high-performance financial system uniquely positioned to bridge traditional institutional capital with decentralized finance. Birringer highlighted Hyperliquid's leadership in perpetual DEX trading and its recent innovation of RWA perpetual contracts. He emphasized the significance of USDC becoming a core quoting asset, which, by allocating 90% of its backend yield from assets like US treasuries to a protocol buyback fund, creates substantial, programmatic buy pressure for the Hype token. He addressed regulatory challenges, noting that Hyperliquid's policy team is actively engaging with US regulators like the CFTC to establish clear rules for decentralized venues. Once achieved, regulated brokers could route orders directly to Hyperliquid's backend, tapping into its low-cost liquidity layer. Regarding revenue, Birringer was optimistic, citing the immense size of traditional financial markets. Even capturing a small fraction of global trading volume in products like RWA perpetuals could lead to exponential growth for the protocol. The recently launched Grayscale Hyperliquid ETF, seeded by their SPV (Hyper Holdings Global), provides a compliant on-ramp for institutional investors drawn to the clear "cash flow + token buyback" model. Finally, he discussed Hyperdash's acquisition of Imperator, enhancing its data and node infrastructure to serve both retail traders and traditional asset managers. His bullish case rests on Hyperliquid's potential to provide unprecedented global access to dollar-based capital markets. He struggled to articulate a bear case, seeing the long-term trends of internet adoption and financial inclusion as powerful tailwinds.

marsbit1h ago

Conversation with Co-founder of Hyperdash: Why is Hyperliquid Still Severely Undervalued?

marsbit1h ago

DeepSeek V4 'Full-Blooded Edition' Leaked, Could Be Released As Early As Tomorrow

The highly anticipated full release of DeepSeek V4 is imminent, expected to launch as early as tomorrow after nearly three months of waiting. A select group has already received access to the GA (General Availability) beta, which includes two versions: DeepSeek V4 Flash and DeepSeek V4 Pro. Early testers report that V4's overall performance is close to the level of Opus 4.8, with coding capabilities rivaling GPT-5.6 Sol. Its agent abilities are significantly enhanced, and 3D/SVG generation has improved notably. While it may not surpass the recently released Kimi K3 in performance, its expected price point is significantly lower. The official release will introduce a new "peak/off-peak" pricing model for its API. For example, deepseek-v4-pro will cost $0.87 per million output tokens during standard times and $1.74 during peak hours. The flash version is even more aggressive at $0.28/$0.56 per million tokens, with cached input tokens priced extremely low at $0.0028. This makes V4 a strong contender in terms of cost-effectiveness, potentially offering Opus-level capabilities at a fraction of the cost, continuing DeepSeek's reputation as a "price disruptor" in the AI market. Initial demos showcasing V4's capabilities have begun circulating, including generated 3D simulation games, HTML games blending elements of Minecraft and No Man's Sky, and classic games like a "Cut the Rope" clone. The final GA version is set to replace the older deepseek-chat and deepseek-reasoner models, which will be retired on July 24th.

marsbit1h ago

DeepSeek V4 'Full-Blooded Edition' Leaked, Could Be Released As Early As Tomorrow

marsbit1h ago

WEEX Labs Weekly Observation: The 'Power Restructuring' of AI Infrastructure and the 'Deep Dive Movement' into the Real Economy

WEEX Labs Weekly Review: AI Infrastructure's "Power Restructuring" and the "Deep Dive" into the Real Economy Mid-July 2026 marks a pivotal shift in the global AI industry. The allocation of computing power is transferring from cloud giants to compute resource owners, while the core value of AI is solidifying around its penetration into physical industry, moving beyond the race for model parameters. The era of fragmented model development is over, replaced by a capital-intensive, integrated chain driven by hard tech. Key developments this week include Meta's planned entry into the cloud computing market with "MetaCompute." This move by social media giants with massive GPU clusters challenges traditional cloud providers like AWS, integrating compute, models, and data into one-stop services, which will squeeze smaller rental providers and shift enterprise focus towards underlying model ecosystems. Chinese foundational models like DeepSeek-V4 and Tencent's Hy-3 are pushing towards "utility" status through open-source releases and extreme cost reductions via MoE architectures. This lowers entry barriers for enterprises, allowing them to focus resources on private deployment and deep business integration. Embodied intelligence, particularly humanoid robots, is transitioning from lab demos to real-world factory applications, driven by policies promoting large-scale, practical deployment in logistics and manufacturing. The value focus is shifting from spectacle to stable industrial data and real operational efficiency. Global governance, through forums like WAIC, is evolving from theoretical ethics to practical operational frameworks for "Sovereign AI," raising geopolitical compliance barriers and making auditability and data sovereignty core design requirements from the outset. WEEX Labs Insights: The current transformation shows AI's prosperity is deeply embedding into the fabric of global manufacturing. Strategic recommendations include: 1) leveraging open-source models for private, proprietary knowledge bases; 2) maintaining cloud provider diversity to avoid vendor lock-in from integrated model ecosystems; and 3) seeking opportunities in the "embodied infrastructure" supporting robots, such as data collection, industrial simulation, and factory AI adaptation services.

marsbit1h ago

WEEX Labs Weekly Observation: The 'Power Restructuring' of AI Infrastructure and the 'Deep Dive Movement' into the Real Economy

marsbit1h ago

Is WEEX TradFi Reliable? What You Should Know Before Your First Trade of U.S. Stock Tokens

In recent years, cryptocurrency users have expanded their focus beyond Bitcoin and Ethereum to include popular traditional financial (TradFi) assets like Nvidia, Apple, and Tesla stocks. This shift raises key questions: What do these TradFi assets represent on crypto trading platforms? How do they differ from traditional stock ownership? And how can users assess the reliability of platforms offering such products? TradFi products, such as those offered by WEEX TradFi (including NVDA, MSFT, AAPL, TSLA, and QQQ tokens), are blurring the lines between crypto and traditional markets. They allow users to trade based on the price movements of traditional assets within a familiar digital asset trading environment. However, it's crucial to understand that trading a "stock token" is not equivalent to owning the actual stock. Users are participating in price speculation, not gaining shareholder rights like dividends or voting. A key feature of these products is 7x24 trading, offering flexibility beyond traditional market hours. While convenient, this also introduces unique risks, such as potential liquidity gaps and volatility when underlying markets are closed. For users evaluating TradFi products, reliability hinges on transparency and risk management. Critical factors include understanding the product mechanism, how prices track the underlying assets, and the associated risks—especially when using leverage. Popular stocks and indices are still subject to company performance, macroeconomic shifts, and sector trends. Ultimately, TradFi represents a new gateway connecting crypto users to global markets. The future points toward integrated trading environments where the distinction between "crypto investor" and "traditional investor" fades. For newcomers, a platform's reliability stems not from promises, but from a clear understanding of the product, a comprehensive view of risks, and informed judgment of the platform's capabilities.

marsbit1h ago

Is WEEX TradFi Reliable? What You Should Know Before Your First Trade of U.S. Stock Tokens

marsbit1h ago

Trading

Spot

Hot Articles

Ethena: Building a New Era of Web3‑Native Digital Dollars

Ethena is an Ethereum‑based synthetic dollar protocol that delivers crypto‑native monetary solutions, including USDe, a synthetic dollar, and sUSDe, a globally accessible U.S. dollar savings asset.

53.5k Total ViewsPublished 2026.03.16Updated 2026.03.16

Ethena: Building a New Era of Web3‑Native Digital Dollars

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of ERA (ERA) are presented below.

活动图片