Distributed System Pattern Introduction

Distributed systems follow certain patterns that we can follow to achieve specific purposes. This lesson will introduce those patterns and some related concepts that drive or inform them.

By understanding these patterns and what differentiates them, we can start to classify distributed systems and to understand the trade-offs between different patterns. While some problems lend themselves to specific architectures (e.g. parallel processing almost always makes use of pipelined or tree-shaped process interconnection), other choices are not as clear cut.

This lesson begins by discussing coupling, the primary driver of pain in building and operating distributed system and thus one of the key properties to control and plan for in architecting them.

Next, we discuss different choices we can make when designing a distributed system that impact the three primary parts of any computation: processing, communication, and data storage.

Distributed may not mean what you think it means. We can classify distributed systems along three different axes related to the design choices we make.

Finally, we’ll look at some specific interconnection patterns and discuss some of their properties.

Lesson Objectives

After completing this lesson, you should be able to

  1. Describe different types of coupling and classify simple coupling scenarios according to type.
  2. Define heterarchy and contrast it with hierarchy.
  3. Distinguish decentralized from distributed and both of those from heterarchical.
  4. Describe common topologies of distributed architectures and their uses.

Required Reading/Viewing

Additional Resources