logo

Lucas Katayama/Strangler Fig Pattern

Created Thu, 14 Sep 2023 01:33:59 -0300 Modified Thu, 14 Sep 2023 01:33:59 -0300

The Strangler Fig Pattern

The strangler fig pattern helps migrate a monolithic application to a microservices architecture incrementally, by adding a facade between the old and new service.

The image below explains the process:

img.png

By adding a facade between the API and the service, you can migrate the requests redirecting them to the new service.

After all migration, you can then remove the monolith and the facade, completing the migration.

References