© 2023 Hashnode
#microservices
In this OpenTelemetry dotnet guide, you will learn exactly how to set up a .Net project that leverages OpenTelemetry, from scratch, and without any prior knowledge of OpenTelemetry. We will build a si…
Microservices Architecture Microservices architecture is a popular approach to building software systems that are composed of small, independent services that communicate with each other through APIs.…
Microservices is an architectural pattern that is becoming increasingly popular among software development teams. But before diving deep into Microservices Architecture it is important to know about M…
This is the continuity of my previous article. Please read my previous Part 1 article before proceeding. https://pvivek.hashnode.dev/nestjs-communication-between-microservices https://medium.com/@vi…
Event-driven architecture (EDA) is a design pattern that allows software systems to respond to specific events, such as user interactions, sensor readings, or messages from other systems. The basic co…
Let's say you have a nodejs backend deployed in Kubernetes, and wanted to call another service inside your Kubernetes cluster. How do you do it? (Skip to answer by scrolling down to the bottom) const axios = require('axios'); //DONOT use in…
How to Architect Asynchronous Microservices? Firstly, Let's see a story of how Alice can order pizza online, while she worked in her office and when the pizza was ready, she gets a notification for pi…
https://youtu.be/_V229G7BHUQ Introduction This tutorial will guide you through the process of deploying a cloud-native application using microservices architecture and Docker containers. We will be …
Microservices architecture is a popular software design pattern that is used to build large, complex applications by breaking them down into smaller, independent services that can be developed, deploy…
Microservices Interview Questions for Freshers 1. What do you mean by Microservice? Microservices, also known as Microservices Architecture, is an SDLC approach in which large applications are built a…