Microservices Introduction
Microservices is a set of practices that make using decentralized services practical.
The concepts, principles, and algorithms we’ve learned in previous lessons are all in play with microservices. The patterns and techniques introduced in this lesson address how to build distributed systems that are both available and scalable.
Microservices introduce a dynamic element to distributed systems that we haven’t yet discussed.
Scaling a distributed application and making it highly available calls for new practices. These practices include both technical patterns for designing large-scale distributed systems as well as software engineering techniques for managing development teams as well as building, deploying, and monitoring applications.
This lesson will focus on the technical concerns and only briefly touch on others. If you’re interested in learning more about these, links to some introductory articles are included in Additional Resources.
Lesson Objectives
After completing this lesson, you should be able to
- Describe the scalability cube, y-axis scaling, and its applicability to architecting large-scale distributed systems.
- Explain the appeal of microservice architectures in building modern online applications.
- Describe the drawbacks of the direct client-to-microservice approach and explain how API gateways mitigate those drawbacks.
- Explain the common service registry patterns and why they’re necessary.
- Describe the techniques used to managed complexity in microservice architectures.
Required Reading/Viewing
- Rainbow’s End by Vernor Vinge (complete).
- Lesson 10: Microservices Links to an external site. (slidedoc) (PDF Download PDF)
- Microservices Links to an external site. by James Lewis and Martin Fowler
- How small should your microservice be? Links to an external site. by Stefan Tilkov
- Building Microservices: Using an API Gateway Links to an external site. by Chris Richardson
- Service Discovery in a Microservices Architecture Links to an external site. by Chris Richardson
Additional Resources
- Implementing Domain Driven Design by Vaughn Vernon, Addison Wesley, 2013.
- Event-Driven Data Management for Microservices Links to an external site. by Chris Richardson
- Continuous Integration Links to an external site.by Martin Fowler
- Revisiting “What is DevOps” Links to an external site. by Mike Loukides
- A Quick Introduction to Docker Links to an external site. by Scott Lowe