- Hands-On MSA
- Hands-On SOA
- Composition Patterns
- Different Elements
- Microservice Architecture - Blueprint
- Microservice Architecture - Scaling
- Introduction
- Microservice Architecture - Home
Microservice Architecture Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Microservice Architecture - Blueprint
Microservice implements SOA internally. In a broader sense, we can consider it as a subset of one SOA apppcation.
Rule & Workflow
Following are the principles that need to be taken care of while developing a microservice.
High Cohesion − All the business models need to be sub-spanided into the smallest business part as much as possible. Each service should be focused to perform only one business task.
Independent − All the services should be full stack in nature and independent of each other.
Business Domain Centric − Software will modularize according to the business unit and is not tier based.
Automation − Testing deployment will be automated. Try to introduce minimal human interaction.
Observable − Each service will be full stack in nature and they should be independently deployable and observable pke an enterprise apppcation.
Team Management
“Two Pizza Rule” is a kind of rule that restricts the number of attendees in a microservice development team. According to this rule, number of the team members of one apppcation should be so small such that they can be fed by two pizza. Generally, the number should not be more than 8. As microservice is full stack in nature, the team is also full stack in nature. To increase the productivity, we need to build one team of maximum 8 members with all kinds of expertise required for that service.
Task Management
Task is an important role in software development pfe cycle. Developing a large scale apppcation can be broken down into several small units of task. Let us consider we need to develop one apppcation such as Facebook. Then, “Log in” functionapty can be considered as a task of the entire build process. Progress for each of these tasks need to be monitored properly under highly skilled professionals. Agile is the well-known process structure followed in the industries to keep up with good task management.
Advertisements