Book Image

gRPC Go for Professionals

By : Clément Jean
Book Image

gRPC Go for Professionals

By: Clément Jean

Overview of this book

In recent years, the popularity of microservice architecture has surged, bringing forth a new set of requirements. Among these, efficient communication between the different services takes center stage, and that's where gRPC shines. This book will take you through creating gRPC servers and clients in an efficient, secure, and scalable way. However, communication is just one aspect of microservices, so this book goes beyond that to show you how to deploy your application on Kubernetes and configure other tools that are needed for making your application more resilient. With these tools at your disposal, you’ll be ready to get started with using gRPC in a microservice architecture. In gRPC Go for Professionals, you'll explore core concepts such as message transmission and the role of Protobuf in serialization and deserialization. Through a step-by-step implementation of a TODO list API, you’ll see the different features of gRPC in action. You’ll then learn different approaches for testing your services and debugging your API endpoints. Finally, you’ll get to grips with deploying the application services via Docker images and Kubernetes.
Table of Contents (13 chapters)
10
Epilogue

Client boilerplate

Let us now write the client boilerplate. This will be very similar to writing the server boilerplate but instead of creating a listener on an IP and port, we are going to call the grpc.Dial function and pass the connection options to it.

Once again, we are not going to hardcode the address we are going to connect to. We are going to take that as a parameter:

args := os.Args[1:]
if len(args) == 0 {
  log.Fatalln("usage: client [IP_ADDR]")
}
addr := args[0]

After that, we are going to create an instance of DialOption, and to keep this boilerplate generic, we are going to make an insecure connection to the server with the insecure.NewCredentials() function. Do not worry though; we will discuss how to make secure connections later:

opts := []grpc.DialOption{
  grpc.WithTransportCredentials(insecure.NewCredentials()),
}

Finally, we can just call for the grpc.Dial function to create a grpc.ClientConn object. This is the object that we...