Distributed Resiliency Patterns 1

Zain Khan
The Enterprise Architect
1 min readMar 7, 2019

You may want to brush up on the post about N-Tier Architecture if you don’t know what that is.

Today we’re going to look at a very basic resiliency pattern. In fact three of them. One for each tier of our classic three-tier architecture.

Presentation/Web Tier

  • Single web server in production data centre.

Business Logic/App Tier

  • Single application server in production data centre.

Data/Database Tier

  • Single database server in production data centre.

This pattern, in fact, has no resilience. If any of the server nodes fails the entire system is useless until that node is repaired or replaced.

--

--