Timeout Policy とは?
timeout policy は、プロキシまたは mesh がサービスの応答をどれだけ待ってからリクエストを中断して失敗を返すかを定義します。個々の呼び出しが消費できる時間に上限を設け、リソースを解放し、遅さを明確なエラーとして表面化させます。timeout はしばしば retry や circuit breaking と組み合わされます。
なぜ重要か
timeout がないと、1 つのハングした backend が呼び出し元を無期限に拘束し、接続を枯渇させかねません。適切に設定された timeout は、静かな停止を高速で観測可能な失敗に変えます。
関連ガイド
What Is a Retry Policy in a Service Mesh?A mesh retry policy automatically re-sends a failed request to a backend up to a set number of times under de…
What Is Circuit Breaking in a Service Mesh?Mesh circuit breaking caps concurrent connections and pending requests to a service so an overloaded backend…
What Is a Rate Limit Filter?A rate limit filter is a proxy component that counts requests and rejects those exceeding a configured rate,…