Henning RohdeforSoftware Engineering Blogherohde.hashnode.net·Jan 7, 2023FeaturedThe Overuse of MicroservicesEvery programmer knows not to use monolithic architectures, and microservices have become the default choice for distributed systems. Smaller is better, to a limit: a config microservice; a microservice to abstract database access; a microservice for...Marvin Kweyu and 4 others are discussing this5 people are discussing thisDiscuss·64 likes·2.4K readsatomicityThanks for the article. I have had countless arguments with colleagues over this as well. Most times, a monolithic approach is perfect for a solution and one doesn't need to overengineer 10
Sara MitevaforSara Miteva's Blogsaramiteva.hashnode.net·Jan 26, 2021When to Transition from Monolith to Microservices?Microservices architecture is a way of creating applications through loosely coupling services. Every service represents a system component that can be created and maintained separately, executing an independent business goal. In this article, we'll ...Discuss·33 likes·207 readsDevops
Daniel S.forDaniel S.da.hashnode.net·Mar 25, 2022Monolith to microservice patternsYour team owns a monolith application and now it's time to split part of it into a separate microservice. The reasons can be multiple: the microservice should be owned by a different team and your team wants to restrict changes to the monolith or yo...Discuss·10 likes·159 readsMicroservices
Henning RohdeforSoftware Engineering Blogherohde.hashnode.net·Jan 24, 2023The Next 700 Stateless ServicesIn today's public cloud age, few distributed services use local disks directly. Instead, they delegate their data durability needs to some infrastructure that ultimately does, usually a distributed SQL database or message broker. Practically all clou...Discuss·2 likes·49 readsarchitecture
Henning RohdeforSoftware Engineering Blogherohde.hashnode.net·Jan 7, 2023FeaturedThe Overuse of MicroservicesEvery programmer knows not to use monolithic architectures, and microservices have become the default choice for distributed systems. Smaller is better, to a limit: a config microservice; a microservice to abstract database access; a microservice for...Marvin Kweyu and 4 others are discussing this5 people are discussing thisDiscuss·64 likes·2.4K readsatomicityThanks for the article. I have had countless arguments with colleagues over this as well. Most times, a monolithic approach is perfect for a solution and one doesn't need to overengineer 10
Sanchit KhuranaforCloudNative and Open Sourcecloudnativefdn.hashnode.net·Oct 8, 2022The role of microservices architecture in Cloud Native developmentMicroservices architecture has become an increasingly popular approach to software development in recent years, particularly in the context of Cloud Native development. Microservices are small, independent components of an application that perform sp...DiscussMicroservices
Vivekananthan Pasupathi forVivekananthan Pasupathi's Dev blogpvivek.hashnode.net·Jan 1, 2023NestJS Communication Between MicroservicesA Brief on microservice communication patterns Communicating between microservices can happen through a synchronous Request/Response pattern or the asynchronous event/message pattern. synchronous request/response pattern is useful where the response/...Discuss·128 readsnestjs
Amr TarekforCodeStack by Amr Tarek4mr74r3k.hashnode.net·Dec 16, 2022My take on Microservices in 2023Introduction Undoubtedly since Microservices came out sometime at the beginning of this decade, it grew up quite the popularity before being the most sought-after software architecture style globally. So where do we stand now and what does the future...Discuss·1 like·120 readsSoftware ArchitectureMicroservices
ARPAN MONDALforDevOps : Arpanarpanunzip.hashnode.net·Dec 12, 2022The Advancement of Microservices ArchitectureIn recent years, there has been a shift towards microservices architecture in the world of software development. This design approach involves building applications as a collection of small, independent services that communicate with each other, rath...DiscussMicroservices
Joseph F. Z. DOGBEVIforPigeonDevthepigeondev.hashnode.net·Oct 3, 2022Microservices explained by a pigeon (Part 1)Hi reader :). The PiseWigeon here. Welcome(back) to my blog. In today's article, I will be talking about Microservices. Since it's the title. But, you can't really talk about Microservices without talking about Monoliths. So I'll start with Monoliths...Discuss·2 likes·55 readsmicroservice
Salitha ChathurangaforTech With Salithatechwithsalitha.hashnode.net·Sep 26, 2022Micro Service Patterns: Circuit Breaker with Spring BootMicro services are the most important implementation aspect used in the industry now. With the use of micro service architecture, developers could eliminate so many issues they had previously with monolithic applications. Moving forward, people start...Discuss·108 readsSpringboot
Daniel S.forDaniel S.da.hashnode.net·Mar 25, 2022Monolith to microservice patternsYour team owns a monolith application and now it's time to split part of it into a separate microservice. The reasons can be multiple: the microservice should be owned by a different team and your team wants to restrict changes to the monolith or yo...Discuss·10 likes·159 readsMicroservices
Mehmet Firat KomurcuforMehmet Firat Komurcumehmetfiratkomurcu.hashnode.net·Dec 10, 2021Bulkhead PatternIntroduction In this article, we will see one of the Microservice Design Patterns: Bulkhead Pattern. What problem does this pattern solve? What are its pros-cons? When should we use it? Why is this pattern named "Bulkhead"? We are going to answer the...Discuss·1 like·729 readsMicroservices