API gateway คือจุดเข้าเดียวที่ตั้งอยู่หน้าบริการ backend — จัดการกับเรื่องที่ตัดข้ามกัน (cross-cutting concerns) เช่น routing, authentication, rate limiting และอื่น ๆ มันมีประโยชน์เป็นพิเศษในสถาปัตยกรรม microservices เพื่อรวมศูนย์ฟังก์ชันที่ใช้ร่วมกัน
API gateway ทำอะไร
The API GATEWAY is a single entry point in front of backend services:
Client → API GATEWAY → ┬→ Service A
├→ Service B
└→ Service C
→ handles cross-cutting concerns in ONE place (so services don't each implement them)
→ routes requests to the right service; abstracts the backend from clients
หน้าที่ทั่วไปของ gateway
✓ ROUTING → direct requests to the appropriate backend service
✓ AUTHENTICATION/authorization → verify identity/permissions centrally
✓ RATE LIMITING / throttling → protect backends from abuse/overload
✓ Request/response TRANSFORMATION; protocol translation; aggregation (combine service calls)
✓ CACHING; load balancing; SSL termination
✓ LOGGING, monitoring, analytics; error handling
