33
10 Lecture 10 Distributed Database Management Systems

Lecture 10 distributed database management system

Embed Size (px)

DESCRIPTION

 

Citation preview

Page 1: Lecture 10   distributed database management system

10

Lecture 10

Distributed Database Management Systems

Page 2: Lecture 10   distributed database management system

10

2

Evolution of DDBMS

• Decentralized database management systems (DDBMS) – Interconnected computer systems– Data/processing functions reside on multiple sites

• 1970’s: Centralized DBMS• 1980’s: Social and Technical Changes

– Ad hoc capability required– Decentralized management structure common

• 1990’s: New forces– Internet and the World Wide Web used for data access and

distribution– Data analysis through data mining and data warehousing

Page 3: Lecture 10   distributed database management system

10

3

DDBMS Advantages

• Data located near site with greatest demand• Faster data access• Faster data processing• Growth facilitation• Improved communications• Reduced operating costs• User-friendly interface• Less danger of single-point failure• Processor independence

Page 4: Lecture 10   distributed database management system

10

4

DDBMS Disadvantages

• Complexity of management and control• Security• Lack of standards• Increased storage requirements• Greater difficulty in managing data environment• Increased training costs

Page 5: Lecture 10   distributed database management system

10

5

Distributed Processing Shares database’s logical processing among

physically, networked independent sites

Figure 10.1

Page 6: Lecture 10   distributed database management system

10

6

Distributed Database Stores logically related database over physically

independent sites

Figure 10.2

Page 7: Lecture 10   distributed database management system

10

7

Distributed Database vs. Distributed Processing

• Distributed processing – Does not require distributed database

– May be based on a single database on single computer

– Copies or parts of database processing functions must be distributed to all data storage sites

• Distributed database – Requires distributed processing

• Both – Require a network to connect components

Page 8: Lecture 10   distributed database management system

10

8

Functions of DDBMS• Application/end user interface• Validation to analyze data requests• Transformation to determine request components• Query optimization to find the best access strategy• Mapping to determine the data location• I/O interface to read or write data• Formatting to prepare the data for presentation • Security to provide data privacy• Backup and recovery• DB Administration• Concurrency Control• Transaction Management

Page 9: Lecture 10   distributed database management system

10

9

Centralized Database

Figure 10.3

Page 10: Lecture 10   distributed database management system

10

10

Fully Distributed Database Management System

Figure 10.4

Page 11: Lecture 10   distributed database management system

10

11

DDBMS Components

• Computer workstations • Network hardware and software components• Communications media• Transaction processor (TP)

– Also called application manager (AP) or transaction manager (TM)

• Data processor (DP)– Also called data manager (DM)

Page 12: Lecture 10   distributed database management system

10

12

Distributed Database Components

Figure 10.5

Page 13: Lecture 10   distributed database management system

10

13

DDBMS Protocols

• Interface with network to transport data and commands between DPs and TPs

• Synchronize data received from DPs and route to appropriate TPs

• Ensure common database functions – Security

– Concurrency control

– Backup and recovery

Page 14: Lecture 10   distributed database management system

10

14

Levels of Data and Process Distribution

Database systems can be classified based on process distribution and data distribution

Table 10.1

Page 15: Lecture 10   distributed database management system

10

15

Single-Site Processing, Single-Site Data (SPSD)

• All processing on single CPU or host computer• All data are stored on host computer disk• DBMS located on the host computer• DBMS accessed by dumb terminals• Typical of mainframe and minicomputer DBMSs• Typical of 1st generation of single-user

microcomputer database

Page 16: Lecture 10   distributed database management system

10

16

Single-Site Processing, Single-Site Data (con’t.)

Figure 10.6

Page 17: Lecture 10   distributed database management system

10

17

Multiple-Site Processing, Single-Site Data (MPSD)

• Requires network file server• Applications accessed through LAN• Variation known as client/server architecture

Figure 10.7

Page 18: Lecture 10   distributed database management system

10

18

Multiple-Site Processing, Multiple-Site Data (MPMD)

• Fully distributed DDBMS with support for multiple DPs and TPs at multiple sites– Homogeneous I

• Integrate one type of centralized DBMS over the network

– Heterogeneous • Integrate different types of centralized DBMSs over a

network

Page 19: Lecture 10   distributed database management system

10

19

Heterogeneous Distributed Database Scenario

Figure 10.8

Page 20: Lecture 10   distributed database management system

10

20

Distributed DB Transparency

• Allows end users to feel like only database user• Hides complexities of distributed database• Transparency features

– Distribution

– Transaction

– Failure

– Performance

– Heterogeneity

Page 21: Lecture 10   distributed database management system

10

21

Distribution Transparency

• Allows management of a physically dispersed database as though it were centralized

• Three Levels – Fragmentation transparency– Location transparency– Local mapping transparency

Table 10.2

Page 22: Lecture 10   distributed database management system

10

22

Transaction Transparency

• Ensures transactions maintain integrity and consistency

• Completed only if all involved database sites complete their part of the transaction

• Management mechanisms– Remote request

– Remote transaction

– Distributed transaction

– Distributed request

Page 23: Lecture 10   distributed database management system

10

23

Remote Request

Figure 10.10

Page 24: Lecture 10   distributed database management system

10

24

Remote Transaction

Figure 10.11

Page 25: Lecture 10   distributed database management system

10

25

Distributed Transaction

Figure 10.12

Page 26: Lecture 10   distributed database management system

10

26

Distributed Requests

Figure 10.13

Page 27: Lecture 10   distributed database management system

10

27

Distributed Requests (con’t.)

Figure 10.14

Page 28: Lecture 10   distributed database management system

10

28

Distributed Concurrency Control

• Multisite, multiple-process operations more likely to create data inconsistencies and deadlocked transactions

• Problems– Transaction committed by local DP

– One DP could not commit transaction’s result

– Yields inconsistent database

Page 29: Lecture 10   distributed database management system

10

29

Two-Phase Commit Protocol

• DO-UNDO-REDO protocol– Write-ahead protocol

– Two kinds of nodes• Coordinator

• Subordinates

• Phases– Preparation

• Coordinator sends message to all subordinates

• Confirms all are ready to commit or abort

– Final Commit• Ensures all subordinates have committed or aborted

Page 30: Lecture 10   distributed database management system

10

30

Performance Transparency and Query Optimization

• Objective: Minimize total cost associated with execution of request

• Main costs– Access time – Communication – CPU time

• Basis for query optimization algorithms

– Optimum execution order– Sites accessed to minimize communication costs

• Dynamic or static optimization• Statistically based vs. rule-based query optimization

algorithms

Page 31: Lecture 10   distributed database management system

10

31

Distributed Database Design

• Partition database into fragments– Horizontal

– Vertical

– Mixed

• Fragments to replicate– Storage of data copies at multiple sites

– Fully, partially, unreplicated databases

• Data allocation– Where to locate data

– Centralized, partitioned, replicated

Page 32: Lecture 10   distributed database management system

10

32

Client/Server Advantages Over DDBMS

• Client/server less expensive• Client/server solutions allow use of

microcomputer’s GUI• More people with PC skills than mainframe skills• PC is well established in workplace• Numerous data analysis and query tools exist • Considerable cost advantages to off-loading

application development

Page 33: Lecture 10   distributed database management system

10

33

Client/Server Disadvantages

• Creates more complex environment with different platforms

• Increased number of users and sites creates security problems

• Training issues become more complex and expensive