From 447b8c560a0f1bddace87ba8c3ccc45f4e294a6b Mon Sep 17 00:00:00 2001 From: Karl Cardenas Date: Fri, 14 Jan 2022 14:48:54 -0700 Subject: [PATCH] api gw vs mesh section added --- .../content/docs/intro/usecases/what-is-a-service-mesh.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/website/content/docs/intro/usecases/what-is-a-service-mesh.mdx b/website/content/docs/intro/usecases/what-is-a-service-mesh.mdx index d0b6a0a911..28e5c8f375 100644 --- a/website/content/docs/intro/usecases/what-is-a-service-mesh.mdx +++ b/website/content/docs/intro/usecases/what-is-a-service-mesh.mdx @@ -44,8 +44,6 @@ An API gateway is a centralized access point for handling incoming client reques The API Gateway acts as a control plane that allows operators and developers to manage incoming client requests and apply different handling logic depending on the request. The API Gateway will route the incoming requests to the respective service. API Gateways primary function is to handle requests and return the reply from the service back to the client. --> **Note:** API Gateways are frequently used to accept north-south based traffic. North-south traffic is networking traffic that either enters or exits a datacenter or a virutal private network (VPC). - A _service mesh_ specializes in the network management of services and the communication between services. The mesh is responsible for keeping track of services and their health status, IP address, traffic routing, and ensuring all the traffic between services are authenticated and encrypted. Unlike API Gateways, a _service mesh_ will track all registered services' lifecycle and ensure requests are routed to healthy instances of the service. @@ -54,7 +52,8 @@ The mesh reduces the loadbalancer footprint as routing responsibilities are hand API Gateways can be used togehter with a _service mesh_ to bridge external networks (non-mesh) with a _service mesh_. --> **Note**: A _service mesh_ is primarly used for handling east-west based traffic. East-west traffic traditionaly remains inside a datacenter or a VPC. +-> **Note**: API Gateways are frequently used to accept north-south based traffic. North-south traffic is networking traffic that either enters or exits a datacenter or a virutal private network (VPC). +A _service mesh_ is primarly used for handling east-west based traffic. East-west traffic traditionaly remains inside a datacenter or a VPC. A _service mesh_ can be connected to another _service mesh_ in another datacenter or VPC to form a federated mesh. ## What Problems Does Service Mesh Solve?