Menu
InfoQ Architecture·September 25, 2026

Architecting AI Systems: Identity, Guardrails, and Shared Inference Platforms

This article summarizes key discussions from QCon AI New York 2026, highlighting the shift in AI engineering towards systems engineering. It covers critical system design considerations for AI, including managing identity and authorization for autonomous agents, implementing guardrails for AI operations agents in large-scale Kubernetes environments, and designing multi-tenant shared inference platforms for ML and generative AI models. The discussions emphasize reliability, observability, control, and economic operation as first-class architectural constraints for production AI systems.

Read original on InfoQ Architecture

AI Engineering as Systems Engineering

The QCon AI New York conference underscored a fundamental shift: AI engineering has evolved into systems engineering. As AI systems become more capable and autonomous, the focus moves from individual model behavior to comprehensive system behavior. This necessitates robust architectural considerations around bounded execution authority for agents, context and state management, and wrapping probabilistic models with deterministic control planes. Concepts from distributed systems, security, platform engineering, and SRE are now central to building reliable, observable, controllable, and economical AI systems.

Identity and Authorization for Autonomous Agents

Traditional identity and authorization models, designed for human principals, are insufficient for autonomous software agents. Agents can act for multiple users, invoke un-enumerated tools, create subagents, and operate without direct supervision. Designing identity systems for agents requires addressing delegated authority across agent chains, auditability for multi-hop tool calls, and mechanisms to grant sufficient access without exposing underlying credentials. It also involves balancing overly broad privileged service accounts against excessively narrow permissions that hinder an agent's ability to complete tasks.

Guardrails for AI Operations Agents

When AI agents transition from diagnostic roles to taking direct action against production infrastructure, robust engineering controls are paramount. For example, LinkedIn's Kubernetes operations agent, managing 500,000+ nodes and 5 million pods, incorporates server-side rate limits, protections for destructive operations (delete/scale-down), access controls, bounded actions, and peer approval for production changes. These guardrails ensure safe and controlled automation within critical infrastructure.

Shared Inference Platforms for ML & Generative AI

Building a consolidated, multi-tenant model-serving infrastructure presents significant architectural and organizational trade-offs. Netflix's platform, handling millions of inference requests per second across diverse models, illustrates the challenge of supporting varied latency requirements (tens to hundreds of milliseconds), defining common deployment contracts, and delineating business logic from model logic. A shared platform allows ML practitioners to focus on modeling rather than infrastructure, but introduces operational complexities and continuing challenges in cost management and performance isolation.

AI systemsmachine learninggenerative AIautonomous agentsidentity managementauthorizationguardrailsKubernetes

Comments

Loading comments...

Architecture Design

Design this yourself
Design a highly scalable and secure AI platform that supports the deployment and management of autonomous agents and diverse ML/Generative AI models. Your design should include: 1) A robust identity and authorization system for software agents, accounting for delegated authority, multi-hop tool calls, and credential management. 2) Mechanisms for implementing guardrails and engineering controls for operations agents interacting with large-scale Kubernetes infrastructure, including rate limiting, access control, and peer approval workflows. 3) A multi-tenant shared inference platform capable of serving various ML models with different latency requirements and cost optimizations, while clearly separating business and model logic.
Practice Interview
Focus: identity and authorization for AI agents, shared ML inference platform, AI operations guardrails