Book Image

Microservices Communication in .NET Using gRPC

By : Fiodar Sazanavets
Book Image

Microservices Communication in .NET Using gRPC

By: Fiodar Sazanavets

Overview of this book

Explore gRPC's capabilities for faster communication between your microservices using the HTTP/2 protocol in this practical guide that shows you how to implement gRPC on the .NET platform. gRPC is one of the most efficient protocols for communication between microservices that is also relatively easy to implement. However, its official documentation is often fragmented and.NET developers might find it difficult to recognize the best way to map between C# data types and fields in gRPC messages. This book will address these concerns and much more. Starting with the fundamentals of gRPC, you'll discover how to use it inside .NET apps. You’ll explore best practices for performance and focus on scaling a gRPC app. Once you're familiar with the inner workings of the different call types that gRPC supports, you'll advance to learning how to secure your gRPC endpoints by applying authentication and authorization. With detailed explanations, this gRPC .NET book will show you how the Protobuf protocol allows you to send messages efficiently by including only the necessary data. You'll never get confused again while translating between C# data types and the ones available in Protobuf. By the end of the book, you’ll have gained practical gRPC knowledge and be able to use it in .NET apps to enable direct communication between microservices.
Table of Contents (17 chapters)
1
Section 1: Basics of gRPC on .NET
5
Section 2: Best Practices of Using gRPC
9
Section 3: In-Depth Look at gRPC on .NET

Reviewing the native Protobuf data types

We will need to modify our greet.proto file further. Let's add the following section at the bottom of it:

message BasicTypes {
  int32 int_field = 1;
  int64 long_field = 2;
  uint32 unsigned_int_field = 3;
  uint64 unsigned_long_field = 4;
  sint32 signed_int_field = 5;
  sint64 signed_long_field = 6;
  fixed32 fixed_int_field = 7;
  fixed64 fixed_long_field = 8;
  sfixed32 signed_fixed_int_field = 9;
  sfixed64 signed_fixed_long_field = 10;
  float float_field = 11;
  double double_field = 12;
  bool boolean_field = 13;
  string string_field = 14;
  bytes bytes_field = 15;
}

This message definition, alongside the enum section that we have added, provides all of the basic built-in data types available in Protobuf. We have named each field after the data type it represents to make it...