APAmrut Prabhuinamrutprabhu.hashnode.dev·Jun 22, 2021 · 5 min readDefining Event-Driven Architectures - AsyncAPIIn this article, I am going to be talking about how we can define your event-driven architectures using the AsyncAPI definition. Introduction A while ago, I published an article about how you can document REST APIs using Open API 3 specification. Thi...00
APAmrut Prabhuinamrutprabhu.hashnode.dev·Jun 1, 2021 · 5 min readWhat are Java RecordsJava Record Java record is a type of class whose sole purpose is to drive programming with immutable data. Let’s look at a simple example. public record Data( int x, int y) So here we have created a record with header x and y. Here x and y are refer...00
APAmrut Prabhuinamrutprabhu.hashnode.dev·May 31, 2021 · 4 min readKind - A New Kubernetes ClusterRecently I wanted to experiment with something on a Kubernetes cluster, and I didn't want to spin up a new cluster on AWS and wanted something quick. Till now, Minikube was the only thing I was using as a local Kubernetes cluster. But I start noticin...00
APAmrut Prabhuinamrutprabhu.hashnode.dev·May 20, 2021 · 7 min readApache Airflow 2.0: A Practical Jump StartIn this article, I would like to give you a jump-start tutorial to understand the basic concepts and create a workflow pipeline from scratch. So let's get started! Introduction Apache Airflow is an orchestration tool that helps you to programmaticall...00
APAmrut Prabhuinamrutprabhu.hashnode.dev·May 18, 2021 · 6 min readSpring Boot: API First DesignIn this blog, I take a practical approach to API first design with an example using Open API 3 specification. Firstly, I describe how I created the API definition, then how I created the server and the client code from the API definition. Then I will...00