Distributed Systems. REK s adaptation of Prof. Claypool s adaptation of Tanenbaum s Distributed Systems Chapter 1



Similar documents
2.1 What are distributed systems? What are systems? Different kind of systems How to distribute systems? 2.2 Communication concepts

Distributed Systems LEEC (2005/06 2º Sem.)

Distributed Operating Systems

Virtual machine interface. Operating system. Physical machine interface

Software Concepts. Uniprocessor Operating Systems. System software structures. CIS 505: Software Systems Architectures of Distributed Systems

Principles and characteristics of distributed systems and environments

How To Understand The Concept Of A Distributed System

Basics. Topics to be covered. Definition of a Distributed System. Definition of a Distributed System

CS550. Distributed Operating Systems (Advanced Operating Systems) Instructor: Xian-He Sun

Distributed System: Definition

1.4 SOFTWARE CONCEPTS

Chapter 1: Distributed Systems: What is a distributed system? Fall 2008 Jussi Kangasharju

How To Make A Distributed System Transparent

Client/Server Computing Distributed Processing, Client/Server, and Clusters

Tier Architectures. Kathleen Durant CS 3200

CS 5523 Operating Systems: Intro to Distributed Systems

Network Attached Storage. Jinfeng Yang Oct/19/2015

Distributed Systems. Examples. Advantages and disadvantages. CIS 505: Software Systems. Introduction to Distributed Systems

SOFT 437. Software Performance Analysis. Ch 5:Web Applications and Other Distributed Systems

CHAPTER 1: OPERATING SYSTEM FUNDAMENTALS

Centralized Systems. A Centralized Computer System. Chapter 18: Database System Architectures

CORBA and object oriented middleware. Introduction

Chapter 18: Database System Architectures. Centralized Systems

A Comparison of Distributed Systems: ChorusOS and Amoeba

Distribution transparency. Degree of transparency. Openness of distributed systems

Symmetric Multiprocessing

Introduction to CORBA. 1. Introduction 2. Distributed Systems: Notions 3. Middleware 4. CORBA Architecture

Chapter 3. Database Environment - Objectives. Multi-user DBMS Architectures. Teleprocessing. File-Server

Chapter 11 Distributed File Systems. Distributed File Systems

OPERATING SYSTEMS Internais and Design Principles

Client/Server and Distributed Computing

Tools Page 1 of 13 ON PROGRAM TRANSLATION. A priori, we have two translation mechanisms available:

Client-Server Applications

CHAPTER 2 MODELLING FOR DISTRIBUTED NETWORK SYSTEMS: THE CLIENT- SERVER MODEL

Microkernels, virtualization, exokernels. Tutorial 1 CSC469

Introduction to Cloud Computing

Lesson Objectives. To provide a grand tour of the major operating systems components To provide coverage of basic computer system organization

Chapter 7: Distributed Systems: Warehouse-Scale Computing. Fall 2011 Jussi Kangasharju

COMP5426 Parallel and Distributed Computing. Distributed Systems: Client/Server and Clusters

System types. Distributed systems

Concepts of Database Management Seventh Edition. Chapter 9 Database Management Approaches

Chapter 2: Enterprise Applications from a Middleware Perspective

Integrated Application and Data Protection. NEC ExpressCluster White Paper

Chapter Outline. Chapter 2 Distributed Information Systems Architecture. Middleware for Heterogeneous and Distributed Information Systems

Distributed Computing

Lecture 23: Multiprocessors

Lecture 2 Parallel Programming Platforms

How To Write A Network Operating System For A Network (Networking) System (Netware)

Distributed Systems Lecture 1 1

Cellular Computing on a Linux Cluster

DISTRIBUTED AND PARALLELL DATABASE

Web DNS Peer-to-peer systems (file sharing, CDNs, cycle sharing)

Making Multicore Work and Measuring its Benefits. Markus Levy, president EEMBC and Multicore Association

Objectives. Distributed Databases and Client/Server Architecture. Distributed Database. Data Fragmentation

Chapter 6. CORBA-based Architecture. 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications

Middleware and Distributed Systems. Introduction. Dr. Martin v. Löwis

Multiprocessor Cache Coherence

Chapter 1: Introduction. What is an Operating System?

Software-Defined Networks Powered by VellOS

Eloquence Training What s new in Eloquence B.08.00

Principles of Operating Systems CS 446/646

System Models for Distributed and Cloud Computing

Chapter 17: Distributed Systems

Network Architecture and Topology

Operating Systems 4 th Class

Distributed Database Design

Base One's Rich Client Architecture

Chapter 12: Multiprocessor Architectures. Lesson 09: Cache Coherence Problem and Cache synchronization solutions Part 1

Client/server and peer-to-peer models: basic concepts

LinuxWorld Conference & Expo Server Farms and XML Web Services


Agenda. Distributed System Structures. Why Distributed Systems? Motivation

Cluster, Grid, Cloud Concepts

Computer Science 4302 Operating Systems. Student Learning Outcomes

Virtualization Technologies and Blackboard: The Future of Blackboard Software on Multi-Core Technologies

CMSC 611: Advanced Computer Architecture

A distributed system is defined as

Network File System (NFS) Pradipta De

Distributed Systems Architectures

CHAPTER 1 INTRODUCTION

CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level. -ORACLE TIMESTEN 11gR1

BBM467 Data Intensive ApplicaAons

POWER ALL GLOBAL FILE SYSTEM (PGFS)

High Performance Computing. Course Notes HPC Fundamentals

1 Organization of Operating Systems

An Oracle White Paper July Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide

Building Reliable, Scalable AR System Solutions. High-Availability. White Paper

Microsoft Office SharePoint Server 2007 Performance on VMware vsphere 4.1

Chapter 2: Remote Procedure Call (RPC)

Install Instructions and Deployment Options

EMC VPLEX FAMILY. Continuous Availability and Data Mobility Within and Across Data Centers

<Insert Picture Here> Oracle In-Memory Database Cache Overview

Distributed System Principles

Design a Scalable Virtual Desktop Infrastructure

Rackspace Cloud Databases and Container-based Virtualization

The proliferation of the raw processing

Transcription:

Distributed Systems REK s adaptation of Prof. Claypool s adaptation of Tanenbaum s Distributed Systems Chapter 1 1

The Rise of Distributed Systems! Computer hardware prices are falling and power increasing.! Network connectivity is increasing.! Everyone is connected with fat pipes.! It is easy to connect hardware together.! Definition: a distributed system is! A collection of independent computers that appears to its users as a single coherent system. Distributed Computing Systems 2

Forms of Transparency in a Distributed System Transparency Access Location Migration Relocation Replication Concurrency Failure Persistence Description Hide differences in data representation and how a resource is accessed Hide where a resource is located Hide that a resource may move to another location Hide that a resource may be moved to another location while in use Hide that a resource may be shared by several competitive users Hide that a resource may be shared by several competitive users Hide the failure and recovery of a resource Hide whether a (software) resource is in memory or on disk Distributed Computing Systems 3

Scalability Problems Concept Centralized services Centralized data Centralized algorithms Example A single server for all users A single on-line telephone book Doing routing based on complete information! As distributed systems grow, centralized solutions are limited. Distributed Computing Systems 4

Hiding Communication Latency This is especially important for interactive applications If possible, system can do asynchronous communication. The system can hide latencies. Distributed Computing Systems 5

Dividing the DNS name space into zones 1.5 Distributed Computing Systems 6

Hardware Concepts Basic organizations and memories in distributed computer systems 1.6 Distributed Computing Systems 7

Hardware Considerations! General Classification:! Multiprocessor a single address space among the processors! Multicomputer each machine has its own private memory.! OS can be developed for either type of environment. Distributed Computing Systems 8

Multiprocessor Organizations! Uniform Memory Access [UMA]! Caching is vital for reasonable performance (e.g., caches on a shared memory multiprocessor).! Want to maintain cache coherency! Write-through through cache :: any changes to cache are written through to memory. Distributed Computing Systems 9

Multiprocessors 1.7 A bus-based multiprocessor. Distributed Computing Systems 10

Multiprocessors A crossbar switch An omega switching network Distributed Computing Systems 11

Multiprocessor Organizations! Non-Uniform Memory Access [NUMA]! A hierarchy where CPUs have their own memory (not the same as a cache).! Access costs to memory is non-uniform. Distributed Computing Systems 12

Replication! Make a copy of information to increase availability and decrease centralized load.! Example: P2P networks (Gnutella +) distribute copies uniformly or in proportion to use.! Example: CDNs (Akamai)! Example: Caching is a replication decision made by client.! Issue: Consistency of replicated information! Example: Web Browser cache Distributed Computing Systems 13

Software Concepts! DOS (Distributed Operating Systems)! NOS (Network Operating Systems)! Middleware System DOS NOS Description Tightly-coupled operating system for multiprocessors and homogeneous multicomputers Loosely-coupled operating system for heterogeneous multicomputers (LAN and WAN) Main Goal Hide and manage hardware resources Offer local services to remote clients Middleware Additional layer atop of NOS implementing general-purpose services Provide distribution transparency Distributed Computing Systems 14

Uniprocessor Operating Systems! Separating applications from operating system code through a microkernel! Can extend to multiple computers Distributed Computing Systems 15

Network Operating System! OSes can be different (Windows or Linux)! Typical services: rlogin, rcp! Fairly primitive way to share files Distributed Computing Systems 16

Network Operating System! Can have one computer provide files transparently for others (NFS)! (try a df on the WPI hosts to see. Similar to a mount network drive in Windows) Distributed Computing Systems 17

Network Operating System! Different clients may mount the servers in different places! Inconsistencies in view make NOS s harder, in general for users than DOS s.! But easier to scale by adding computers Distributed Computing Systems 18

Distributed Operating Systems! But no longer have shared memory! Provide message passing! Can try to provide distributed shared memory! But tough to get acceptable performance Distributed Computing Systems 19

Distributed System as Middleware Distributed Computing Systems 20

Positioning Middleware! Network OS s are not transparent.! Distributed OS s are not independent of computers.! Middleware can help. Distributed Computing Systems 21

Middleware Models! View everything as a file - Plan 9.! Less strict distributed file systems.! Make all procedure calls appear to be local Remote Procedure Calls (RPC).! Distributed objects (oo model).! The Web distributed documents. Distributed Computing Systems 22

Middleware and Openness 1.23! In an open middleware-based distributed system, the protocols used by each middleware layer should be the same, as well as the interfaces they offer to applications.! If different, there will be compatibility issues! If incomplete, then users will build their own or use lowerlayer services (frowned upon) Distributed Computing Systems 23

Comparison between Systems Item Distributed OS Multiproc. Multicomp. Network OS Middleware -based OS Degree of transparency Very High High Low High Same OS on all nodes Yes Yes No No Number of copies of OS 1 N N N Basis for communication Shared memory Messages Files Model specific Resource management Global, central Global, distributed Per node Per node Scalability No Moderately Yes Varies Openness Closed Closed Open Open Distributed Computing Systems 24

Client-Server Model Use TCP/IP for reliable network connection. This implies the client must establish a connection before sending the first request. Distributed Computing Systems 25

Internet Search Engine Distributed Computing Systems 26

Multitiered Architectures! Thin client (a) to Fat client (e)! (d) and (e) popular for NOS environments Distributed Computing Systems 27

Multitiered Architectures: 3 tiers! Server may act as a client! Example would be transaction monitor across multiple databases Distributed Computing Systems 28

Horizontal Distribution! Distribute servers across nodes! E.g., Web server farm for load balancing! Distribute clients in peer-to-peer systems. Distributed Computing Systems 29