Which microservices pattern isolates elements into pools so that if one component fails, the remaining components continue operating without system-wide crash?
ACircuit Breaker Pattern
BBulkhead Pattern
CStrangler Fig Pattern
DSidecar Pattern
Explanation
Named after ship compartments, the Bulkhead pattern partitions service resources (e.g., thread pools) to isolate failures.

No Comments