Tuesday 29 July 2014

MICROSERVICES

I was inspired by the article from Martin Flower on microservices , here's some important short notes from his article.

The Microservice architectural style is an approach to developing a single application as a suite of small services, each running in its own process and communicating with lightweight mechanisms, often an HTTP resource API. 
These services are built around business capabilities and independently deployable by fully automated deployment machinery. 
There is a bare minimum of centralized management of these services, which may be written in different programming languages and use different data storage technologies.

comparing Monolithic applications with Microservices:

Figure 1




Other useful references:
http://www.infoq.com/articles/microservices-intro
https://michaelfeathers.silvrback.com/







No comments:

Post a Comment