Data Plane Componentとは何か?
Data planeは、リクエストを転送するproxyやワークロードを実行するnodeなど、実際のユーザーとアプリケーションのトラフィックを扱う層です。Control planeが計算したルールと配置を実行しますが、それ自体はグローバルな決定を行いません。Data planeをシンプルかつ高速に保つことで、throughputのために水平方向にスケールできます。
なぜ重要か
Data planeはリクエストパス上に位置するため、そのlatencyと可用性がユーザーの体験を定義します。制御ロジックから分離することで、control planeの一時的な不具合が、すでに流れているトラフィックを中断させる必要がなくなります。
関連ガイド
What Is a Control Plane Component?A control plane component is a management service that schedules workloads, stores cluster state, and drives…
What Is Service Mesh Sidecar Injection?Service mesh sidecar injection automatically adds a proxy container to each pod so the mesh can manage traffi…
What Is a Rate Limiter Strategy?A rate limiter strategy is the algorithm that caps how many operations a client may perform in a window, such…