Scaling gRPC Applications via DNS Load Balancing
Learn how to scale a gRPC application via DNS load balancing.
Having a single server that clients connect to over the network is acceptable if there are relatively few clients trying to connect to it simultaneously. However, what if our application needs to support thousands, or even millions, of connected clients? In this case, having a single server would no longer be sufficient. We would need to scale our application across multiple servers.
Scaling out is a process of deploying many duplicate server-side applications. These application instances still act as a single distributed application, but client connections are distributed among many ...
Get hands-on with 1400+ tech skills courses.