The strangler-fig pattern migruje przyrostowo: owijasz monolit warstwą routingu, wyodrębniasz jedną możliwość na raz do usługi i przekierowujesz do niej ruch — aż monolit zostanie "uduszony". Nie ma big-bang rewrite.
Jak to działa
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
