2026-06-05

Sources

Engineering @ Scale — 2026-06-05#

Signal of the Day#

The single most instructive insight this period comes from Cloudflare’s AI Gateway deployment: you cannot control enterprise AI costs without tying every inference request to a verifiable identity. Passing shared API keys around creates untrackable financial black holes; engineering organizations must use OIDC or JSON Web Tokens (JWTs) to attach specific user or service identities to the network layer, enabling dynamic routing and hard budgets based on the requestor’s profile.

2026-06-17

Sources

Engineering @ Scale — 2026-06-17#

Signal of the Day#

The assumption that building an internal AI agent platform is simply a matter of wiring a workflow engine to an LLM and a database is a dangerous trap. Moving from workflows to autonomous agents introduces non-deterministic evaluation requirements, temporal memory constraints, and the need for dynamic, action-level authorization that traditional RBAC cannot support.

2026-06-26

Sources

Engineering @ Scale — 2026-06-26#

Signal of the Day#

Stripe’s decision to build a dedicated, async, network-bound microservice for AI agents—rejecting their existing compute-bound, low-latency ML inference infrastructure—is the blueprint for scaling LLMs in production. Traditional ML relies on rapid GPU throughput, but agentic tasks are I/O bound and unpredictable; building infrastructure that supports long-running stateful interactions without blocking threads is mandatory for scale.

2026-07-02

Sources

Engineering @ Scale — 2026-07-02#

Signal of the Day#

GitHub discovered that attempting to fix 20,000 exposed secrets by rewriting git history was an operational trap; instead, they successfully reached inbox zero by deploying narrow, read-only validation checks to prove a secret was live, allowing them to rapidly rotate credentials while preserving the forensic audit trail. The key lesson is that deleting history destroys the context needed for incident response, so organizations should focus on durable ownership and secret rotation rather than trying to scrub the commit logs.

2026-07-03

Sources

Engineering @ Scale — 2026-07-03#

Signal of the Day#

Building an internal AI analytics agent is only successful when grounded in a rigorously governed data architecture; Cloudflare’s new natural language AI agent, Skipper, succeeds specifically because the company first migrated 53% of its query volume to a decoupled lakehouse architecture utilizing Trino and Iceberg.