Start Preparation Smartly

We have the collection to start prepartion smartly.

Start Assessment

Learn Kubernetes | K8s Tutorial for Beginners

  DevOps Tech Hub

116 Followers

Micro Services Architecture


Consider an example of online retail portal, customer can browse the services through browser and can add products to the cart, order a product, authorize payments, and track shipments. These are different components built based on Micro services model. Each component as a separate loosely coupled service depending on the business requirement. Network established to have communication between all these service components but works as independent code base.

Micro services Architecture deploy these components into separate unit of application code in separate compute platform.

Below listed each service component has its own code deployment:

  1. Catalog – Listing Products inventory
  2. Order – Takes customer order and process it
  3. Payment – Manage Payments through payment gateway
  4. Shipment – Manage Shipping the product
  5. Tracking – Showing the Product Shipment status

Below Architecture describes the “Microservices Architecture” view of deploying all service components in separate compute platform with separate artifact(.war)


Previous Next