What is Strangler Pattern?

Strangler pattern is a way of migrating a legacy system incrementally by replacing existing functionalities with new applications and services in a phased approach. After the replacement of the entire functionality the new application system eventually replaces all the legacy system’s features. The name strangler pattern was inspired from strangler fig trees.

Using Strangler pattern for microservices modernization

A big bang approach or completely replacing a complex monolith by microservices can be a huge risk. So, adopting the strangler pattern to gradually migrate into a new system reduces the risk of a complete failure. However, running two separate versions of an application means that clients must know where each feature is located. Every time a feature or service is migrated, clients need to be updated to point to the new location. Strangler pattern overcomes this challenge of accessing multiple applications by creating a routing facade.

The routing facade intercepts requests going to the backend legacy system and routes these oncoming requests either to the legacy application or the new application. The clients interface continues the old way unaware that any technology migration has taken place or is in progress.

Why haven’t you done this already?

The challenge in implementing this pattern is to be able to evaluate the functionalities and dependencies to identify components for separation and figure out the right migration strategy. In a complex legacy system, especially when the original developers of the core functionality are no longer there, it’s hard to be certain how to adapt the software architecture correctly. You have to be able to make tradeoffs between complexity of target architecture and the desired level of functional separation.To split your legacy application into fine-grained functions that are lightweight, independently deployable, scalable, and portable, you need to:

  • Analyze the current legacy application to split your application based on functional transactions by accounting for code complexity. The complexity factor is crucial for the transformation decision using the strangler pattern.
  • Visualize the legacy components and new digital application in a single view to scope both the code bases
  • Identify the strangler facade and find whether there are any single points of failure proactively
  • Perform analysis for proactive security threat determinations in your new architecture.

So, what is the strangler path to microservices modernization?

  • Monolithic legacy application architecture discovery and functional understanding, isolation of components & separation.
  • Start developing your modernized microservices application as per functional isolated components as service.
  • Include a strangler façade which can route the functional transactions to legacy or modernized microservices from access channels.
  • Early stage viewpoint, legacy will be bigger in size handle more functional transaction and modernized microservices application will handle only the migrated functionality.
  • Functional Microservices transformation will happen in incremental fashion for identified system functions of legacy over a time period to microservices and modernized application will grow bigger in size and handle more functions than monolithic legacy application.
  • Once all the monolithic functions are transformed to new microservice application, completion stage is achieved as all the functions are on microservices platform and monolithic application can now retire.

Here’s a pictorial view of strangler pattern implementation, showing the architecture transformation from legacy to microservices:

Early Stage
Late Stage
Modernization Complete

Strangler Pattern Completion Stage

Once the migration is complete, the strangler interface facade will either go away or evolve into an adaptor for legacy clients. Strangler pattern’s clear benefit is to minimize risk in migration and to plan the development effort over time. As all features are migrated to the new system, the old legacy system is eventually “strangled” and ready to sunset/retire.

What to consider before using Strangler Pattern for microservices modernization

  • Size of the application: This pattern will not be suitable for small systems where the complexity and size are low.
  • System Compatibility: This pattern cannot be used in systems where requests to the back-end system cannot be intercepted and routed
  • Strangler Facade (Router) issues: Ensure the facade doesn’t become a single point of failure or a performance bottleneck.