惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
D
DataBreaches.Net
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
M
MIT News - Artificial intelligence
美团技术团队
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
有赞技术团队
有赞技术团队
L
LangChain Blog
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
S
SegmentFault 最新的问题
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
B
Blog
I
InfoQ

Forbes - Innovation

Why Do Humans Have Fingerprints? Hint: It’s Not What You Think Booking.com Confirms Data Breach, Reservation PIN Codes Changed Why Major News Sites Are Blocking The Internet Archive’s Wayback Machine iPhone Fold Release Date: New Report Details Frustrating Apple News Comet Tracker: How To See Pan-STARRS And Three Planets On Wednesday NYT Mini Crossword Today: Tuesday, April 14 Hints And Answers Today’s NYT Strands Hints, Spangram, Answers: Tuesday, April 14 (It’s A Little Unclear) Today’s Wordle #1760 Hints And Answer For Tuesday, April 14 Most Of The Microplastics In Urban Air Come From Tires Today’s Wordle #1759 Hints And Answer For Monday, April 13 NYT Mini Crossword Today: Monday, April 13 Hints And Answers NYT Pips Today: Hints, Answers And Walkthrough For Monday, April 13 The YC Chief Who Codes 10,000 Lines A Day Has A Simple Secret Samsung Expands One UI 8.5 Beta To More Galaxy Owners Why You Should Stop Using Your iPhone If It’s On This List Chamath Says Firms That Treat AI As A Strategy Hand Rivals Their Edge 3 Unexpected Habits Of Secure Couples, By A Psychologist The First Lamp That Folds Your Clothes Samsung’s Disappointing Price Update For Galaxy Phone Buyers 3 Subtle Signs Someone Is Falling In Love With You, By A Psychologist Do Mantis Shrimp See More Colors Than Humans? A Biologist Explains NYT Connections Answers Explained For Monday, April 13 (#1,037) NYT Connections Hints Today: Monday, April 13 Clues And Answers (#1,037) LEGO Luigi & Mach 8 (72050) Review: 2026’s Best Set Yet? Marc Andreessen Says AI Productivity Will Trigger A Hiring Boom 3D Printing Is The Ultimate Hack To Reduce Household Spending Apple iPhone Fold: Striking Design Revealed In Leaked Photos Apple Smart Glasses: New Leak Reveals A Major Design Twist To Beat Meta Tested: The AI Coming To The Rivian R2 Quordle Hints Today: Monday, April 13 Clues And Answers
Why AI Gateways Are Becoming Critical In Enterprise AI Pl...
Ravi Tummala · 2026-05-12 · via Forbes - Innovation

Ravi Tummalapenta, Executive Director at JPMorgan Chase, focused on enterprise AI platforms & Engineering and agentic system infrastructure.

getty

Across industries, organizations are embedding large language models into internal platforms, operational workflows and customer-facing applications. But as adoption accelerates, one challenge is becoming increasingly visible: reliability.

As AI moves from experimentation into mission-critical infrastructure, the architectural decisions made today will determine whether enterprise deployments are reliable at scale or fragile under load.

Many early AI implementations connect applications directly to model provider APIs. This works well for prototypes. Production environments, however, introduce operational realities that are consistently underestimated—rate limits, service interruptions, unstable streaming responses and unpredictable latency.

As organizations move toward agentic systems, where AI agents orchestrate tasks across enterprise data, tools and services, the consequences of these failures become more severe. A failed request in a standard AI application returns a bad answer. In an agentic workflow, it may take the wrong action.

Reliable AI systems must behave like any other mission-critical infrastructure: predictable, resilient and observable.

The Infrastructure Gap

This raises an important architectural question for enterprise technology leaders: What infrastructure layer is required to make AI systems reliable at scale?

One pattern in enterprise AI platforms is the introduction of an AI gateway layer between applications and model providers. Similar to traditional API gateways, this layer manages retries, timeout policies, request routing and streaming reliability. Below are a few reasons why this architecture is becoming essential.​

Minimal Overhead, Significant Protection

A common concern among platform teams is whether introducing an additional infrastructure layer will slow down AI applications. In practice, well-designed gateway layers typically introduce limited latency relative to overall model response times, while enabling capabilities that are difficult to implement consistently at the application level.​

Absorbing The Failures That Matter Most

​As AI workloads scale, rate limiting and transient service interruptions become more visible. A gateway architecture can help mitigate these issues by introducing retry policies, backoff strategies and request routing controls. These mechanisms can reduce the likelihood that temporary upstream disruptions propagate directly to applications, although they do not eliminate failures entirely.

The primary trade-off is latency: Retried or rerouted requests may take longer to complete. For many enterprise use cases—such as background processing, automation workflows and non-interactive tasks—this trade-off is often acceptable in exchange for improved resilience. However, latency sensitivity and reliability requirements will vary by application, and architectural decisions should reflect those constraints.​

Protecting System Stability Under Pressure

Enterprise AI systems must also guard against unpredictable model latency. Large language models occasionally produce delayed responses due to upstream congestion. Without a timeout policy, blocked requests accumulate and degrade overall system performance—a failure mode that is slow to appear and difficult to diagnose.

AI gateways enforce timeout policies that terminate requests exceeding a defined threshold, preventing slow upstream dependencies from cascading into broader platform instability. This is the same operational pattern applied in distributed systems engineering, applied to AI infrastructure.

Streaming reliability presents a similar challenge. Applications that deliver AI output in real time—token by token—are vulnerable to mid-stream connection breaks that produce incomplete or corrupted responses. A gateway layer detects these interruptions, retries the upstream request and reconstructs a stable stream for the client. For user-facing applications, an incomplete AI response is not a minor inconvenience. It is the moment a user decides the product cannot be trusted.

Why This Becomes A Strategic Decision

Taken together, these capabilities represent more than a technical pattern. They represent the difference between AI infrastructure that was built for production and AI infrastructure that was built for demos.

AI gateways provide centralized retry logic, timeout management, streaming protection and observability—capabilities that are difficult to implement consistently when each application manages its own error handling independently.

For technology leaders beginning this transition, the most common obstacle is not technical; it is organizational. Teams building AI applications are often reluctant to introduce what looks like additional infrastructure complexity before they have encountered production failures.

The most effective approach is to treat the gateway not as a separate project but as part of the initial production design, scoped alongside the first workload rather than added after the first incident. Starting with a minimal configuration—retry logic and timeout policies only—and expanding from there keeps the adoption footprint manageable.

The cultural shift required is equally important. Engineering teams accustomed to direct API integrations need a shared mental model of why centralized reliability infrastructure exists: not to slow development down, but to make production behavior predictable at the speed development teams want to move.

The most effective organizations establish a small set of gateway policies as defaults for any new AI workload—a reliability baseline that teams adopt by convention rather than by negotiation. This transforms the gateway from an infrastructure tax into a shared standard.

As enterprises scale AI across increasingly complex workflows, and as agentic systems begin coordinating tasks across data, tools and enterprise services, the importance of this infrastructure layer will only increase.

The Right Time To Build It

The right moment to introduce an AI gateway is during the transition from prototype to production, when the first real workloads are being designed, not after the first incidents occur. The policy decisions this layer requires—retry limits, timeout thresholds and backoff configuration—are difficult to calibrate correctly under pressure. Making them deliberately, as part of a platform architecture decision, produces far better outcomes than retrofitting them during an outage.

AI gateways represent the natural evolution of the API gateway pattern, adapted for the operational characteristics of large language models. The underlying principle is the same: Production systems need an infrastructure layer that absorbs upstream complexity, enforces operational policy and ensures that applications behave predictably regardless of what happens beneath them.

Organizations building AI platforms today are making architectural decisions that will determine their operational posture for years. The reliability layer is not optional infrastructure. It is the foundation everything else depends on.​​

The views expressed in this article are the author's own and do not represent the views of JPMorgan Chase & Co. or any of its affiliates. All information contained herein is based on the author's general industry experience.​


Forbes Technology Council is an invitation-only community for world-class CIOs, CTOs and technology executives. Do I qualify?