The strangler-fig pattern migrează incremental: înfășori monolitul cu un strat de rutare, extragi o capabilitate pe rând într-un serviciu și redirecționezi traficul către el — până când monolitul este "strangulat". Nu există big-bang rewrite.
Cum funcționează
Step 1: route all traffic through a facade/proxy to the monolith
Step 2: extract ONE capability → new service
Step 3: route just that path to the new service
Step 4: repeat; delete that code from the monolith
Client ─▶ [ Proxy ] ─┬─▶ /orders ─▶ NEW Orders service
└─▶ everything else ─▶ Monolith
