"매 single entry point — fan-out, auth, rate limit". 매 microservices 의 클라이언트 facing facade. 매 Netflix Zuul (2013) 시작 → Kong (2015) → Envoy/Istio (2017) → AWS API Gateway HTTP API (2019). 매 2026 modern stack 은 Envoy + xDS control plane, edge AI inference gateway (LiteLLM, Portkey) 의 추가.
# SAM templateHttpApi:Type:AWS::Serverless::HttpApiProperties:Auth:Authorizers:JwtAuth:IdentitySource:$request.header.AuthorizationJwtConfiguration:issuer:https://auth.example.comaudience:[api.example.com]DefaultAuthorizer:JwtAuthRouteSettings:"POST /orders":ThrottlingBurstLimit:100ThrottlingRateLimit:50
언제: 매 multi-service public API, 매 cross-cutting concerns (auth/rate-limit/observability) 의 centralization, 매 multi-provider LLM routing.
언제 X: 매 single monolith, 매 internal service-to-service only (use mesh sidecar), 매 hot path 의 < 100us latency 요구.
❌ 안티패턴
Smart gateway: 매 business logic 의 gateway 에 stuff — 매 deployment coupling 의 발생.
Single gateway for all clients: 매 mobile/web/partner 매 BFF 의 분리 안 함 → over-fetching.
No timeout/retry budget: 매 cascading failure 의 발생.
Auth-only gateway, no rate limit: 매 abuse vector.
🧪 검증 / 중복
Verified (Kong docs, Envoy docs, AWS API Gateway docs, Microsoft Azure Architecture Center "Gateway Aggregation" pattern).
신뢰도 A.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — full content (Kong/Envoy/AWS/LLM gateway patterns)