Distributed Systems "References"

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 15

flashcard set

Earn XP

Description and Tags

All of the nitty gritty facts and definitions for Distrbuted Systems

16 Terms

1

What are the two definitions for a “Distributed System”?

[1] A collection of autonomous computer elements that appear to their users to function as a single coherent system.

[2] A system in which components located at networked computers communicate only through passing messages.

New cards
2

What is the difference between a “Distributed System” and a “Decentralised System”?

A “Decentralised System” is a networked computer system in which resource are necessarily spread across multiple computers. For example, torrenting uses peer-to-peer networking which is necessarily spread across multiple computers.

A “Distributed System” is a networked computer system in which resources are sufficiently spread across multiple computers. Think for example a content distribution site like Netflix, Netflix only needs to spread its resources on as many servers as is sufficient to serve its userbase within defined tolerances.

New cards
3

What is meant by the term “Transparency” in the context of a distributed system?

Transparency is the phenomenon by which distributed systems attempt to hide the fact that its processes and resources are physically distributed across multiple computers, possibly seperated by large distances.

New cards
4

How is transparency acheived in a distributed system?

Through the middleware

New cards
5

What are the 7 different forms of transparency in a distributed system?

Access Transparency:

Hides differences in data representation and in how an object is accessed

Location Transparency:

Hides where an object is physically and or virtually located

Migration Transparency:

Hides the fact that an object may have been moved to another location

Relocation Transparency:

Hides the fact that an object may actively be relocated to another location while in active use

Replication Transparency:

Hides the fact that an object might be replicated, or that the object being accessed is a replica

Concurrency Transparency:

Hides that an object may be shared by several competitive users (i.e. users that might be trying to access the same object concurrently)

Failure Transparency:

Hides failures and recovery of an object

New cards
6

What is meant by an “Open Distributed System”?

A system that offers components that can easily be used by, or integreted into other systems. An open distributed system itself will often consist of components that orignate from elsewhere.

Open distributed systems should:

  • Conform to well-defined interfaces

  • Easily interoperate

  • Support portability of applications

  • Be Easily extensible

New cards
7

What is meant by the “Scalability” of a distributed system?

A distributed is scalable (in size) if it remains effective after a significant increase in the number of users/resources.

Scalability is said to be poor if the cost of supporting n users is worse than O(n).

New cards
8

What are the 9 fallacies of distributed systems?

  1. The network is reliable

  2. The network is secure

  3. The network is homogeneous

  4. The topology of the network doesn’t change

  5. Latency is zero (can be ignored)

  6. Bandwidth is considered to be infinite

  7. Transport cost is zero

  8. There is only one administrator

  9. ?

New cards
9

What are the three types of distributed systems?

  1. High Performance Distrbuted Computing Systems

  2. Distributed Information Systems

  3. Distributed Systems for Pervasive Computing

New cards
10

What are the 4 main layers of a Cloud Computing Service?

  1. Hardware: Processors, routers, cooling systems etc. (i.e. the baremetal).

  2. Infrastructure: Deploys virtualisation techniques such as virtual machines, virtual storage systems etc.

  3. Platform: Provides higher level services such as software development kits and environments.

  4. Application: Actual applications (for example office suits, word processing, etc.)

New cards
11

What is meant by the ACID acronym?

Atomic:

Processes occur as “all or nothing”, either all stages of the process are successfully applied/executed, or non at all.

Consistent:

The process does not change/violate system invarients.

Isolated:

Concurrent processes/transactions do not interfere with each other.

Durable:

Any changes made by processes will persist even if the system encounters a failure.

New cards
12

What are the 4 main architectural styles of distributed systems?

  1. Layered Architecture

  2. Object-Oriented Architecture

  3. Resource-Centred Architecture

  4. Event-Based Architecture (a.k.a Publish-Subscribe Architecture)

New cards
13

What is meant by the “PAD” model?

The PAD model is a layered application architecture most commonly used by client-server applications. It consists of three layers:

Presentation Layer:

Contains everything required to interface with the user (i.e. user interface)

Application Layer:

Contains all of the business logic

Data Layer:

Concerned with the storage (and retreival) of data

New cards
14

Explain the difference between a “Software Architecture” and a “System Architecture”

Software Architecture:

Describes how the various software components are to be organised (in relation to each other).

System Architecture:

The specifics of how a software architecture is deployed onto hardware is known as the “System Architecture”

New cards
15

Define what a “Web Service” is

  • A web service is a piece of business logic that is located on the internet or on an intranet, which is accessed using a standard data representation format such as XML or JSON, through standard protocols such as HTTP or SMTP.

  • A web service implements Service-Oriented Architecture

New cards
16
New cards
robot