Blog

  • gRPC for microservices in Kubernetes

    ·

    gRPC for microservices in Kubernetes

    I have been experimenting with gRPC for some time now. I wrote some articles to cover the basics like What is gRPC? SSL/TLS Auth in gRPC, and communication patterns used in gRPC. In these topics I went through some of the advantages of gRPC over traditional REST API for inter-service communication – especially in a…

  • gRPC Communication Patterns

    ·

    gRPC Communication Patterns

    One of the advantages gRPC offers over REST based services is the streaming bi-directional communication. Traditional implementations which depend on REST APIs often implement Web Sockets to enable real bi-directional streaming of data packets. I said real because it is still possible to simulate streaming behavior using REST, which of course is not performant, and…

  • Implementing SSL/TLS Auth in gRPC

    ·

    Implementing SSL/TLS Auth in gRPC

    gRPC supports various authentication mechanisms like SSL/TLS, ALTS (Application Layer Transport Security), and token based authentication. In this post, we will be implementing SSL/TLS auth in gRPC systems. We will begin by understanding the basics of SSL authentication, and also generate required key and certificate files to implement in our example. In the previous blog…

  • Launching Budge (v0.1.1)

    ·

    Launching Budge (v0.1.1)

    Things are finally moving for Budge! On 30th January 2025, I soft-launched Budge for iOS and Android phones. This is perhaps the first time I am writing and publishing about it anywhere till now. This blog post is a formal announcement of the same. If you are curious and have questions like – why soft-launch?…

  • Intro to gRPC and Protocol Buffers using Go

    ·

    Intro to gRPC and Protocol Buffers using Go

    Inter-service communication is perhaps one of the fundamental aspects of distributed computing. Almost everything relies on it. Distributed architectures consist of multiple microservices with multiple running instances each. The workloads run long running tasks on virtual or physical servers, containers, or Kubernetes clusters, while simpler tasks are run as serverless functions. gRPC caters to the…