Reputation: 4563
in reactive programming Resilience is achieved by replication, containment, isolation and delegation.
two of the famous design patterns are Bulkheads with supervisor and circuit breaks. are these only for reaching isolation and containment?
what are the most famous design patterns for microservices and specially the ones give resiliency?
Upvotes: 1
Views: 580
Reputation: 625
You can implement various resilience patterns to achieve different levels of resilience based on your needs.
Upvotes: 0
Reputation: 603
Other than BulkHead and CBs, few other things that can be implemented:
Redundancy, Failover Systems can be incorporated to achieve resiliency against system failures as well
Upvotes: 0
Reputation: 469
Reactive Programing can not be just resumed in design patterns. There are many considerations about systems architecture, dev ops and so to have in mind when you are designing high performance and availability systems.
Specifically, about resiliency, you should be thinking, for example, in:
Upvotes: 0