How To Understand The Concept Of A Distributed System
|
|
|
- Dorthy Stone
- 5 years ago
- Views:
Transcription
1 Distributed Operating Systems Introduction Ewa Niewiadomska-Szynkiewicz and Adam Kozakiewicz Institute of Control and Computation Engineering Warsaw University of Technology E&IT Faculty, WUT DOS / Introduction p. 1
2 Lecture (1) Introduction: Definition of a Distributed System (DS) Goals and Architecture of Distributed System Hardware Concepts Software Concepts Operating Systems Modern Architectures E&IT Faculty, WUT DOS / Introduction p. 2
3 Distributed System Definition Distributed System (DS) Collection of independent computers that appears to its users as a single coherent system. Essential aspects: hardware - the machines are autonomous software - the user think they are dealing with the single system The important characteristics: the differences between the various computers and the ways in which they communicate are hidden from users, users and applications can interact with DS in a consistent and uniform way, regardless of where and when interaction takes place. Examples: network of workstations in a university, workflow information system that supports the automatic processing of orders, World Wide Web, etc. E&IT Faculty, WUT DOS / Introduction p. 3
4 Distributed System Layered Architecture To support heterogenous computers and networks while offering a single system view, DS are often organized by means of a layer of software that is logically placed between higher-level (users and applications) and lower level (local OS). Machine A Machine B Machine C Distributed applications Middleware service Local OS Local OS Local OS Network A distributed system is organized as middleware. Note that the middleware layer extends over multiple machines. E&IT Faculty, WUT DOS / Introduction p. 4
5 Distributed System Goals A distributed system should easily connect users to resources (hardware and software), hide the fact that resources are distributed across a network, be open and scalable. The goals that should be met building DS worth and effort: connecting users and resources, concurrency, transparency, openness, scalability, fault tolerance. E&IT Faculty, WUT DOS / Introduction p. 5
6 Resource sharing Allowing multiple users and applications to share resources (local and remote): hardware: CPU, memories, peripheral devices, the network,... software: data bases, data files, programs,... Resource manager: application managing the set of resources of a given type. Problems: Security is very important. In current practice, systems provide little protection against intrusion on communication. E&IT Faculty, WUT DOS / Introduction p. 6
7 Concurrency Ability to processing multiple tasks at the same time Each user does not notice that the other is making use of the same resource. Concurrent access to the shared resource leaves it in a consistent state (consistency can be achieved through locking mechanisms). E&IT Faculty, WUT DOS / Introduction p. 7
8 Transparency in a Distributed System An important goal of DS is to hide the fact that its processes and resources are physically distributed across multiple computers. Transparent system A distributed system that is able to present itself to users and applications as if it were only a single computer system. E&IT Faculty, WUT DOS / Introduction p. 8
9 Different forms of Transparency in DS Access: differences in data representation, naming conventions, files manipulation should be hidden from users and applications. Location: naming plays an important role. Replication: resources replicated to increase availability or improve performance. Failure: the main difficulty lies in inability to distinguish between a dead resource and a painfully slow resource. E&IT Faculty, WUT DOS / Introduction p. 9
10 Degree of Transparency Some attempts to blindly hide all distribution aspects is not always a good idea. A trade-off between a high degree of transparency and the performance. The goal not to be achieved: parallelism transparency. Parallelism transparency Transparency level with which a distributed system is supposed to appear to the users as a traditional uniprocessor timesharing system. E&IT Faculty, WUT DOS / Introduction p. 10
11 Openness Openness An open distributed system is a system that offers services according to standard rules that describe the syntax and semantics of those services. Completeness and neutrality of specifications as important factors for interoperability and portability of distributed solutions. completeness - all necessary to make an implementation as it has been specified, neutrality - specification do not prescribe what an implementation should look like. Interoperability The extent by which two implementations of systems from different manufactures can cooperate. Portability To what extent an application developed for A can be executed without modification on some B which implements the same interfaces as A. E&IT Faculty, WUT DOS / Introduction p. 11
12 Scalability Scalability of a system can be measured along at least three dimensions: scalable with respect to its size (more users and resources can be easily added to the system), geographically scalable systems (users and resources may lie apart), system administratively scalable (it can still be easy to manage even if it spans many independent administrative organizations). Examples of scalability limitations E&IT Faculty, WUT DOS / Introduction p. 12
13 Scaling Techniques (1) Scalability problems: problems caused by limited capacity of servers and network. Techniques for scaling: asynchronous communication (to hide communication latencies), distribution (splitting into smaller parts and spreading), replication (to increase availability and to balance the load), caching (as a special form of replication). Decentralized Algorithms 1. No machine has complete information about the system state. 2. Machines make decisions based only on local information. 3. Failure of one machine does not ruin the algorithm. 4. There is no implicit assumption that a global clock exists. E&IT Faculty, WUT DOS / Introduction p. 13
14 Scaling Techniques (2) Client Server FIRST NAME LAST NAME MAARTEN VAN STEEN N E T R A A M (a) Check form Process form Client Server FIRST NAME LAST NAME MAARTEN VAN STEEN [email protected] MAARTEN VAN STEEN [email protected] Check form (b) Process form A difference between letting: a a server b a client check forms as they are being filled. E&IT Faculty, WUT DOS / Introduction p. 14
15 Scaling Techniques (3) Generic Countries int com edu gov mil org net jp us nl Z1 sun yale acm ieee ac co oce vu Z2 eng cs eng jack jill keio nec cs Z3 ai linda cs csl flits fluit robot pc24 An example of dividing the DNS name space into zones. E&IT Faculty, WUT DOS / Introduction p. 15
16 Fault Tolerance A system can provide its service even in the presence of faults (a user does not notice that a resource fails to work properly and that the system subsequently recovers from that failure) Solutions for building the fault-tolerant systems: physical redundancy (hardware and software) - extra equipment or processes are added to make the system as a whole to tolerate the loss or malfunctioning of some components, reliable group communication, applications that recover the data and remove the faults. E&IT Faculty, WUT DOS / Introduction p. 16
17 Hardware Concepts Shared memory Private memory M M M M M M P P P P P P P M P Bus-based M M M M M M M P P P P Switch-based P P P P P Processor M Memory Different basic organizations and memories in distributed computer systems. Multiprocessors - systems built of a collection of independent computers that have shared memory. Multicomputers - systems built of a collection of independent computers that have their local memory (not shared). E&IT Faculty, WUT DOS / Introduction p. 17
18 Interconnection Network Architectures We distinguish two categories based on the architecture of the interconnection network: bus There is a single network, bus, cable or other medium that connects all the machines (e.g. cable television). switch Switched systems do not have a single backbone. There are individual wires from machine to machine with many different wiring patterns in use. messages move along the wires, with an explicit switching decision made at each step to route the message along one of the outgoing wires (e.g. worldwide public telephone system). E&IT Faculty, WUT DOS / Introduction p. 18
19 Multiprocessors (1) CPU CPU CPU Memory Cache Cache Cache Bus A bus-based multiprocessor. Problem: a few CPUs - bus is overloaded and performance drops drastically. The solution: add a high-speed cache memory between the CPU and the bus (the cache holds the most recently accessed words). Problem: incoherent memory. E&IT Faculty, WUT DOS / Introduction p. 19
20 Multiprocessors (2) Memories M M M M CPUs Memories P P M P P M CPUs P P M P P M Crosspoint switch 2x2 switch (a) (a) a crossbar switch (b) an omega switching network (2 k inputs and a like outputs; log 2 N stages, each having N/2 exchange elements at each stage) (b) NUMA - NonUniform Memory Access hierarchical systems (each CPU fast access to the local memory and slower to the memories of other CPUs). E&IT Faculty, WUT DOS / Introduction p. 20
21 Homogeneous Multicomputer Systems (1) Homogeneous Multicomputer Systems (System Area Networks) homogenous machines connected through a single, often high-performance interconnection network that uses the same technology everywhere, all processors are the same and each CPU has a direct connection to its local memory, architecture of the interconnection network: switch or bus, connection topologies: meshes, grids, hipercubes. E&IT Faculty, WUT DOS / Introduction p. 21
22 Homogeneous Multicomputer Systems (2) Connection topologies: (a) (b) a. grid b. hypercube Examples: Massively Parallel Processors (MPPs), Clusters of Workstations E&IT Faculty, WUT DOS / Introduction p. 22
23 Heterogeneous Multicomputer Systems multicomputer system may contain a variety of different, independent computers, the computers in turn are connected through different networks. Examples: collection of different local-area computer networks interconnected through an FDD or ATM-switched backbone, grid systems. E&IT Faculty, WUT DOS / Introduction p. 23
24 Multiprocessors and Multicomputers - comparison Multiprocessors: bus systems - problems with congestion and scalability (single network) switched systems - scalable but complex, slow and expensive solution. simple software: shared memory access, synchronization mechanisms provided as software applications. Multicomputers: easy to build scalable solution complex software: message based communication, problems with buffering, synchronization, lost packets, etc. E&IT Faculty, WUT DOS / Introduction p. 24
25 Software Concepts DOS distributed operating system. NOS network operating system. E&IT Faculty, WUT DOS / Introduction p. 25
26 Uniprocessor Operating Systems No direct data exchange between modules OS interface User application Memory module Process module File module User mode System call Microkernel Hardware Kernel mode E&IT Faculty, WUT DOS / Introduction p. 26
27 Multicomputer Operating Systems (1) Machine A Machine B Machine C Distributed applications Distributed operating system services Kernel Kernel Kernel General structure of a multicomputer operating system. Network E&IT Faculty, WUT DOS / Introduction p. 27
28 Multicomputer Operating Systems (2) Sender S1 Possible synchronization point S4 Receiver Sender buffer S2 S3 Receiver buffer Network Alternatives for blocking and buffering in message passing. S1: sender blocked when the buffer is full (buffer at sender s side) S2, S3, S4: there are no sender buffer: S2: the message has been sent, S3: the message has arrived to receiver S4: the message has been delivered to receiver E&IT Faculty, WUT DOS / Introduction p. 28
29 Multicomputer Operating Systems (3) Relation between blocking, buffering, and reliable communications. When there is a buffer at the sender s side the OS need not guarantee reliable communication. E&IT Faculty, WUT DOS / Introduction p. 29
30 Distributed Shared Memory (1) Shared global address space Memory CPU 1 CPU 2 CPU 3 CPU 4 (a) CPU 1 CPU 2 CPU 3 CPU 4 (b) CPU 1 CPU 2 CPU 3 CPU 4 (c) Pages of address space distributed among four machines, Situation after CPU 1 references page 10, Situation if page 10 is read only and replication is used. E&IT Faculty, WUT DOS / Introduction p. 30
31 Network Operating Systems Machine A Machine B Machine C Distributed applications Network OS services Network OS services Network OS services Kernel Kernel Kernel Network General structure of a network operating system. E&IT Faculty, WUT DOS / Introduction p. 31
32 NOS services Remote operation (e.g. rlogin in UNIX) Files copy (e.g. rcp in UNIX) Network File System (file server and client) E&IT Faculty, WUT DOS / Introduction p. 32
33 Positioning Middleware Machine A Machine B Machine C Distributed applications Middleware services Network OS services Network OS services Network OS services Kernel Kernel Kernel Network General structure of a distributed system as middleware. Middleware examples: RPC (Remote Procedure Call), CORBA (Common Object Request Broker Architecture), DCOM (Distributed Component Object Model) RMI (Remote Method Invocation). E&IT Faculty, WUT DOS / Introduction p. 33
34 Middleware and Openness Application Same programming interface Application Middleware Network OS Common protocol Middleware Network OS 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. E&IT Faculty, WUT DOS / Introduction p. 34
35 Comparison of Operating Systems Types A comparison between multiprocessor OS, multicomputer OS, network OS, and middleware based distributed systems. E&IT Faculty, WUT DOS / Introduction p. 35
36 Clients and servers Client Wait for result Request Reply Server Provide service Time General interaction between a client and a server. E&IT Faculty, WUT DOS / Introduction p. 36
37 Application Layering The user-interface level contains all that is necessary to directly interface with the user, The processing level contains the application, The data level contains the actual data. E&IT Faculty, WUT DOS / Introduction p. 37
38 Internet search engine (organization) User interface User-interface level Keyword expression Query generator Database queries HTML page containing list HTML generator Ranking component Ranked list of page titles Processing level Database with Web pages Web page titles with meta-information Data level The user-interface level - documents in a search engine (typically implemented at client s side), The processing level - question processing by a search engine (typically implemented at server s side), The data level index WWW pages in data base (typically implemented at server s side). E&IT Faculty, WUT DOS / Introduction p. 38
39 Multitiered Architectures (1) Client machine User interface User interface User interface Application User interface Application User interface Application Database User interface Application Application Application Database Database Database Database Database Server machine (a) (b) (c) (d) (e) Alternative client-server organizations. a. terminal-depend part of the user interface on the client machine, b. the entire user-interface software on the client side, c. part of the application moved to the client machine, d. most of the application is running on the client machine, c. part of the data are collected on the client s local disc. E&IT Faculty, WUT DOS / Introduction p. 39
40 Multitiered Architectures (2) User interface (presentation) Wait for result Application server Request operation Wait for data Return result Request data Return data Database server Time An example of a server acting as a client. E&IT Faculty, WUT DOS / Introduction p. 40
41 Modern Architectures (1) Vertical distribution Achieved by placing logically different components on different machines (multitiered architecture). Horizontal Distribution Client or server may be physically split up into logically equivalent parts, but each part is operating on its own share of the complete data set, thus balancing the load. E&IT Faculty, WUT DOS / Introduction p. 41
42 Horizontal Distribution Example Front end handling incoming requests Requests handled in round-robin fashion Replicated Web servers each containing the same Web pages Disks Internet Internet An example of horizontal distribution of a Web service. E&IT Faculty, WUT DOS / Introduction p. 42
Principles and characteristics of distributed systems and environments
Principles and characteristics of distributed systems and environments Definition of a distributed system Distributed system is a collection of independent computers that appears to its users as a single
Distributed Systems LEEC (2005/06 2º Sem.)
Distributed Systems LEEC (2005/06 2º Sem.) Introduction João Paulo Carvalho Universidade Técnica de Lisboa / Instituto Superior Técnico Outline Definition of a Distributed System Goals Connecting Users
CS550. Distributed Operating Systems (Advanced Operating Systems) Instructor: Xian-He Sun
CS550 Distributed Operating Systems (Advanced Operating Systems) Instructor: Xian-He Sun Email: [email protected], Phone: (312) 567-5260 Office hours: 2:10pm-3:10pm Tuesday, 3:30pm-4:30pm Thursday at SB229C,
Distributed Systems. REK s adaptation of Prof. Claypool s adaptation of Tanenbaum s Distributed Systems Chapter 1
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.!
Distributed Operating Systems
Distributed Operating Systems Prashant Shenoy UMass Computer Science http://lass.cs.umass.edu/~shenoy/courses/677 Lecture 1, page 1 Course Syllabus CMPSCI 677: Distributed Operating Systems Instructor:
2.1 What are distributed systems? What are systems? Different kind of systems How to distribute systems? 2.2 Communication concepts
Chapter 2 Introduction to Distributed systems 1 Chapter 2 2.1 What are distributed systems? What are systems? Different kind of systems How to distribute systems? 2.2 Communication concepts Client-Server
Distributed System: Definition
Distributed System: Definition A distributed system is a piece of software that ensures that: A collection of independent computers that appears to its users as a single coherent system Two aspects: (1)
Software Concepts. Uniprocessor Operating Systems. System software structures. CIS 505: Software Systems Architectures of Distributed Systems
CIS 505: Software Systems Architectures of Distributed Systems System DOS Software Concepts Description Tightly-coupled operating system for multiprocessors and homogeneous multicomputers Main Goal Hide
Virtual machine interface. Operating system. Physical machine interface
Software Concepts User applications Operating system Hardware Virtual machine interface Physical machine interface Operating system: Interface between users and hardware Implements a virtual machine that
How To Make A Distributed System Transparent
Operating Systems Interface between the hardware and the rest: editors, compilers, database systems, application programs, your programs, etc. Allows portability, enables easier programming, The manager
Distribution transparency. Degree of transparency. Openness of distributed systems
Distributed Systems Principles and Paradigms Maarten van Steen VU Amsterdam, Dept. Computer Science [email protected] Chapter 01: Version: August 27, 2012 1 / 28 Distributed System: Definition A distributed
Basics. Topics to be covered. Definition of a Distributed System. Definition of a Distributed System
Topics to be covered Basics Definitions and Examples Goals Models (architectural, fundamental) Hardware and Software Concepts The -Server Model 1 2 Historical Definition of a Distributed System Two developments
Chapter 18: Database System Architectures. Centralized Systems
Chapter 18: Database System Architectures! Centralized Systems! Client--Server Systems! Parallel Systems! Distributed Systems! Network Types 18.1 Centralized Systems! Run on a single computer system and
Chapter 1: Distributed Systems: What is a distributed system? Fall 2008 Jussi Kangasharju
Chapter 1: Distributed Systems: What is a distributed system? Fall 2008 Jussi Kangasharju Course Goals and Content Distributed systems and their: Basic concepts Main issues, problems, and solutions Structured
Distributed Systems. Examples. Advantages and disadvantages. CIS 505: Software Systems. Introduction to Distributed Systems
CIS 505: Software Systems Introduction to Distributed Systems Insup Lee Department of Computer and Information Science University of Pennsylvania Distributed Systems Why distributed systems? o availability
Centralized Systems. A Centralized Computer System. Chapter 18: Database System Architectures
Chapter 18: Database System Architectures Centralized Systems! Centralized Systems! Client--Server Systems! Parallel Systems! Distributed Systems! Network Types! Run on a single computer system and do
A distributed system is defined as
A distributed system is defined as A collection of independent computers that appears to its users as a single coherent system CS550: Advanced Operating Systems 2 Resource sharing Openness Concurrency
CHAPTER 1: OPERATING SYSTEM FUNDAMENTALS
CHAPTER 1: OPERATING SYSTEM FUNDAMENTALS What is an operating? A collection of software modules to assist programmers in enhancing efficiency, flexibility, and robustness An Extended Machine from the users
CHAPTER 2 MODELLING FOR DISTRIBUTED NETWORK SYSTEMS: THE CLIENT- SERVER MODEL
CHAPTER 2 MODELLING FOR DISTRIBUTED NETWORK SYSTEMS: THE CLIENT- SERVER MODEL This chapter is to introduce the client-server model and its role in the development of distributed network systems. The chapter
1.4 SOFTWARE CONCEPTS
22 INTRODUCTION CHAP. 1 1.4 SOFTWARE CONCEPTS Hardware for distributed systems is important, but it is software that largely determines what a distributed system actually looks like. Distributed systems
CS3250 Distributed Systems
CS3250 Distributed Systems Lecture 4 More on Network Addresses Domain Name System DNS Human beings (apart from network administrators and hackers) rarely use IP addresses even in their human-readable dotted
CORBA and object oriented middleware. Introduction
CORBA and object oriented middleware Introduction General info Web page http://www.dis.uniroma1.it/~beraldi/elective Exam Project (application), plus oral discussion 3 credits Roadmap Distributed applications
CS 5523 Operating Systems: Intro to Distributed Systems
CS 5523 Operating Systems: Intro to Distributed Systems Instructor: Dr. Tongping Liu Thank Dr. Dakai Zhu, Dr. Palden Lama for providing their slides. Outline Different Distributed Systems Ø Distributed
Symmetric Multiprocessing
Multicore Computing A multi-core processor is a processing system composed of two or more independent cores. One can describe it as an integrated circuit to which two or more individual processors (called
COMP5426 Parallel and Distributed Computing. Distributed Systems: Client/Server and Clusters
COMP5426 Parallel and Distributed Computing Distributed Systems: Client/Server and Clusters Client/Server Computing Client Client machines are generally single-user workstations providing a user-friendly
Interconnection Networks
Advanced Computer Architecture (0630561) Lecture 15 Interconnection Networks Prof. Kasim M. Al-Aubidy Computer Eng. Dept. Interconnection Networks: Multiprocessors INs can be classified based on: 1. Mode
Lecture 2 Parallel Programming Platforms
Lecture 2 Parallel Programming Platforms Flynn s Taxonomy In 1966, Michael Flynn classified systems according to numbers of instruction streams and the number of data stream. Data stream Single Multiple
Chapter 6. CORBA-based Architecture. 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications
Chapter 6. CORBA-based Architecture 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications 1 Chapter 6. CORBA-based Architecture Part 6.1 Introduction to
Network Attached Storage. Jinfeng Yang Oct/19/2015
Network Attached Storage Jinfeng Yang Oct/19/2015 Outline Part A 1. What is the Network Attached Storage (NAS)? 2. What are the applications of NAS? 3. The benefits of NAS. 4. NAS s performance (Reliability
Client/Server and Distributed Computing
Adapted from:operating Systems: Internals and Design Principles, 6/E William Stallings CS571 Fall 2010 Client/Server and Distributed Computing Dave Bremer Otago Polytechnic, N.Z. 2008, Prentice Hall Traditional
Client/Server Computing Distributed Processing, Client/Server, and Clusters
Client/Server Computing Distributed Processing, Client/Server, and Clusters Chapter 13 Client machines are generally single-user PCs or workstations that provide a highly userfriendly interface to the
Agenda. Distributed System Structures. Why Distributed Systems? Motivation
Agenda Distributed System Structures CSCI 444/544 Operating Systems Fall 2008 Motivation Network structure Fundamental network services Sockets and ports Client/server model Remote Procedure Call (RPC)
Mobile and Heterogeneous databases Database System Architecture. A.R. Hurson Computer Science Missouri Science & Technology
Mobile and Heterogeneous databases Database System Architecture A.R. Hurson Computer Science Missouri Science & Technology 1 Note, this unit will be covered in four lectures. In case you finish it earlier,
Middleware and Distributed Systems. Introduction. Dr. Martin v. Löwis
Middleware and Distributed Systems Introduction Dr. Martin v. Löwis 14 3. Software Engineering What is Middleware? Bauer et al. Software Engineering, Report on a conference sponsored by the NATO SCIENCE
Introduction to Cloud Computing
Introduction to Cloud Computing Distributed Systems 15-319, spring 2010 11 th Lecture, Feb 16 th Majd F. Sakr Lecture Motivation Understand Distributed Systems Concepts Understand the concepts / ideas
A Comparison of Distributed Systems: ChorusOS and Amoeba
A Comparison of Distributed Systems: ChorusOS and Amoeba Angelo Bertolli Prepared for MSIT 610 on October 27, 2004 University of Maryland University College Adelphi, Maryland United States of America Abstract.
Introduction to CORBA. 1. Introduction 2. Distributed Systems: Notions 3. Middleware 4. CORBA Architecture
Introduction to CORBA 1. Introduction 2. Distributed Systems: Notions 3. Middleware 4. CORBA Architecture 1. Introduction CORBA is defined by the OMG The OMG: -Founded in 1989 by eight companies as a non-profit
1 Organization of Operating Systems
COMP 730 (242) Class Notes Section 10: Organization of Operating Systems 1 Organization of Operating Systems We have studied in detail the organization of Xinu. Naturally, this organization is far from
Operating Systems 4 th Class
Operating Systems 4 th Class Lecture 1 Operating Systems Operating systems are essential part of any computer system. Therefore, a course in operating systems is an essential part of any computer science
Objectives. Distributed Databases and Client/Server Architecture. Distributed Database. Data Fragmentation
Objectives Distributed Databases and Client/Server Architecture IT354 @ Peter Lo 2005 1 Understand the advantages and disadvantages of distributed databases Know the design issues involved in distributed
Tier Architectures. Kathleen Durant CS 3200
Tier Architectures Kathleen Durant CS 3200 1 Supporting Architectures for DBMS Over the years there have been many different hardware configurations to support database systems Some are outdated others
The Service Availability Forum Specification for High Availability Middleware
The Availability Forum Specification for High Availability Middleware Timo Jokiaho, Fred Herrmann, Dave Penkler, Manfred Reitenspiess, Louise Moser Availability Forum [email protected], [email protected],
Computer Network. Interconnected collection of autonomous computers that are able to exchange information
Introduction Computer Network. Interconnected collection of autonomous computers that are able to exchange information No master/slave relationship between the computers in the network Data Communications.
SOFT 437. Software Performance Analysis. Ch 5:Web Applications and Other Distributed Systems
SOFT 437 Software Performance Analysis Ch 5:Web Applications and Other Distributed Systems Outline Overview of Web applications, distributed object technologies, and the important considerations for SPE
How To Write A Network Operating System For A Network (Networking) System (Netware)
Otwarte Studium Doktoranckie 1 Adaptable Service Oriented Architectures Krzysztof Zieliński Department of Computer Science AGH-UST Krakow Poland Otwarte Studium Doktoranckie 2 Agenda DCS SOA WS MDA OCL
Chapter 16 Distributed Processing, Client/Server, and Clusters
Operating Systems: Internals and Design Principles Chapter 16 Distributed Processing, Client/Server, and Clusters Eighth Edition By William Stallings Table 16.1 Client/Server Terminology Applications Programming
High Performance Computing. Course Notes 2007-2008. HPC Fundamentals
High Performance Computing Course Notes 2007-2008 2008 HPC Fundamentals Introduction What is High Performance Computing (HPC)? Difficult to define - it s a moving target. Later 1980s, a supercomputer performs
High Performance Cluster Support for NLB on Window
High Performance Cluster Support for NLB on Window [1]Arvind Rathi, [2] Kirti, [3] Neelam [1]M.Tech Student, Department of CSE, GITM, Gurgaon Haryana (India) [email protected] [2]Asst. Professor,
Distributed Systems Lecture 1 1
Distributed Systems Lecture 1 1 Distributed Systems Lecturer: Therese Berg [email protected]. Recommended text book: Distributed Systems Concepts and Design, Coulouris, Dollimore and Kindberg. Addison
System types. Distributed systems
System types 1 Personal systems that are designed to run on a personal computer or workstation Distributed systems where the system software runs on a loosely integrated group of cooperating processors
Middleware Lou Somers
Middleware Lou Somers April 18, 2002 1 Contents Overview Definition, goals, requirements Four categories of middleware Transactional, message oriented, procedural, object Middleware examples XML-RPC, SOAP,
Vorlesung Rechnerarchitektur 2 Seite 178 DASH
Vorlesung Rechnerarchitektur 2 Seite 178 Architecture for Shared () The -architecture is a cache coherent, NUMA multiprocessor system, developed at CSL-Stanford by John Hennessy, Daniel Lenoski, Monica
DISTRIBUTED AND PARALLELL DATABASE
DISTRIBUTED AND PARALLELL DATABASE SYSTEMS Tore Risch Uppsala Database Laboratory Department of Information Technology Uppsala University Sweden http://user.it.uu.se/~torer PAGE 1 What is a Distributed
Cluster, Grid, Cloud Concepts
Cluster, Grid, Cloud Concepts Kalaiselvan.K Contents Section 1: Cluster Section 2: Grid Section 3: Cloud Cluster An Overview Need for a Cluster Cluster categorizations A computer cluster is a group of
SCALABILITY AND AVAILABILITY
SCALABILITY AND AVAILABILITY Real Systems must be Scalable fast enough to handle the expected load and grow easily when the load grows Available available enough of the time Scalable Scale-up increase
Middleware: Past and Present a Comparison
Middleware: Past and Present a Comparison Hennadiy Pinus ABSTRACT The construction of distributed systems is a difficult task for programmers, which can be simplified with the use of middleware. Middleware
Amoeba Distributed Operating System
Amoeba Distributed Operating System Matt Ramsay Tim Kiegel Heath Memmer CS470 Case Study Paper 4/19/02 Amoeba Introduction The Amoeba operating system began as a research project at Vrije Universiteit
Network File System (NFS) Pradipta De [email protected]
Network File System (NFS) Pradipta De [email protected] Today s Topic Network File System Type of Distributed file system NFS protocol NFS cache consistency issue CSE506: Ext Filesystem 2 NFS
Chapter 11 I/O Management and Disk Scheduling
Operating Systems: Internals and Design Principles, 6/E William Stallings Chapter 11 I/O Management and Disk Scheduling Dave Bremer Otago Polytechnic, NZ 2008, Prentice Hall I/O Devices Roadmap Organization
Chapter 1: Operating System Models 1 2 Operating System Models 2.1 Introduction Over the past several years, a number of trends affecting operating system design are witnessed and foremost among them is
Distributed Systems. Security concepts; Cryptographic algorithms; Digital signatures; Authentication; Secure Sockets
I. Introduction II. Fundamental Concepts of Architecture models; network architectures: OSI, Internet and LANs; interprocess communication III. Time and Global States Clocks and concepts of time; Event
What is Middleware? Software that functions as a conversion or translation layer. It is also a consolidator and integrator.
What is Middleware? Application Application Middleware Middleware Operating System Operating System Software that functions as a conversion or translation layer. It is also a consolidator and integrator.
The Service Revolution software engineering without programming languages
The Service Revolution software engineering without programming languages Gustavo Alonso Institute for Pervasive Computing Department of Computer Science Swiss Federal Institute of Technology (ETH Zurich)
Chapter 7: Distributed Systems: Warehouse-Scale Computing. Fall 2011 Jussi Kangasharju
Chapter 7: Distributed Systems: Warehouse-Scale Computing Fall 2011 Jussi Kangasharju Chapter Outline Warehouse-scale computing overview Workloads and software infrastructure Failures and repairs Note:
System Models for Distributed and Cloud Computing
System Models for Distributed and Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Classification of Distributed Computing Systems
FROM RELATIONAL TO OBJECT DATABASE MANAGEMENT SYSTEMS
FROM RELATIONAL TO OBJECT DATABASE MANAGEMENT SYSTEMS V. CHRISTOPHIDES Department of Computer Science & Engineering University of California, San Diego ICS - FORTH, Heraklion, Crete 1 I) INTRODUCTION 2
SAN Conceptual and Design Basics
TECHNICAL NOTE VMware Infrastructure 3 SAN Conceptual and Design Basics VMware ESX Server can be used in conjunction with a SAN (storage area network), a specialized high speed network that connects computer
Dr Markus Hagenbuchner [email protected] CSCI319. Distributed Systems
Dr Markus Hagenbuchner [email protected] CSCI319 Distributed Systems CSCI319 Chapter 8 Page: 1 of 61 Fault Tolerance Study objectives: Understand the role of fault tolerance in Distributed Systems. Know
Microkernels, virtualization, exokernels. Tutorial 1 CSC469
Microkernels, virtualization, exokernels Tutorial 1 CSC469 Monolithic kernel vs Microkernel Monolithic OS kernel Application VFS System call User mode What was the main idea? What were the problems? IPC,
TCP Servers: Offloading TCP Processing in Internet Servers. Design, Implementation, and Performance
TCP Servers: Offloading TCP Processing in Internet Servers. Design, Implementation, and Performance M. Rangarajan, A. Bohra, K. Banerjee, E.V. Carrera, R. Bianchini, L. Iftode, W. Zwaenepoel. Presented
DISTRIBUTED SYSTEMS AND CLOUD COMPUTING. A Comparative Study
DISTRIBUTED SYSTEMS AND CLOUD COMPUTING A Comparative Study Geographically distributed resources, such as storage devices, data sources, and computing power, are interconnected as a single, unified resource
Tools Page 1 of 13 ON PROGRAM TRANSLATION. A priori, we have two translation mechanisms available:
Tools Page 1 of 13 ON PROGRAM TRANSLATION A priori, we have two translation mechanisms available: Interpretation Compilation On interpretation: Statements are translated one at a time and executed immediately.
Scalability and Classifications
Scalability and Classifications 1 Types of Parallel Computers MIMD and SIMD classifications shared and distributed memory multicomputers distributed shared memory computers 2 Network Topologies static
Scalable Linux Clusters with LVS
Scalable Linux Clusters with LVS Considerations and Implementation, Part I Eric Searcy Tag1 Consulting, Inc. [email protected] April 2008 Abstract Whether you are perusing mailing lists or reading
Chapter 11 Distributed File Systems. Distributed File Systems
Chapter 11 Distributed File Systems Introduction Case studies NFS Coda 1 Distributed File Systems A distributed file system enables clients to access files stored on one or more remote file servers A file
Transparency in Distributed Systems
Transparency in Distributed Systems By Sudheer R Mantena Abstract The present day network architectures are becoming more and more complicated due to heterogeneity of the network components and mainly
ENHANCED HYBRID FRAMEWORK OF RELIABILITY ANALYSIS FOR SAFETY CRITICAL NETWORK INFRASTRUCTURE
ENHANCED HYBRID FRAMEWORK OF RELIABILITY ANALYSIS FOR SAFETY CRITICAL NETWORK INFRASTRUCTURE Chandana Priyanka G. H., Aarthi R. S., Chakaravarthi S., Selvamani K. 2 and Kannan A. 3 Department of Computer
Classic Grid Architecture
Peer-to to-peer Grids Classic Grid Architecture Resources Database Database Netsolve Collaboration Composition Content Access Computing Security Middle Tier Brokers Service Providers Middle Tier becomes
Distributed Systems and Recent Innovations: Challenges and Benefits
Distributed Systems and Recent Innovations: Challenges and Benefits 1. Introduction Krishna Nadiminti, Marcos Dias de Assunção, and Rajkumar Buyya Grid Computing and Distributed Systems Laboratory Department
Chapter 17: Distributed Systems
Chapter 17: Distributed Systems Chapter 17: Distributed Systems Advantages of Distributed Systems Types of Network-Based Operating Systems Network Structure Communication Structure Communication Protocols
Chapter 3. Database Environment - Objectives. Multi-user DBMS Architectures. Teleprocessing. File-Server
Chapter 3 Database Architectures and the Web Transparencies Database Environment - Objectives The meaning of the client server architecture and the advantages of this type of architecture for a DBMS. The
Lecture 23: Multiprocessors
Lecture 23: Multiprocessors Today s topics: RAID Multiprocessor taxonomy Snooping-based cache coherence protocol 1 RAID 0 and RAID 1 RAID 0 has no additional redundancy (misnomer) it uses an array of disks
Distributed Operating Systems. Cluster Systems
Distributed Operating Systems Cluster Systems Ewa Niewiadomska-Szynkiewicz [email protected] Institute of Control and Computation Engineering Warsaw University of Technology E&IT Department, WUT 1 1. Cluster
Distributed Databases
Distributed Databases Chapter 1: Introduction Johann Gamper Syllabus Data Independence and Distributed Data Processing Definition of Distributed databases Promises of Distributed Databases Technical Problems
Operating System Concepts. Operating System 資 訊 工 程 學 系 袁 賢 銘 老 師
Lecture 7: Distributed Operating Systems A Distributed System 7.2 Resource sharing Motivation sharing and printing files at remote sites processing information in a distributed database using remote specialized
System Interconnect Architectures. Goals and Analysis. Network Properties and Routing. Terminology - 2. Terminology - 1
System Interconnect Architectures CSCI 8150 Advanced Computer Architecture Hwang, Chapter 2 Program and Network Properties 2.4 System Interconnect Architectures Direct networks for static connections Indirect
Kernel. What is an Operating System? Systems Software and Application Software. The core of an OS is called kernel, which. Module 9: Operating Systems
Module 9: Operating Systems Objective What is an operating system (OS)? OS kernel, and basic functions OS Examples: MS-DOS, MS Windows, Mac OS Unix/Linux Features of modern OS Graphical operating system
Switched Interconnect for System-on-a-Chip Designs
witched Interconnect for ystem-on-a-chip Designs Abstract Daniel iklund and Dake Liu Dept. of Physics and Measurement Technology Linköping University -581 83 Linköping {danwi,dake}@ifm.liu.se ith the increased
Event-based middleware services
3 Event-based middleware services The term event service has different definitions. In general, an event service connects producers of information and interested consumers. The service acquires events
Operating system Dr. Shroouq J.
3 OPERATING SYSTEM STRUCTURES An operating system provides the environment within which programs are executed. The design of a new operating system is a major task. The goals of the system must be well
Web Email DNS Peer-to-peer systems (file sharing, CDNs, cycle sharing)
1 1 Distributed Systems What are distributed systems? How would you characterize them? Components of the system are located at networked computers Cooperate to provide some service No shared memory Communication
Proactive, Resource-Aware, Tunable Real-time Fault-tolerant Middleware
Proactive, Resource-Aware, Tunable Real-time Fault-tolerant Middleware Priya Narasimhan T. Dumitraş, A. Paulos, S. Pertet, C. Reverte, J. Slember, D. Srivastava Carnegie Mellon University Problem Description
Chapter 2: Remote Procedure Call (RPC)
Chapter 2: Remote Procedure Call (RPC) Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) [email protected] http://www.iks.inf.ethz.ch/ Contents - Chapter 2 - RPC
In Memory Accelerator for MongoDB
In Memory Accelerator for MongoDB Yakov Zhdanov, Director R&D GridGain Systems GridGain: In Memory Computing Leader 5 years in production 100s of customers & users Starts every 10 secs worldwide Over 15,000,000
PARALLEL & CLUSTER COMPUTING CS 6260 PROFESSOR: ELISE DE DONCKER BY: LINA HUSSEIN
1 PARALLEL & CLUSTER COMPUTING CS 6260 PROFESSOR: ELISE DE DONCKER BY: LINA HUSSEIN Introduction What is cluster computing? Classification of Cluster Computing Technologies: Beowulf cluster Construction
Architectural Level Power Consumption of Network on Chip. Presenter: YUAN Zheng
Architectural Level Power Consumption of Network Presenter: YUAN Zheng Why Architectural Low Power Design? High-speed and large volume communication among different parts on a chip Problem: Power consumption
