Mudanças entre as edições de "Microserviço"

De Basef
Ir para: navegação, pesquisa
Linha 1: Linha 1:
 
* [https://blog.codeship.com/so-youre-thinking-of-decomposing-your-monolith-into-microservices/#disqus_thread Jones, T (2017). “So You’re Thinking of Decomposing Your Monolith into Microservices.”]
 
* [https://blog.codeship.com/so-youre-thinking-of-decomposing-your-monolith-into-microservices/#disqus_thread Jones, T (2017). “So You’re Thinking of Decomposing Your Monolith into Microservices.”]
 +
 +
* [https://www.infoq.com/articles/microservices-intro Richardson, C (2014). “Microservices: Decomposing Applications for Deployability and Scalability.”]
 +
 +
* [https://www.redbooks.ibm.com/redbooks.nsf/RedbookAbstracts/sg248275.html Daya, S. et al. (2015). “Microservices from Theory to Practice.” IBM Redbook (SG24-8275-00).]
 +
 +
* [https://techbeacon.com/want-develop-great-microservices-reorganize-your-team Gehani, N (2017). “Want to develop great microservices? Reorganize your team.”]
 +
 +
* [https://en.wikipedia.org/ Search on Iaas (this is a short article), PaaS, and SaaS]
 +
 +
* [https://www.redbooks.ibm.com/Redbooks.nsf/RedbookAbstracts/sg248374.html?Open Azraq, A. et al. (2017) “Essentials of Application Development on IBM Cloud.”]
 +
 +
* [https://homeadvisor.tech/4-important-microservice-characteristics/ Hay, D (2016). “4 Important Microservice Characteristics.”]
 +
 +
* [https://arxiv.org/abs/1609.05830v2 Montesi, F.; Weber, J. (2016). “Circuit Breakers, Discovery, and API Gateways in Microservices.”]
 +
 +
* [https://arxiv.org/abs/1609.05830v2 Montesi, F.; Weber, J. (2016). “Circuit Breakers, Discovery, and API Gateways in Microservices.”]
 +
 +
* [https://docs.microsoft.com/en-us/dotnet/standard/microservices-architecture/architect-microservice-container-applications/communication-in-microservice-architecture Torre, C. de la; Jones, M. (2017). “Communication in a microservice architecture.”]
 +
 +
* [https://www.nginx.com/blog/building-microservices-using-an-api-gateway/ Richardson, C. (2015). “Building Microservices: Using an API Gateway.”]
 +
 +
* [https://arxiv.org/abs/1609.05830v2 Montesi, F.; Weber, J. (2016). “Circuit Breakers, Discovery, and API Gateways in Microservices.”]
 +
 +
* [https://auth0.com/blog/an-introduction-to-microservices-part-3-the-service-registry/ Peyrott, Sebastián (2015). “An Introduction to Microservices, Part 3: The Service Registry.”]
  
 
* http://highscalability.com/blog/2014/4/8/microservices-not-a-free-lunch.html
 
* http://highscalability.com/blog/2014/4/8/microservices-not-a-free-lunch.html

Edição das 22h11min de 13 de abril de 2018

  • Team Communication Overhead - Microservice architecture reduce the team management complexity, but it is not able to diminish the need of team communication. They need to make sure update in one’s service is not breaking other functionality. We can found this problem in monolith architecture application too.
  • Formal documentation overhead - Every individual running component app need to keep updated schemas and interface documents all the time. It helps other team using the service.
  • Non uniform application - We can choose different technology stack for different component (plygot). It leads to problem of non uniform application design and architecture. It may can increase maintenance cost in long run.
  • Dev Ops complexity - We need to have a mature Dev Ops team to handle the complexity involved in maintaining Microservice based application. Due to several moving parts of the application, it become complex and required a level of expertise.
  • Increase Network communication - Independently running component interact with each other using network. Such system require reliable and fast network connections.
  • Testing - Testing of such application is definitely harder in compare to monolith application.
  • Production monitoring - Cost to monitor such application are higher. Unavailability of the right tools are also an issue to be considered.
  • Adds complexity to development due to its distributed nature.
  • Adds overhead in terms of costs and operational complexity (build-test-deploy-run).
  • Time to market may be hit adversely due to the distributed nature of the application.
  • Monitoring the application in production deployment becomes a complex job, with multiple services.
  • Service interface versioning needs to be managed for the multiple services.
  • The operational challenges of Microservices architecture mean you need high quality DevOps and release automation skills as part of your development team.
  • The asynchronous communication and distributed nature of the micro-services based system poses challenges for testing the system as a whole.
  • Operational expenditure could be significantly higher depending on the complexity of the system.
  • Large numbers of microservices are difficult to orchestrate.
  • Understanding, managing and testing dependencies is difficult.
  • Introspection into what happens between microservices and testing across entire architectures is difficult. Think of microservices as many little monoliths. Services are separate and independent but the business logic is still hampered by a single address space.
  • Large numbers of microservices are difficult to secure.
  • Once requirements change, do you want a microservice for one new feature or re-write and add to an existing service. That is a difficult decision in an architecture with many microservices.