Notes - MIECT
Computação Distribuída
Notes - MIECT
Computação Distribuída
  • Computação Distribuída
  • Introduction / Architecture
    • Distributed Systems
    • Architecture
    • Middleware Organizations
    • Processes
    • Threads
    • Virtualization
    • Clients
    • Servers
    • Migration
  • Communications
    • OSI Model
    • Middleware Layer
    • Types of Communication
    • Remote Call Procedure (RPC)
    • Sockets
    • Application-level Multicasting
  • Naming
    • Names
    • Addresses
    • Identifiers
    • Naming Systems
      • Flat Naming
      • Structured Naming
    • Internet Domain Name System (DNS)
    • Attribute-based naming - LDAP
  • Coordination
    • Clocks
      • Synchronizing without UTC
    • Reference Broadcast Synchronization – RBS
    • Happened-Before Relation
      • Logical Clocks
      • Vector Clocks
    • Mutual Exclusion Algorithms
    • Election Algorithms
    • Distributed Events Correspondance
  • Consistency & Replication
    • Replication
    • Performance and Scalability
    • Client-centric models
    • Replicates
    • Unicasting vs. Multicasting
    • Continuous Consistency
    • Protocols
  • Flaw Tolerance
    • Dependability
    • Terminology
    • Confidence vs. Security
    • Halting failures
    • Redundancy to mask failures
    • Consensus
      • Realistic
      • Consensus in arbitrary failures
      • Achieving failure tolerance
      • Distributed consensus
    • Failure Detection
    • Reliable RPCs
    • Distributed commit protocols
  • Python asyncio & Friends
    • Async
    • Sync vs. Async
    • Tools
  • Flask
    • Introduction
    • Python Requests
  • Containers
    • VM's vs Containers
    • OS Support
    • Building a container
    • Tools
    • Portability
    • Docker
      • Container
  • Map Reduce
    • Map Recude
    • Hadoop
    • Software Architecture
    • Task Scheduling
    • Comparison With Traditional Models
  • Cloud Computing
    • Cloud Computing
    • IaaS – Infrastructure as a Service
    • PaaS – Platform as a Service
    • SaaS – Software as a Service
    • Business Models
Powered by GitBook
On this page
  • Hardware
  • Cluster Computing
  • Grid Computing
  • Cloud Computing
  • Layered Architecture
  • Protocol, service, and interface
  • Application layers
  • Object-Based and Service Oriented Architectures
  • Resources Oriented Architectures
  • Publish-Subscribe Architecture
  1. Introduction / Architecture

Architecture

PreviousDistributed SystemsNextMiddleware Organizations

Last updated 2 years ago

Hardware

Cluster Computing

Grid Computing

Cloud Computing

Layered Architecture

Protocol, service, and interface

Application layers

Traditional three layers vision.

  • Data.

  • Interface

  • Processing

MVC - Model, View, Controller

Example: Search Engine

Object-Based and Service Oriented Architectures

  • Data encapsulation.

  • Object implementation details are hidden by the interface.

  • When a client binds itself to a distributed object, an object's interface implementation is loaded - proxy.

  • A complementary entity called a skeleton appears on the server side.

Resources Oriented Architectures

Operation
Description

PUT

Creates a resource

GET

Access a resource's state

DELETE

Destroys a resource

POST

Modifies a resource, it's state is replaced

Resources are identified by a unique schema of identifiers.

All the services offer the same interface.

All the messages are self-contained.

After an operation execution, the component forgets everything about the called resource.

Publish-Subscribe Architecture

Multiprocessor and multicore
Multicomputer