BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage Articles Seven Microservices Anti-patterns

Seven Microservices Anti-patterns

Leia em Português

Bookmarks

What it Was, Was Microservices

Buzzwords often give context to concepts that evolved and needed a good “tag” to facilitate dialogue. Microservices is a new “tag” that defines areas I have personally been discovering and using for some time now.  Articles and conferences described something that I slowly realized I had been evolving in my own personal experience for the past few years.  While industry and professional discussions on Microservices have given the limelight to the companies like Netflix, Amazon, and Google and to the practitioners who have done it successfully, I have some personal experience that can provide insight to successful Microservices implementation.

The three standard and most common business drivers for any architecture are:

  • Improved Agility – The ability to respond to the business needs in a timely fashion so that the business can grow
  • Improved Customer Experience – Improve the customer experience so that customer churn is reduced
  • Decreased Cost – reduce the cost to add more products, customers or business solutions

In fact, all of us are trying to do this in our day-to-day work. SOA creates a business aligned software framework that enables the enterprise to get there. Several large software vendors have emerged and claimed that their suite of products can enable the enterprise to deliver SOA.

If you do not have the right people, culture, and investment, SOA will not deliver the business value.  Microservices architecture is not fundamentally different from SOA, the goals and objectives are the same but the approach is slightly refined and in fact, I would simply say that Microservices is mere SOA made scalable. Microservices enables applications/systems that desperately must move away from a monolithic implementation, to a distributed, decentralized, services platform serving many applications. Microservices are independent that embrace agility and application evolution as an enterprise digitally transform. Microservices success depends upon the service independence and the service flexibility.

I would define Microservices as “An approach to delivering SOA by building fine-grained services to support business capabilities that are distributed and organized as functional domains". No pattern is a magic wand or silver bullet. You should conceive and tailor the pattern correctly for an enterprise. Enterprises should focus on resolving the items that are required to support the architecture to make an adaptive platform.

A few enterprises failed in their SOA implementation miserably – because they did not fully analyze their business capability model and considered developing web-services mean SOA or buying a SOA suite from large vendor would make them SOA-enabled or the inability to show the alignment between SOA and their business driver/goals.

For Example

An example from experience might clarify this point. At one past job, the enterprise was aiming to improve agility, customer experience and drive down cost. We decided to build a standard multi-tenant SOA platform. The approach was set to develop fine-grained services so that we could make changes very often and deploy small, manageable changes to the platform. If we did the same approach today, we would likely call it microservices architecture. Back then we did not have this term, but it just made sense.

Services were modeled based on business capability model and the first release went well. They were XML over JMS sync services and primarily focused on delivering the capabilities required for claims platform exposed to Agents, web and voice channel application. It gave us the ability to deploy frequent, small changes and A/B feature support seamlessly for our applications.

When the requirements were incrementally added (and they always were) it was very hard to release the solution rapidly because of the integration complexity between applications and the consumers. Integration, functional testing, and production release required tight coordination. As the business started to expand and the changes were 10x more frequent than the initial release, and as most of the tasks in delivery lifecycle were manual, the time to market did not meet business expectation. Soon, none of our goals were met as poor Microservices automation and lifecycle management led to delivery entropy.

Lessons Learned – Don’t Do These Things, Instead…Do These OTHER Things

This brings me to share some of the lessons that I learned as part of my journey so that you can keep an eye on these items when you hit the road with Microservices

1) Cohesion Chaos

We developed a service to get the customer information designed to pull the customer policy information, personal information and the plan that they enrolled in. Over a time, it started to do more than getting the customer information. As new requirements came in, this service went through frequent changes and deployments. It was unable to scale and meet the required availability. It became the proverbial “Big ball of mud”.  How did it get there? For starters, there was no governance around functional separation of concern. If an influential consumer asking to put unrelated logic in this one service to reduce round trips, that function got slapped on without question.  Perhaps a gateway or a BPM layer could have avoided this scenario, but there was no time for that…just time to crank out another business function point.  

The preventative cure is to govern business functionalities that are not relevant to the service. Services must align clearly to a business capability and should not try to do something outside of their boundary. Functional separation of concern is vital for architecture to govern otherwise it will destroy the agility, performance, and scalability and ended up in establishing a tightly coupled architecture, resulting in delivery entropy and cohesion chaos.

2) Not taking Automation Seriously

We didn't have a strategy for automated deployment and ops monitoring of services (runtime QoS metrics). It obviously increased operational expenses and manual errors during deployment. Several times production deployments caused outages due to configuration errors. The services were always deployed in HA mode and so the number of containers was 3x to the total number of services. The operations team was unable to handle the configuration for each service manually. After a certain time, ops started to complain that the architecture was inefficient as they were not able to handle the increased number of containers. 

What is the vaccine for this? The recipe has multiple ingredients.  Continuous deployment, if you have not done so, is a must investment and a cultural change that every enterprise should aim for. At least, if you don't have a way to automatically test and deploy – do not do micro-services. Microservices are aiming to drive agility, with the speed we need to change; quality assurance involves each service having automated unit, functional, security and performance testing. Service Virtualization is another powerful concept when we develop services that are integrated with services outside of our control.

3) Layered Services Architecture

One common mistake people made with SOA were misunderstanding how to achieve the re-usability of services. Teams mostly focused on technical cohesion rather than functional regarding reusability. For example, several services functioned as a data access layer (ORM) to expose tables as services; they thought it would be highly reusable. This created an artificial physical layer managed by a horizontal team, which caused delivery dependency. Any service created should be highly autonomous – meaning independent of each other.

Creating multiple, technical, physical layers of services would only cause delivery complexity and runtime inefficiency. We ended up in having wrapper services, orchestration services, business services and data services. These service models served technical concerns. Individual teams formed to manage these layers and ended up having business logic sprawl, no single owner for a capability, lost the efficiency and there was always a blaming game.

Logical separation of layers within a service is fine, however, there should not be any out of process calls. Try to look at a service as one atomic business entity, which must implement everything to achieve the desired business functionality. The self-contained services are more autonomous and scalable than the layered services. It's perfect to re-write some common code across multiple services, that's fine and it's a good trade-off to keep the autonomy level. The bottom line is that don't have services separated by technical concerns instead they must be separated based on the business capability. The concept of containerization is thriving because of this character.

4) Relying on Consumer Sign-off

We had a service consumed by multiple applications from three different channels i.e. agent, the web, and voice. Agent channel was our primary, so the services had to wait to get their sign-off before they can go into production. It delayed the voice and web application production releases. What bound those three channels together so tightly? 

The service was not a loosely coupled when it came to channel specific functionality. Give independence to your services. Every service that you deliver must have a test suite, which should cover all the service functionality, security, performance, error handling, and consumption driven testing for every current and future consumer. This must be included as part of the build pipeline for automated regression testing.

5) Manual Configurations Management:

As we started to do a larger number of services (and the inevitable sprawl due to lack of service lifecycle governance manifested itself) managing the configurations for each service went out of control. Most of our production deployment was not smooth because of configuration failures like the bad password, wrong URL, incorrect values. It became harder and harder to manage these manually. If we had only used application configuration management tools as part of a PaaS or CD…but we didn’t.

(Click on the image to enlarge it)

6) Versioning Avoidance:

Naively, we thought it would be only need one version of the service. Then we started to add major, minor versions to accommodate multiple consumers and frequent changes. Eventually, every release had to be a major release since the services were relying on consumer sign off. As a result, the number of containers increased very fast and it became a huge pain to manage them. Lack of runtime governance was another aspect that contributed to this issue. Some enterprises foolishly try to avoid versioning. Services need to be architected assuming that change is inevitable.  Have a strategy to manage the forward compatible service changes and allow your consumers to upgrade gracefully. Otherwise, it will lead to having consumers tightly bound to a service version and break when there is a change.

The complexity grows as the number of services grows which the microservices world expects. Have a versioning strategy that can allow the consumers a graceful migration and assure providers can transparently deploy changes without affecting anyone. Limit the number of side-by-side major versions in the production and govern them.

(Click on the image to enlarge it)

7) Building a gateway in every service

We didn't have an API gateway and we didn't have runtime governance (we didn’t know who was consuming what and at what rate at what time). We started to implement end-user authentication, throttle, orchestrate, transform, and route etc. in each service. It added complexity to each service and we lost consistency of implementation from service to service, so we had no idea who implemented what and where. On top of it, some of our services were built to satisfy one consumer non-functional requirements, but not another’s. If we had a gateway, applying some data filtering and enrichment patterns could have done it. If only.

Invest in API Management solutions to centralize, manage and monitor some of the non-functional concerns and which would also eliminate the burden of consumer's managing several microservices configurations. API gateway can be used orchestrate the cross-functional microservices that may reduce round trips for web applications.

Conclusion

The goal of microservices is to solve the three most common problems i.e. improve customer experience, highly agile to the new requirements and drive down cost by delivering the business functions as fine grained services. This is not a silver bullet and requires a disciplined platform, where delivering the services in an agile fashion with high quality is possible. Learn from other’s mistakes (mine) and avoid the above listed patterns in the architecture and delivery process. This is the first baby step before we can even talk about containerization, cloud adoption etc. I hope this article gives you something to think about for your enterprise and work towards resolving these anti-patterns before you weave them into your architectures. Most of the items will drive cultural changes within the organization and cannot be done just by yourself, ensure partnership with your executive and senior leaders.

About the Author

Vijay Alagarasan works as a Principal Architect in the Enterprise Architecture and Strategy of Asurion, a leading global technology support and protection company. He focuses on Services, APIs and Integrations (A2A, B2B and B2C) for the enterprise. He defines and manages the principles, patterns, technology choices and standards across these domains. He provides reference implementations by developing either a full solution or prototype so that it would allow the delivery organization to pick up the new concepts and technology faster than usual. He also evaluates and brings in the new technology products to deliver enterprise strategic goals faster and be ahead in the market. Started as a java/j2ee application developer, then as an EAI Developer and then sooner became SOA Implementer/architect. Largely worked in TIBCO products, Java, Web logic, and JMS, a bunch other technologies (Linked In Profile). He had filled in various capacities like as software developer, team lead, delivery manager, integration architect, solution architect and domain architect. In recent years, He is working with Web APIs (API management tools like Layer 7, Apigee, AWS API Gateway, Azure API Management), Cloud technologies (AWS, Azure), Containers, Service virtualization and Graph Databases.

Are you an architect or aspiring to be?

Stay on top of trends in the industry with one monthly newsletter, written by architects for architects.

Rate this Article

Adoption
Style

Hello stranger!

You need to Register an InfoQ account or or login to post comments. But there's so much more behind being registered.

Get the most out of the InfoQ experience.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Community comments

  • print article link

    by anjan bacchu,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    it's been a while that I printed an articel from infoq. However used to do that regularly. What happened to the print link/icon ? infoq was one of the few sites who cared to put out a print link that worked really well. Why did you remove ?

  • Smart endpoints and dump pipes

    by slim ouertani,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Thanks for sharing,

    As you said the boundary between SOA and microservices is very tight :
    servicetechmag.com/I91/0715-1

    My point is about the API gateway pattern which refers to SOA and others ESB and Labelled SOA products and against 'smart endpoints and dump pipes rules' ?

  • Re: print article link

    by Charles Humble,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    If you hit the little orange "+" symbol next to "share" print is one of the options.

    That said it looks like the print stylesheet could use a little work - you may want to print preview first and just print the pages you need.

    Charles
    Head of editorial, InfoQ

  • Several points are debatable

    by Eivind Eklund,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    I've lived with very large deployments of microservices for a fair number of years now. My experience is that at least a couple of these points are contextual, and that your "anti pattern" is actually a very viable pattern in some circumstances.

    "Versioning Avoidance": I've had good experiences with single version per service except during gradual push of a new version, which is a regular occurrence (daily/weekly/similar). Deal with integration problems with extensive whitebox monitoring of each service, running a canary of each new version, make sure that the new version is able to support the old API (for one revision), and force regular updates for all services (so API changes can be done). All other services will talk to the same version of the service. Managing multiple versions of the same backend sounds like a nightmare to me.

    "Layered Services": I may be misunderstanding what you're trying to say? Having multiple layers of microservices looks very reasonable to me. In a "proper" environment, *every* is microservices; storage is just one type of microservice.


    "Building a gateway in every service": You don't want to build one, but using a shared library or similar for having one can be viable, rather than actually centralizing the gateway. It is easier to scale if you don't have a central chokepoint.

    Apart from that, good points.

  • Great Article!!

    by Partha Dutta,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Thanks to Vijay for capturing the nuances of Microservices in such clear terms. I sincerely feel that the article is very practical as he has tried to extract the things on the ground and put it into this article. There are too many articles on the Internet where the authors just talk about jargons and very high level view of Microservices world which clearly show the disconnect with reality. Vijay captured the smaller details in a beautiful way : Service Governance, Continuous Deployment, Versioning - Things which are dictated by SOA are very much valid in the Microservices world but most often not talked about .

  • DDD and Microservices.

    by Rajesh Waran,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Good article, I think the boundary is critical part to manage and DDD (Domain Driven Design) might help in that space. A well defined bounded context could be key to success.
    We have adopted DDD and Micro service for our enterprise.
    Its still long way to go.

  • Re: Great Article!!

    by Niranjan Nanda,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    The article is very nice indeed. However, I find the other one better than this:

    www.infoq.com/presentations/cloud-anti-patterns...
    This video talks about the deployment, versioning, even how services should provide an accompanying client to make integrations easier for consumers.

  • Microservices != SOA in any way...

    by Mark Richards,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Good article, but my opinion is you missed the mark about SOA.

    "Microservices architecture is not fundamentally different from SOA".

    Pattern-wise they are very much different. Please see the book I wrote from O'Reilly (download for free) titled "Microservices vs. Service-Oriented Architecture" to see the differences: www.oreilly.com/programming/free/microservices-...

  • Re: Several points are debatable

    by Naresh Sikha,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Echoing the feedback on the centralized API gateway. It is another layer just like data access layer. Embedding gateway functions in the service, and then using emerging concepts, like control plane, to get to cross cutting visibility, achieves both needs of decentralization and manageability.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

BT