1 / 35

Distributed Systems COEN 317 Introduction

Distributed Systems COEN 317 Introduction. Chapter 1,2,3. COEN 317. JoAnne Holliday Email: jholliday@scu.edu (best way to reach me) Office: Engineering 247, (408) 551-1941 Office Hours: TW 3:00-4:30 and by appointment Class web page: http://www.cse.scu.edu/~jholliday/.

Télécharger la présentation

Distributed Systems COEN 317 Introduction

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Distributed Systems COEN 317 Introduction Chapter 1,2,3

  2. COEN 317 • JoAnne Holliday • Email: jholliday@scu.edu (best way to reach me) • Office: Engineering 247, (408) 551-1941 • Office Hours: TW 3:00-4:30 and by appointment • Class web page: http://www.cse.scu.edu/~jholliday/

  3. Textbook: Distributed Systems, Principles and Paradigms We will cover chapter 4-8 and parts of 9. Read chapter 1. Review chapters 2 if needed for networks and 3 as needed for threads and processes Chapter 1: Introduction Chapter 2: Communication, Networking Chapter 3: Processes • By Tanenbaum and van Steen

  4. Definition of a Distributed System (1) • A distributed system is: • A collection of independent computers that appears to its users as a single coherent system.

  5. Definition of a Distributed System (2) 1.1 A distributed system organized as middleware.Note that the middleware layer extends over multiple machines.

  6. Threads (chapter 3) • Message propagation times are long. Send a message and let one thread wait for response while another continues with task.

  7. Distributed systems • “Distributed System” covers a wide range of architectures from slightly more distributed than a centralized system to a truly distributed network of peers.

  8. One Extreme: Centralized All of the computation is done on the mainframe. Each line or keystroke is sent from the terminal to the mainframe. • Centralized: mainframe and dumb terminals

  9. Moving Towards Distribution In a client-server system, the clients are workstations or computers in their own right and perform computations and formatting of the data. However, the data and the application which manipulates it ultimately resides on the server.

  10. More Decentralization Coordinator might be used only in case of failures or other problems • In Distributed-with-Coordinator, the nodes or sites depend on a coordinator node with extra knowledge or processing abilities

  11. True Decentralization The nodes may choose to elect one of their own to act as a temporary coordinator or leader • A true Distributed system has no distinguished node which acts as a coordinator and all nodes or sites are equals.

  12. Distributed Systems: Pro and Con • Some things that were difficult in a centralized system become easier • Doing tasks faster by doing them in parallel • Avoiding a single point of failure (all eggs in one basket) • Geographical distribution • Some things become more difficult • Transaction commit • Snapshots, time and causality • Agreement (consensus)

  13. Advantages of the True Distributed System • No central server or coordinator means it is scalable • SDDS, Scalable Distributed Data Structures, attempt to move distributed systems from a small number of nodes to thousands of nodes • We need scalable algorithms to operate on these networks/structures • For example peer-to-peer networks

  14. Transparency in a Distributed System Important: location, migration (relocation), replication, concurrency, failure.

  15. Scalability • Something is scalable if it “increases linearly with size” where size is usually number of nodes or distance. • “X is scalable with the number of nodes” • Every site (node) is directly connected to every other site through a communication channel. Number of channels is NOT scalable. For N sites there are N! channels. • Sites connected in a ring. # of channels IS scalable. (N channels for N sites)

  16. Scalability Problems Examples of scalability limitations.

  17. Scaling Techniques (1) 1.4 • The difference between letting: • a server or • a client check forms as they are being filled

  18. Scaling Techniques (2) 1.5 An example of dividing the DNS name space into zones.

  19. Characteristics of Scalable Distributed Algorithms • No machine (node, site) has complete information about the system state. • Sites make decisions based only on local information. • Failure of one site does not ruin the algorithm. • There is no implicit assumption that a global clock exists.

  20. Homogeneous and tightly coupled vs heterogeneous and loosely coupled • We will study heterogeneous and loosely coupled systems.

  21. Multiprocessors (1) 1.7 • A bus-based multiprocessor.

  22. Multiprocessors (2) 1.8 • A crossbar switch • An omega switching network

  23. Homogeneous Multicomputer Systems 1-9 • (a) Grid • (b) Hypercube: 2N nodes at degree N

  24. Software Concepts • DOS (Distributed Operating Systems) • NOS (Network Operating Systems) • Middleware

  25. Uniprocessor Operating Systems 1.11 • Separating applications from operating system code through • a microkernel.

  26. Distributed Operating Systems 1.14 • May share memory or other resources.

  27. Network Operating System 1-19 • General structure of a network operating system.

  28. Middleware based Distributed System 1-22 • General structure of a distributed system as middleware.

  29. 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.

  30. Comparison between Systems • A comparison between multiprocessor operating systems, multicomputer operating systems, network operating systems, and middleware based distributed systems.

  31. Modern Architectures 1-31 • An example of horizontal distribution of a Web service.

  32. Two meanings of synchronous and asynchronous communications • Synchronous communications is where a process blocks after sending a message to wait for the answer or before receiving. • Sync and async have come to describe the communications channels with which they are used. • Synchronous: message transit time is short and bounded. If site does not respond in x sec, site can be declared dead. Simplifies algorithms! • Asynchronous: message transit time is unbounded. If a message is not received in a given time interval, it could just be slow.

  33. What makes Distributed Systems Difficult? • Asynchrony – even “synchronous” systems have time lag. • Limited local knowledge – algorithms can consider only information acquired locally. • Failures – parts of the distributed system can fail independently leaving some nodes operational and some not.

  34. Example: Byzantine Agreement General A General B The Enemy • Introduced as voting problem (Lamport, Shostak, Pease ’82) • A and B can defeat enemy iff both attack • A sends message to B: Attack at Noon!

  35. Byzantine Agreement • Impossible with unreliable networks • Possible if some guarantees of reliability • Guaranteed delivery within bounded time • Limitations on corruption of messages • Probabilistic guarantees (send multiple messages)

More Related