API Gateway - CI/CD用語集の定義
API gateway は、リクエストをバックエンドサービスへルーティング、認証、スロットリングする単一のエントリポイントです。
API gateway はバックエンドサービスの前段に位置するサーバーで、受信リクエストに対してルーティング、認証、rate limiting といった横断的関心事を処理します。deployment pipeline は release の一環として gateway の設定を更新することがよくあります。
gateway はルーティングとポリシーを一元化し、サービスをシンプルに保ちます。CDでは、gateway のルートとポリシーの定義がバージョン管理され、その背後にあるサービスとともに適用されます。
関連ガイド
Rate Limiting - CI/CD Glossary DefinitionRate Limiting: Rate limiting restricts how many requests a client can make in a time window, protecting a ser…
Route - CI/CD Glossary DefinitionRoute: A route is the rule that maps an incoming request path and method to the handler that serves it. Routi…
Endpoint - CI/CD Glossary DefinitionEndpoint: An endpoint is a specific URL and method combination that an API exposes to perform an operation, s…