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 ArchitectureThe 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.
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.
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.
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.