Scaling gRPC Applications via DNS Load Balancing
Learn how to scale a gRPC application via DNS load balancing.
We'll cover the following...
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 instances, so each individual instance doesn't have to deal with more connections than it can support. The process of distributing the load between the applications is known as load balancing.
Load balancing is supported by gRPC too. In the .NET implementation, load balancing can be configured directly from the client. In this lesson, we'll have a look at the simplest load balancing method, which is known as Domain Naming Service (DNS) load balancing. We'll start with a gRPC client and server setup demonstrated in the code widget below. Then, we'll add a DNS load balancing configuration to it.
{ "profiles": { "BasicGrpcService": { "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": false, "applicationUrl": "http://127.0.0.1:5100;https://127.0.0.1:7100", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } } } }
This time, we use gRPC client because it's commonly used in a real-life setup. Previously, running it inside a basic console application was sufficient to learn how ...