Lectures Software Engineering - Chapter 11: Distributed Systems Architectures

ppt 44 trang hoanguyen 3240
Bạn đang xem 20 trang mẫu của tài liệu "Lectures Software Engineering - Chapter 11: Distributed Systems Architectures", để tải tài liệu gốc về máy bạn click vào nút DOWNLOAD ở trên

Tài liệu đính kèm:

  • pptlectures_software_engineering_chapter_11_distributed_systems.ppt

Nội dung text: Lectures Software Engineering - Chapter 11: Distributed Systems Architectures

  1. Distributed Systems Architectures Architectural design for software that executes on more than one processor ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 1
  2. Objectives l To explain the advantages and disadvantages of distributed systems architectures l To describe different approaches to the development of client-server systems l To explain the differences between client-server and distributed object architectures l To describe object request brokers and the principles underlying the CORBA standards ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 2
  3. Topics covered l Multiprocessor architectures l Client-server architectures l Distributed object architectures l CORBA ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 3
  4. Distributed systems l Virtually all large computer-based systems are now distributed systems l Information processing is distributed over several computers rather than confined to a single machine l Distributed software engineering is now very important ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 4
  5. System types l Personal systems that are not distributed and that are designed to run on a personal computer or workstation. l Embedded systems that run on a single processor or on an integrated group of processors. l Distributed systems where the system software runs on a loosely integrated group of cooperating processors linked by a network. ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 5
  6. Distributed system characteristics l Resource sharing l Openness l Concurrency l Scalability l Fault tolerance l Transparency ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 6
  7. Distributed system disadvantages l Complexity l Security l Manageability l Unpredictability ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 7
  8. Issues in distributed system design
  9. Distributed systems archiectures l Client-server architectures • Distributed services which are called on by clients. Servers that provide services are treated differently from clients that use services l Distributed object architectures • No distinction between clients and servers. Any object on the system may provide and use services from other objects ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 9
  10. Middleware l Software that manages and supports the different components of a distributed system. In essence, it sits in the middle of the system l Middleware is usually off-the-shelf rather than specially written software l Examples • Transaction processing monitors • Data convertors • Communication controllers ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 10
  11. Multiprocessor architectures l Simplest distributed system model l System composed of multiple processes which may (but need not) execute on different processors l Architectural model of many large real-time systems l Distribution of process to processor may be pre- ordered or may be under the control of a despatcher ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 11
  12. A multiprocessor traffic control system ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 12
  13. Client-server architectures l The application is modelled as a set of services that are provided by servers and a set of clients that use these services l Clients know of servers but servers need not know of clients l Clients and servers are logical processes l The mapping of processors to processes is not necessarily 1 : 1 ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 13
  14. A client-server system ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 14
  15. Computers in a C/S network ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 15
  16. Layered application architecture l Presentation layer • Concerned with presenting the results of a computation to system users and with collecting user inputs l Application processing layer • Concerned with providing application specific functionality e.g., in a banking system, banking functions such as open account, close account, etc. l Data management layer • Concerned with managing the system databases ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 16
  17. Application layers ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 17
  18. Thin and fat clients l Thin-client model • In a thin-client model, all of the application processing and data management is carried out on the server. The client is simply responsible for running the presentation software. l Fat-client model • In this model, the server is only responsible for data management. The software on the client implements the application logic and the interactions with the system user. ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 18
  19. Thin and fat clients ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 19
  20. Thin client model l Used when legacy systems are migrated to client server architectures. • The legacy system acts as a server in its own right with a graphical interface implemented on a client l A major disadvantage is that it places a heavy processing load on both the server and the network ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 20
  21. Fat client model l More processing is delegated to the client as the application processing is locally executed l Most suitable for new C/S systems where the capabilities of the client system are known in advance l More complex than a thin client model especially for management. New versions of the application have to be installed on all clients ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 21
  22. A client-server ATM system ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 22
  23. Three-tier architectures l In a three-tier architecture, each of the application architecture layers may execute on a separate processor l Allows for better performance than a thin-client approach and is simpler to manage than a fat- client approach l A more scalable architecture - as demands increase, extra servers can be added ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 23
  24. A 3-tier C/S architecture ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 24
  25. An internet banking system ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 25
  26. Use of C/S architectures ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 26
  27. Distributed object architectures l There is no distinction in a distributed object architectures between clients and servers l Each distributable entity is an object that provides services to other objects and receives services from other objects l Object communication is through a middleware system called an object request broker (software bus) l However, more complex to design than C/S systems ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 27
  28. Distributed object architecture ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 28
  29. Advantages of distributed object architecture l It allows the system designer to delay decisions on where and how services should be provided l It is a very open system architecture that allows new resources to be added to it as required l The system is flexible and scaleable l It is possible to reconfigure the system dynamically with objects migrating across the network as required ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 29
  30. Uses of distributed object architecture l As a logical model that allows you to structure and organise the system. In this case, you think about how to provide application functionality solely in terms of services and combinations of services l As a flexible approach to the implementation of client-server systems. The logical model of the system is a client-server model but both clients and servers are realised as distributed objects communicating through a software bus ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 30
  31. A data mining system ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 31
  32. Data mining system l The logical model of the system is not one of service provision where there are distinguished data management services l It allows the number of databases that are accessed to be increased without disrupting the system l It allows new types of relationship to be mined by adding new integrator objects ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 32
  33. CORBA l CORBA is an international standard for an Object Request Broker - middleware to manage communications between distributed objects l Several implementation of CORBA are available l DCOM is an alternative approach by Microsoft to object request brokers l CORBA has been defined by the Object Management Group ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 33
  34. Application structure l Application objects l Standard objects, defined by the OMG, for a specific domain e.g. insurance l Fundamental CORBA services such as directories and security management l Horizontal (i.e. cutting across applications) facilities such as user interface facilities ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 34
  35. CORBA application structure ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 35
  36. CORBA standards l An object model for application objects • A CORBA object is an encapsulation of state with a well- defined, language-neutral interface defined in an IDL (interface definition language) l An object request broker that manages requests for object services l A set of general object services of use to many distributed applications l A set of common components built on top of these services ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 36
  37. CORBA objects l CORBA objects are comparable, in principle, to objects in C++ and Java l They MUST have a separate interface definition that is expressed using a common language (IDL) similar to C++ l There is a mapping from this IDL to programming languages (C++, Java, etc.) l Therefore, objects written in different languages can communicate with each other ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 37
  38. Object request broker (ORB) l The ORB handles object communications. It knows of all objects in the system and their interfaces l Using an ORB, the calling object binds an IDL stub that defines the interface of the called object l Calling this stub results in calls to the ORB which then calls the required object through a published IDL skeleton that links the interface to the service implementation ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 38
  39. ORB-based object communications ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 39
  40. Inter-ORB communications l ORBs are not usually separate programs but are a set of objects in a library that are linked with an application when it is developed l ORBs handle communications between objects executing on the sane machine l Several ORBS may be available and each computer in a distributed system will have its own ORB l Inter-ORB communications are used for distributed object calls ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 40
  41. Inter-ORB communications ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 41
  42. CORBA services l Naming and trading services • These allow objects to discover and refer to other objects on the network l Notification services • These allow objects to notify other objects that an event has occurred l Transaction services • These support atomic transactions and rollback on failure ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 42
  43. Key points l Almost all new large systems are distributed systems l Distributed systems support resource sharing, openness, concurrency, scalability, fault tolerance and transparency l Client-server architectures involve services being delivered by servers to programs operating on clients l User interface software always runs on the client and data management on the server ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 43
  44. Key points l In a distributed object architecture, there is no distinction between clients and servers l Distributed object systems require middleware to handle object communications l The CORBA standards are a set of middleware standards that support distributed object architectures ©Ian Sommerville 2000 Software Engineering, 6th edition. Chapter 11 Slide 44