Write difference between Monolithic, SOA and Microservices Architecture.
Answer»
Monolithic Architecture: It is "like a big container" where all the software components of an application are bundled together tightly. It is usually built as one large system and is one code-base.
SOA (Service-Oriented Architecture): It is a group of services interacting or communicating with each other. Depending on the nature of the COMMUNICATION, it can be SIMPLE data exchange or it could involve several services coordinating some activity.
Microservice Architecture: It involves structuring an application in the form of a cluster of SMALL, autonomous services modeled AROUND a business domain. The functional modules can be deployed independently, are scalable, are aimed at achieving specific business goals, and communicate with each other over standard protocols.