![]() |
VOOZH | about |
We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.
Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.
Follow TNS on your favorite social media networks.
Become a TNS follower on LinkedIn.
Check out the latest featured and trending stories while you wait for your first TNS newsletter.
Data teams that thrived in the last wave of Software as a Service (SaaS) platform scale weren’t the ones that chased hype. They were the ones that made a few smart decisions: They adopted cloud-first operations, made cost and capacity visible, and chose architectures that could quickly adapt to changing conditions.
As it turns out, those are exactly the same practices the agentic era now demands.
If you look at how data teams are managing their AI transition, a clear pattern emerges: The ones with firm control over performance and spend had the easiest time supporting agents. They were already practicing tenant isolation. They were already making online changes during business hours. They were already using object-storage-backed recovery. Everything agents required from them, they were already doing. They simply applied the same principles they were already practicing to a new kind of user.
Let’s start from that premise: that agents are your new users. We’ll take a look at what makes them different from other users and how best to support them. Along the way, we’ll discuss four architectural factors that affect the ability to operate at scale. And we’ll close with a checklist you can use to evaluate the suitability of your current platform for agent-driven workloads.
Most data platforms were built for humans and services with relatively stable, predictable demands. Agentic systems are quite different. They spin up short-lived apps, run experiments, trigger migrations, branch off new datasets and tear it all down — often in parallel, and unpredictably.
We’ve seen this firsthand with companies like Manus. It offers a general-purpose agentic AI platform whose “wide research” agent swarms spin up thousands of short-lived workloads every day. It’s no longer managing a single monolithic database, but instead orchestrating millions of tiny, temporary branch-like environments behind the scenes.
At scale, what agents need isn’t a monolithic, ever-growing database. It’s effectively millions of tiny, isolated databases or branches popping in and out of existence. Once you accept that premise, four requirements for agentic architectures naturally follow:
Here are four architectural choices that support your agentic users’ needs.
Agents can quickly devour shared resources. To keep that from happening, separate compute from storage so you can add query capacity without shifting data. Then separate compute from compute to give online transaction processing (OLTP), analytics and maintenance their own lanes and SLOs.
Attaching stateless SQL/compute engines to durable, shared object storage lets you:
What to verify:
When thousands of agents are branching data, building indexes and sending queries at the same time, SQL frontends, analytical readers, background maintenance (compaction, backfills), backup/restore and control planes need to be scaled — and governed — independently, to keep them running smoothly.
What to verify:
Traditional data platforms often idle at 20% to 25% CPU while maintaining extra headroom “just in case.” That’s survivable with human users; it’s untenable in an environment where agents are spinning up thousands of short-lived workloads. The fix is to make the cost per query visible — for example, through request-unit (RU) accounting — in the same pane engineers already watch.
That way, engineers know which queries to optimize and what savings to expect. Product and finance can set budgets and caps that map to real work, and platform teams can recommend improvements based on actual spend, not gut feel.
What to verify:
For agentic architectures, using object storage (S3/Google Cloud Storage/Azure Blob) for the data backbone is not optional. It enables context-aware scaling by pulling data from a shared object store and caching hot data locally for ultra-low latency, ensuring the database is always the right size for the moment. During scale-out or recovery, new compute should pull state from durable storage rather than copying from peers. Backups and long-term snapshots should live there, too.
Benefits:
What to verify:
When agents are your users, change is constant. Schema evolution, indexing, data movement and upgrades must happen online, with clear visibility into what is happening.
Here’s what that looks like in practice:
What to verify:
So that’s what you should try to do. Here are some things to avoid.
Use the following checklist to compare platforms for agentic workloads:
Agentic systems don’t require a brand new approach to infrastructure. The right architecture for agents is the right architecture for any large-scale modern use case. But agents are a forcing function.
Data teams don’t have the luxury of sticking with monolithic platforms that are slow to scale and hard to manage. Agents will bring those old architectures to their knees. But as the most successful data teams have found, if you design for flexibility, visibility and performance using the methods described above, you’ll ship faster with fewer weekend fire drills, even when your “users” number in the millions — and most of them aren’t human.