1 / 64

Database Systems: Design, Implementation, and Management Tenth Edition

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 12 Distributed Database Management Systems. The Evolution of Distributed Database Management Systems. Distributed database management system (DDBMS)

lottd
Télécharger la présentation

Database Systems: Design, Implementation, and Management Tenth Edition

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. Database Systems:Design, Implementation, and ManagementTenth Edition Chapter 12 Distributed Database Management Systems

  2. Database Systems, 10th Edition The Evolution of Distributed Database Management Systems • Distributed database management system (DDBMS) • Governs storage and processing of logically related data over interconnected computer systems • Both data and processing functions are distributed among several sites • 1970s - Centralized database required that corporate data be stored in a single central site • Usually a mainframe computer • Data access via dumb terminals

  3. Database Systems, 10th Edition The Evolution of Distributed Database Management Systems • Wasn’t responsive to need for faster response times and quick access to information • Slow process to approve and develop new application

  4. Database Systems, 10th Edition The Evolution of Distributed Database Management Systems • Social and technological changes led to change • Businesses went global; competition was now in cyberspace not next door • Customer demands and market needs required Web-based services • rapid development of low-cost, smart mobile devices increased the demand for complex and fast networks to interconnect them – cloud based services • Multiple types of data (voice, image, video, music) which are geographically distributed must be managed

  5. Database Systems, 10th Edition The Evolution of Distributed Database Management Systems • As a result, businesses had to react quickly to remain competitive. This required: • Rapid ad hoc data access became crucial in the quick-response decision making environment • Distributed data access to support geographically dispersed business units

  6. Database Systems, 10th Edition The Evolution of Distributed Database Management Systems • The following factors strongly influenced the shape of the response • Acceptance of the Internet as the platform for data access and distribution • The mobile wireless revolution • Created high demand for data access • Use of “applications as a service” • Company data stored on central servers but applications are deployed “in the cloud” • Increased focus on mobile BI • Use of social networks increases need for on-the-spot decision making

  7. Database Systems, 10th Edition The Evolution of Distributed Database Management Systems • The distributed database is especially desirable because centralized database management is subject to problems such as: • Performance degradation as remote locations and distances increase • High cost to maintain and operate • Reliability issues with a single site and need for data replication • Scalability problems due to a single location (space, power consumption, etc) • Organizational rigidity imposed by the database – might not be able to support flexibility and agility required by modern global organizations

  8. Distributed Processing and Distributed Databases • Distributed processing • Database’s logical processing is shared among two or more physically independent sites connected through a network

  9. Distributed Processing and Distributed Databases • Distributed database • Stores logically related database over two or more physically independent sites • Database composed of database fragments • Located at different sites and can be replicated among various sites

  10. Distributed Processing and Distributed Databases • Distributed processing does not require a distributed database, but a distributed database requires distributed processing • Distributed processing may be based on a single database located on a single computer • For the management of distributed data to occur, copies or parts of the database processing functions must be distributed to all data storage sites • Both distributed processing and distributed databases require a network of interconnected components

  11. Characteristics of Distributed Management Systems • Application interface to interact with the end user, application programs and other DBMSs within the distributed database • Validation to analyze data requests for syntax correctness • Transformation to decompose complex requests into atomic data request components • Query optimization to find the best access strategy • Mapping to determine the data location of local and remote fragments • I/O interface to read or write data from or to permannet local storage

  12. Characteristics of Distributed Management Systems (cont’d.) • Formatting to prepare the data for presentation to the end user or to an application • Security to provide data privacy at both local and remote databases • Backup and recovery to ensure the availability and recoverability of the database in case of failure • DB administration features for the DBA • Concurrency control to manage simultaneous data access and to ensure data consistency across database fragments in the DDBMS • Transaction management to ensure the data move from one consistent state to another

  13. Characteristics of Distributed Management Systems (cont’d.) • Must perform all the functions of centralized DBMS • Must handle all necessary functions imposed by distribution of data and processing • Must perform these additional functions transparently to the end user

  14. The single logical database consists of two database fragments A1 and A2 located at sites 1 and 2 • All users “see” and query the database as if it were a local database, • The fact that there are fragments is completely transparent to the user

  15. DDBMS Components • Must include (at least) the following components: • Computer workstations/remote devices • Network hardware and software that reside in each device or w/s to interact and exchange data • Communications media that carry data from one site to another

  16. DDBMS Components (cont’d.) • Transaction processor (a.k.a application processor, transaction manager) • Software component found in each computer that receives and processes the application’s remote and local data requests • Data processor or data manager • Software component residing on each computer that stores and retrieves data located at the site • May be a centralized DBMS

  17. DDBMS Components (cont’d.) • The communication among the TPs and DPs is made possible through protocols which determine how the DDBMS will • Interface with the network to transport data and commands between the DPs and TPs • Synchronize all data received from DPs and route retrieved data to appropriate TPs • Ensure common DB functions in a distributed system e.g., data security, transaction management, concurrency control, data partitioning and synchronization and data backup and recovery

  18. Levels of Data and Process Distribution • Current systems classified by how process distribution and data distribution are supported

  19. Single-Site Processing, Single-Site Data • All processing is done on single CPU or host computer (mainframe, midrange, or PC) • All data are stored on host computer’s local disk • Processing cannot be done on end user’s side of system • Typical of most mainframe and midrange computer DBMSs • DBMS is located on host computer, which is accessed by dumb terminals connected to it • The TP and DP functions are embedded within the DBMS on the host computer • DBMS usually runs under a time-sharing, multitasking OS

  20. Multiple-Site Processing, Single-Site Data • Multiple processes run on different computers sharing single data repository • MPSD scenario requires network file server running conventional applications • Accessed through LAN • Many multiuser accounting applications, running under personal computer network

  21. Multiple-Site Processing, Single-Site Data • The TP on each w/s acts only as a redirector to route all network data requests to the file server • The end user sees the fileserver as just another hard drive • The end user must make a direct reference to the file server to access remote data • All record- and file-locking are performed at the end-user location • All data selection, search and update take place at the w/s • Entire files travel through the network for processing at the w/s which increases network traffic, slows response time and increases communication costs

  22. Multiple-Site Processing, Single-Site Data • Suppose the file server stores a CUSTOMER table containing 100,000 data rows, 50 of which have balances greater than $1,000 • The SQL command SELECT * FROM CUSTOMER WHERE CUST_BALANCE > 1000 causes all 100,000 rows to travel to end user w/s • A variation of MSP/SSD is client/server architecture • All DB processing is done at the server site

  23. Database Systems, 10th Edition

  24. Database Systems, 10th Edition Multiple-Site Processing, Multiple-Site Data • Fully distributed database management system • Support for multiple data processors and transaction processors at multiple sites • Classified as either homogeneous or heterogeneous • Homogeneous DDBMSs • Integrate multiple instances of the same DBMS over a network

  25. Multiple-Site Processing, Multiple-Site Data (cont’d.) • Heterogeneous DDBMSs • Integrate different types of centralized DBMSs over a network but all support the same data model • Fully heterogeneous DDBMSs • Support different DBMSs • Support different data models (relational, hierarchical, or network) • Different computer systems, such as mainframes and microcomputers

  26. Distributed Database Transparency Features • Allow end user to feel like database’s only user • Features include: • Distribution transparency • Transaction transparency • Failure transparency • Performance transparency • Heterogeneity transparency

  27. Distributed Database Transparency Features • Distribution Transparency • Allows management of physically dispersed database as if centralized • The user does not need to know • That the table’s rows and columns are split vertically or horizontally and stored among multiple sites • That the data are geographically dispersed among multiple sites • That the data are replicated among multiple sites

  28. Distributed Database Transparency Features • Transaction Transparency • Allows a transaction to update data at more than one network site • Ensures that the transaction will be either entirely completed or aborted in order to maintain database integrity • Failure Transparency • Ensures that the system will continue to operate in the event of a node or network failure • Functions that were lost will be picked up by another network node

  29. Distributed Database Transparency Features • Performance Transparency • Allows the system to perform as if it were a centralized DBMS • No performance degradation due to use of a network or platform differences • System will find the most cost effective path to access remote data • System will increase performance capacity without affecting overall performance when adding more TP or DP nodes • Heterogeneity Transparency • Allows the integration of several different local DBMSs under a common global schema • DDBMS translates the data requests from the global schema to the local DBMS schema

  30. Distribution Transparency • Allows management of physically dispersed database as if centralized • Three levels of distribution transparency: • Fragmentation transparency • End user does not need to know that a DB is partitioned • SELECT * FROM EMPLOYEE WHERE… • Location transparency • Must specify the database fragment names but not the location • SELECT * FROM E1 WHERE … UNION • Local mapping transparency • Must specify fragment name and location • SELECT * FROM E1 “NODE” NY WHERE … UNION

  31. Distribution Transparency • Supported by a distributed data dictionary (DDD) or distributed data catalog (DDC) • Contains the description of the entire database as seen by the DBA • It is distributed and replicated at the network nodes • The database description, known as the distributed global schema, is the common database schema used by local TPs to translate user requests into subqueries that will be processed by different DPs

  32. Transaction Transparency • Ensures database transactions will maintain distributed database’s integrity and consistency • Ensures transaction completed only when all database sites involved complete their part • Distributed database systems require complex mechanisms to manage transactions and ensure consistency and integrity

  33. Distributed Requests and Distributed Transactions • Remote request: single SQL statement accesses data from single remote database • The SQL statement can reference data only at one remote site

  34. Distributed Requests and Distributed Transactions • Remote transaction: composed of several requests, accesses data at single remote site • Updates PRODUCT and INVOICE tables at site B • Remote transaction is sent to B and executed there • Transaction can reference only one remote DP • Each SQL statement can reference only one remote DP and the entire transaction can reference and be executed at only one remote DP

  35. Distributed Requests and Distributed Transactions • Distributed transaction: requests data from several different remote sites on network • Each single request can reference only one local or remote DP site • The transaction as a whole can reference multiple DP sites because each request can reference a different site

  36. Distributed Requests and Distributed Transactions • Distributed request: single SQL statement references data at several DP sites • A DB can be partitioned into several fragments • Fragmentation transparency: reference one or more of those fragments with only one request

  37. Distributed Requests and Distributed Transactions • A single request can reference a physically partitioned table • CUSTOMER table is divided into two fragments C1 and C2 located at sites B and C

  38. Distributed Concurrency Control • Concurrency control is important in distributed environment • Multisite multiple-process operations create inconsistencies and deadlocked transactions • Suppose a transaction updates data at three DP sites • The first two DP sites complete the transaction and commit the data at each local DP • The third DP cannot commit the transaction but the first two sites cannot be rolled back since they were committed. This results in an inconsistent database

  39. Two-Phase Commit Protocol • Distributed databases make it possible for transaction to access data at several sites • 2PC guarantees that if a portion of a transaction can not be committed, all changes made at the other sites will be undone • Final COMMIT is issued after all sites have committed their parts of transaction • Requires that each DP’s transaction log entry be written before database fragment updated

  40. Two-Phase Commit Protocol • DO-UNDO-REDO protocol with write-ahead protocol • DO performs the operation and records the “before” and “after” values in the transaction log • UNDO reverses an operation using the log entries written by the DO portion of the sequence • REDO redoes an operation, using the log entries written by the DO portion • Requires a write-ahead protocol where the log entry is written to permanent storage before the actual operation takes place • 2PC defines the operations between the coordinator (transaction initiator) and one or more subordinates

  41. Two-Phase Commit Protocol • Phase 1: preparation • The coordinator sends a PREPARE TO COMMIT message to all subordinates • The subordinates receive the message, write the transaction log using the write-ahead protocol and send an acknowledgement message (YES/PREPARED TO COMMIT or NO/NOT PREAPRED ) to the coordinator • The coordinator make sure all nodes are ready to commit or it aborts the action

  42. Two-Phase Commit Protocol • Phase 2 The Final COMMIT • The coordinator broadcasts a COMMIT to all subordinates and waits for replies • Each subordinate receives the COMMIT and then updates the database using the DO protocol • The subordinates replay with a COMMITTED or NOT COMMITTED message to the coordinator • If one or more subordinates do not commit, the coordinator sends an ABORT message and the subordinates UNDO all changes

  43. Performance and Failure Transparency • Performance transparency • Allows a DDBMS to perform as if it were a centralized database; no performance degradation • Failure transparency • System will continue to operate in the case of a node or network failure • Query optimization • Minimize the total cost associated with the execution of a request (CPU, communication, I/O)

  44. Performance and Failure Transparency • In a DDBMS, transactions are distributed among multiple nodes. Determining what data are being used becomes more complex • Data distribution: determine which fragment to access, create multiple data requests to the chosen DPs, combine the responses and present the data to the application • Data Replication: data may be replicated at several different sites making the access problem even more complex as all copies must be consistent • Replica transparency - DDBMS’s ability to hide multiple copies of data from the user

More Related