Distributed System PDF
Document Details

Uploaded by GracefulAllegory
Hailemichael A.
Tags
Summary
This document provides an overview of distributed systems, including their characteristics, goals, and the client-server model. It covers topics such as scalability, transparency, fault tolerance, and concurrency.
Full Transcript
DISTRIBUTED SYSTEM Distributed Systems Characterization,goal andclient- server model 1 Instructor:Hailemichael A. OUTLINE 1. What is a Distributed System 2. Common Characteristics 3.organization and goals of...
DISTRIBUTED SYSTEM Distributed Systems Characterization,goal andclient- server model 1 Instructor:Hailemichael A. OUTLINE 1. What is a Distributed System 2. Common Characteristics 3.organization and goals of distributed systems 4. hardware and software concept 5.client-server model 6.SUMMARY 2 Instructor:Hailemichael A. 1. WHAT IS A DISTRIBUTED SYSTEM? Definition: A distributed system is one in which components located at networked computers communicate and coordinate their actions only by passing messages. 3 Instructor:Hailemichael A. 1.1 CENTRALIZED SYSTEM CHARACTERISTICS ï‚¢ One component with non-autonomous parts ï‚¢ Component shared by users all the time ï‚¢ All resources accessible ï‚¢ Software runs in a single process ï‚¢ Single point of control ï‚¢ Single point of failure 4 Instructor:Hailemichael A. CHARACTESTICS OF DISTRIBUTED SYSTEM ï‚¢ Multiple autonomous components ï‚¢ Components are not shared by all users ï‚¢ Resources may not be accessible ï‚¢ Software runs in concurrent processes on different processors ï‚¢ Multiple points of control ï‚¢ Multiple points of failure 5 Instructor:Hailemichael A. 3. COMMON CHARACTERISTICS ï‚¢ What are we trying to achieve when we construct a distributed system? ï‚¢ Certain common characteristics can be used to assess distributed systems ï‚— Scalability ï‚— Transparency ï‚— Fault Tolerance ï‚— Concurrency ï‚— Heterogeneity 6 Instructor:Hailemichael A. 3.1SCALABILITY ï‚¢ VAbility to grow and manage increased load by adding more resources. ï‚¢ Can be horizontal (adding more machines) or vertical (adding resources to existing machines). 7 Instructor:Hailemichael A. 3.2 TRANSPARENCY ï‚¢ Access Transparency: Users should not be aware of the location of resources. ï‚¢ Location Transparency: Resources can be accessed without knowing their physical location. ï‚¢ Migration Transparency: Resources can move without affecting the operations. 8 Instructor:Hailemichael A. 3.4 FAULT TOLERANCE ï‚¢ Ability to continue operating in the event of a failure of one or more components. ï‚¢ Redundancy and replication are often used to achieve this. ï‚¢ Fault tolerance is achieved by ï‚— recovery ï‚— redundancy 9 Instructor:Hailemichael A. 3.6 CONCURRENCY ï‚¢ Components in distributed systems are executed in concurrent processes. ï‚¢ Components access and update shared resources (e.g. variables, databases, device drivers). ï‚¢ Integrity of the system may be violated if concurrent updates are not coordinated. ï‚— Lost updates ï‚— Inconsistent analysis 10 Instructor:Hailemichael A. HETEROGENEITY ï‚¢ Supports a variety of hardware, operating systems, and networks. ï‚¢ Allows for the integration of diverse components. 11 Instructor:Hailemichael A. 4.4 SYSTEM ARCHITECTURES ï‚¢ Client-Server ï‚¢ Peer-to-Peer 12 Instructor:Hailemichael A. 4.4.1 CLIENTS INVOKE INDIVIDUAL SERVERS Client invocation invocation Server result result Server Client Key: Process: Computer: 13 Instructor:Hailemichael A. 4.4.2 PEER-TO-PEER SYSTEMS Peer 2 Peer 1 Application Application Sharable Peer 3 objects Application Peer 4 Application Peers 5.... N 14 Instructor:Hailemichael A. 1.3 ORGANIZATION OF DISTRIBUTED SYSTEMS COMPONENTS: ï‚¢ Nodes: Individual computers or devices in the network. ï‚¢ Middleware: Software that provides common services and capabilities to applications outside of what's offered by the operating system. ï‚¢ Communication Protocols: Define the rules for data exchange between nodes. 15 Instructor:Hailemichael A. ARCHITECTURAL MODELS ï‚¢ Client-Server Architecture: A server provides resources or services, and clients request them. ï‚¢ Peer-to-Peer Architecture: All nodes act as both clients and servers. ï‚¢ Multi-tier Architecture: Divides the application into layers, improving scalability and manageability. 16 Instructor:Hailemichael A. 1.4 GOALS OF DISTRIBUTED SYSTEMS ï‚¢ Resource Sharing: Enable users to access and share resources efficiently. ï‚¢ Openness: Systems should be designed with open standards to allow for easy integration and expansion. ï‚¢ Reliability: Ensure that the system can recover from failures. ï‚¢ Performance: Provide high throughput and low latency in resource access. ï‚¢ Security: Protect data and resources from unauthorized access and threats. 17 Instructor:Hailemichael A. 1.5 HARDWARE AND SOFTWARE CONCEPTS ï‚¢ Hardware: ï‚¢ Diverse hardware components including servers, workstations, and mobile devices. ï‚¢ Network infrastructure like routers, switches, and communication links. ï‚¢ Software: ï‚¢ Distributed operating systems (e.g., Google Kubernetes). 18 ï‚¢ Applications designed for distributed environments (e.g., cloud computing services). Instructor:Hailemichael 1.6 THE CLIENT-SERVER MODEL ï‚¢ Overview: ï‚¢ A foundational architecture for distributed systems. ï‚¢ Clients request services, and servers provide them. ï‚¢ Components: ï‚¢ Client: Initiates requests for services. ï‚¢ Server: Listens for requests, processes them, and sends responses. 19 Instructor:Hailemichael A. 5. SUMMARY ï‚¢ Definitions of distributed systems and comparisons to centralized systems. ï‚¢ The characteristics of distributed systems. ï‚¢ The eight forms of transparency. ï‚¢ The basic design issues. 20 Instructor:Hailemichael A.