1 enterprise programming distributed dbmss – concepts and design

83
1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

Upload: william-heath

Post on 28-Dec-2015

234 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

1

ENTERPRISE PROGRAMMING

Distributed DBMSs – Concepts and Design

Page 2: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

2

DISTRIBUTED DATABASE SYSTEMS

Concepts. Advantages and disadvantages of distributed

databases. Functions and architecture for a DDBMS. Distributed database design. Levels of transparency. Comparison criteria for DDBMSs.

Page 3: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

3

Concepts

Distributed DatabaseA logically interrelated collection of shared data (and a description of this data), physically distributed over a computer network.

Distributed DBMSSoftware system that permits the management of the distributed database and makes the distribution transparent to users.

Page 4: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

4

Concepts

Collection of logically-related shared data. Data split into fragments. Fragments may be replicated. Fragments/replicas allocated to sites. Sites linked by a communications network. Data at each site is under control of a DBMS. DBMSs handle local applications autonomously. Each DBMS participates in at least one global

application.

Page 5: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

5

CONCEPTS

LOCAL APPLICATION

– Those that do not require data from other sites.

GLOBAL APPLICATION

– Those that requires data from other sites.

Page 6: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

6

STRUCTURE OF DISTRIBUTED DATABASE A distributed database system consists of a collection of

sites, each of which maintain a local database system.

Each site is able to process local transactions, those transactions that access data only in a single site

In addition a site may participate in the execution of global transactions, those transaction that access data in several sites. The execution of global transactions requires communication along the sites.

Page 7: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

7

STRUCTURE OF THE DISTRIBUTED DATABASES

The sites in the system can be connected physically in a variety of ways.

The major differences among these configurations involve:

– Installation cost: The cost of physically linking the site

– Communication Cost: - The cost in time and money from sending a message from site A to site B

– Reliability : The frequency with which a link or site fails

– Availability : The degree to which data can be accessed despite the failure of some links or sites.

Page 8: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

8

Distributed DBMS

© Pearson Education Limited 1995, 2005

Page 9: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

9

Illustration of concepts

Consider a banking system consisting of four (4) branches located in Amman, Nablus, Jenin and Ramallah.

Each branch has its own computer with a database

consisting of accounts maintained at that branch. Each such installation is a site. There exists one single site (headquarters, Amman)

which maintains information about all branches.

Page 10: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

10

Illustration of concepts

Each branch maintains (among others) a relation deposit (Deposit-Scheme) where:

Deposit-Scheme = (branch-name, account-number, customer-name, balance)

The site containing information about the four branches maintains the relation branch (Branch-scheme), where:

Branch-scheme = (branch-name, assets, branch-city)

There are other relations which are ignored for purposes of our example.

Page 11: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

11

Illustration of concepts

Consider the transaction to add JD 50 to account number 177 located at Nablus. If the transaction was initiated at Nablus branch, then it is considered local; otherwise, it is considered global.

A transaction to transfer JD 50 from account 177 to account 305, which is located at Ramallah Branch, is a global branch, since accounts in two different sites are accessed as a result of its execution.

Page 12: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

12

Illustration of concepts

What makes the example a distributed database system ?– The four sites are aware of each other– Each branch provides an environment for executing

both local and global transactions.

For now assume that each site is running the same distributed database management software.

Page 13: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

13

OBJECTIVES OF DISTRIBUTED DATABASE

A major objective of distributed databases is to provide ease of access to data for users at many different locations.

The distributed database system must provide what is called location transparency:- a user (or user program) using data need not know the location of the data.

Ideally the user is unaware of the distribution of data, and all data in the network appear as single logical database stored at one site. In ideal case, a single query can join data from tables in multiple sites as if the data were all in one site.

Page 14: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

OBJECTIVE OF DISTRIBUTED DATABASE

A second objective of distributed database is local autonomy. This is the capability to administer a local database and to operate independently when connection to other nodes have failed.

Each site has the ability to control local data, administer security, log transactions, recover when local failures occur ad provide full access to local data to local users when any central or coordinating site cannot operate.

There is no reliance on central site. 14

Page 15: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

15

Distributed Processing

A centralized database that can be accessed over a computer network.

Page 16: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

16

Parallel DBMS

A DBMS running across multiple processors and disks designed to execute operations in parallel, whenever possible, to improve performance.

Based on premise that single processor systems can no longer meet requirements for cost-effective scalability, reliability, and performance.

Parallel DBMSs link multiple, smaller machines to achieve same throughput as single, larger machine, with greater scalability and reliability.

Page 17: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

17

Parallel DBMS

Main architectures for parallel DBMSs are:

– Shared memory:» Tightly coupled architecture in which multiple processors within a single

system share system memory

– Shared disk:» Is a loosely-coupled architecture optimized for applications that are

inherently centralized and require high availability and performance. Shared disks are sometimes referred to as clusters.

– Shared nothing:» Often known as massively parallel processing (MPP), is a multiple

processor architecture in which each processor is part of a complete system, with its own memory and disk storage. The database is partitioned among all disks on each system associated with the database, and data is transparently available to users on all systems.

Page 18: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

18

Parallel DBMS

(a) shared memory

(b) shared disk

(c) shared nothing

© Pearson Education Limited 1995, 2005

Page 19: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

19

Advantages of DDBMSs

Reflects organizational structure Improved shareability and local autonomy Improved availability

– Availability is the probability that the system is continuously available during a time interval.

Improved reliability

– The probability that a system is running (not down) at certain point in time.

Page 20: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

Advantages of DDBMS

Improved performance

– Data is kept closer to where it is needed most. Data localization reduces the contention for CPU and I/O services and simultaneously reduces access delays involved in wide area networks.

– Smaller databases exist at each site. As a result, local queries and transactions accessing data at a single site have better performance because of the smaller databases.

– Inter-query and intra-query parallelism can be achieved by executing multiple queries at different sites.

20

Page 21: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

Advantages of DDBMS

Economics Modular growth

– Expansion of system in terms of adding more data, increasing database sizes or adding more processors is much easier.

21

Page 22: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

22

Disadvantages of DDBMSs

Complexity Cost Security Integrity control more difficult Lack of standards Lack of experience Database design more complex

Page 23: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

23

Types of DDBMS

Homogeneous DDBMS Heterogeneous DDBMS

Page 24: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

24

Homogeneous DDBMS

All sites use same DBMS product. Much easier to design and manage. Approach provides incremental growth and

allows increased performance.

Page 25: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

25

Heterogeneous DDBMS

Sites may run different DBMS products, with possibly different underlying data models.

Occurs when sites have implemented their own databases and integration is considered later.

Translations required to allow for:– Different hardware.– Different DBMS products.– Different hardware and different DBMS

products. Typical solution is to use gateways.

Page 26: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

26

Multidatabase System (MDBS)

DDBMS in which each site maintains complete autonomy.

DBMS that resides transparently on top of existing database and file systems and presents a single database to its users.

Allows users to access and share data without requiring physical database integration.

Un-federated MDBS (no local users) and federated MDBS.

© Pearson Education Limited 1995, 2005

Page 27: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

27

Overview of Networking

Network - Interconnected collection of autonomous computers, capable of exchanging information.

Local Area Network (LAN) intended for connecting computers at same site.

Wide Area Network (WAN) used when computers or LANs need to be connected over long distances.

WAN relatively slow and less reliable than LANs. DDBMS using LAN provides much faster response time than one using WAN.

Page 28: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

28

Overview of Networking

Page 29: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

29

Functions of a DDBMS

Expect DDBMS to have at least the functionality of a DBMS.

Also to have following functionality:– Extended communication services.– Extended Data Dictionary.– Distributed query processing.– Extended concurrency control.– Extended recovery services.

Page 30: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

30

Reference Architecture for DDBMS

Due to diversity, no accepted architecture equivalent to ANSI/SPARC 3-level architecture.

A reference architecture consists of:– Set of global external schemas.

– Global conceptual schema (GCS).» A logical description of the whole database as if it were not distributed.

Corresponds to the conceptual schema in the ANSI-SPARC architecture. Contains definitions of entities, relationships, constraints , securities and integrity information.

– Fragmentation schema and allocation schema.» Description of how data is to be logically partitioned

– Set of schemas for each local DBMS conforming to 3-level ANSI/SPARC. Each local DBMS has its own set of schemas.

Some levels may be missing, depending on levels of transparency supported.

Page 31: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

31

Reference Architecture for DDBMS

Page 32: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

32

Reference Architecture for MDBS

In DDBMS, GCS is union of all local conceptual schemas.

In FMDBS, GCS is subset of local conceptual schemas (LCS), consisting of data that each local system agrees to share.

GCS of tightly coupled system involves integration of either parts of LCSs or local external schemas.

FMDBS with no GCS is called loosely coupled.

Page 33: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

33

Reference Architecture for Tightly-Coupled FMDBS

Page 34: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

34

COMPONENT ARCHITECTURE FOR A DBMS

Consist of 4 major components– Local DBMS (LDBMS)

» Standard DBMS responsible for controlling the local data at each site that has a database. Has its own system catalog that stores information about data held at that site.

– DATA COMMUNICATION COMPONENT (DC)» The DC component is the software that enables all the sites to communicate

with each other. Contains information about links and sites.

– GLOBAL SYSTEM CATALOGUE (GSC)» Same functionality as the system catalogue of a centralized system. GSC holds

information specific to the distributed nature of the system, such as fragmentation, allocation, replication and allocation schemas. A fully replicated GSC compromises site autonomy as every modification to the GSC has to be communicated to all other sites. A centralized GSC also compromises site autonomy and is vulnerable to failure of the site.

– DISTRIBUTED DBMS COMPONENT» This is the controlling unit of the entire system.

Page 35: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

35

Components of a DDBMS

Page 36: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

36

Distributed Database Design

Three key issues:

– Fragmentation,– Allocation,– Replication.

Page 37: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

37

Distributed Database Design

FragmentationRelation may be divided into a number of sub-relations, which are then distributed. 2 types:-Horizontal are subsets of tuples and vertical are subsets of attributes

AllocationEach fragment is stored at site with “optimal” distribution.

ReplicationCopy of fragment may be maintained at several sites.

Page 38: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

38

Fragmentation

Definition and allocation of fragments carried out strategically to achieve:– Locality of Reference.– Improved Reliability and Availability.– Improved Performance.– Balanced Storage Capacities and Costs.– Minimal Communication Costs.

Involves analyzing most important applications, based on quantitative/qualitative information.

© Pearson Education Limited 1995, 2005

Page 39: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

39

Fragmentation

Quantitative information may include:– frequency with which an application is run;– site from which an application is run;– performance criteria for transactions and

applications.

Qualitative information may include transactions that are executed by application, type of access (read or write), and predicates of read operations.

Page 40: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

40

Data Allocation

Four alternative strategies regarding placement of data:– Centralized,– Partitioned (or Fragmented),– Complete Replication,– Selective Replication.

Page 41: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

41

Data Allocation

Centralized: Consists of single database and DBMS stored at one site with users distributed across the network.

Partitioned: Database partitioned into disjoint fragments, each fragment assigned to one site.

Complete Replication: Consists of maintaining complete copy of database at each site.

Selective Replication: Combination of partitioning, replication, and centralization.

Page 42: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

42

Comparison of Strategies for Data Distribution

Page 43: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

43

Why Fragment?

Usage– Applications work with views rather than

entire relations. Efficiency

– Data is stored close to where it is most frequently used.

– Data that is not needed by local applications is not stored.

Page 44: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

44

Why Fragment?

Parallelism– With fragments as unit of distribution,

transaction can be divided into several subqueries that operate on fragments.

Security– Data not required by local applications is not

stored and so not available to unauthorized users.

Page 45: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

45

Why Fragment?

Disadvantages

– Performance,– Integrity.

Page 46: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

46

Correctness of Fragmentation

Three correctness rules:

– Completeness,– Reconstruction,– Disjointness.

Page 47: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

47

Correctness of Fragmentation

Completeness

If relation R is decomposed into fragments R1, R2, ... Rn, each data item that can be found in R must appear in at least one fragment.

Reconstruction Must be possible to define a relational operation

that will reconstruct R from the fragments. Reconstruction for horizontal fragmentation is

Union operation and Join for vertical .

Page 48: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

48

Correctness of Fragmentation

Disjointness If data item di appears in fragment Ri, then it

should not appear in any other fragment. Exception: vertical fragmentation, where primary

key attributes must be repeated to allow reconstruction.

For horizontal fragmentation, data item is a tuple. For vertical fragmentation, data item is an

attribute.

Page 49: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

49

Types of Fragmentation

Four types of fragmentation:

– Horizontal,– Vertical,– Mixed,– Derived.

Other possibility is no fragmentation:

– If relation is small and not updated frequently, may be better not to fragment relation.

Page 50: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

50

Horizontal and Vertical Fragmentation

Page 51: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

51

Mixed Fragmentation

Page 52: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

52

Horizontal Fragmentation

Consists of a subset of the tuples of a relation. Defined using Selection operation of relational

algebra:

p(R)

For example:

P1 = type=‘House’(PropertyForRent)

P2 = type=‘Flat’(PropertyForRent)

Page 53: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

53

Horizontal Fragmentation

This strategy is determined by looking at predicates used by transactions.

Involves finding set of minimal (complete and relevant) predicates.

Set of predicates is complete, if and only if, any two tuples in same fragment are referenced with same probability by any application.

Predicate is relevant if there is at least one application that accesses fragments differently.

Page 54: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

54

Fragmentation Example

In the PropertyForRent table– If the only requirement is to select

tuples from PropertyForRent based on the property type, the set {type = ‘House’, type=‘Flat’} is complete.

– The set {type = ‘House’} is not complete– With this requirement, the predicate

(city=‘Aberdeen’) would not be relevant.

Page 55: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

55

Vertical Fragmentation

Consists of a subset of attributes of a relation. Defined using Projection operation of relational

algebra:

a1, ... ,an(R)

For example:

S1 = staffNo, position, sex, DOB, salary(Staff)

S2 = staffNo, fName, lName, branchNo(Staff)

Determined by establishing affinity of one attribute to another.

Page 56: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

56

Mixed Fragmentation

Consists of a horizontal fragment that is vertically fragmented, or a vertical fragment that is horizontally fragmented.

Defined using Selection and Projection operations of relational algebra:

p(a1, ... ,an(R)) or

a1, ... ,an(σp(R))

Page 57: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

57

Example - Mixed Fragmentation

S1 = staffNo, position, sex, DOB, salary(Staff)

S2 = staffNo, fName, lName, branchNo(Staff)

S21 = branchNo=‘B003’(S2)

S22 = branchNo=‘B005’(S2)

S23 = branchNo=‘B007’(S2)

Page 58: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

58

Derived Horizontal Fragmentation

A horizontal fragment that is based on horizontal fragmentation of a parent relation.

Ensures that fragments that are frequently joined together are at same site.

Defined using Semijoin operation of relational algebra:

Ri = R F Si, 1 i w

Page 59: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

59

Example - Derived Horizontal Fragmentation

S3 = branchNo=‘B003’(Staff)

S4 = branchNo=‘B005’(Staff)

S5 = branchNo=‘B007’(Staff)

Could use derived fragmentation for Property:

Pi = PropertyForRent branchNo Si, 3 i 5

Page 60: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

60

Derived Horizontal Fragmentation

If relation contains more than one foreign key, need to select one as parent.

Choice can be based on fragmentation used most frequently or fragmentation with better join characteristics.

Page 61: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

61

Distributed Database Design Methodology

1. Use normal methodology to produce a design for the global relations.

2. Examine topology of system to determine where databases will be located.

3. Analyze most important transactions and identify appropriateness of horizontal/vertical fragmentation.

4. Decide which relations are not to be fragmented.

5. Examine relations on 1 side of relationships and determine a suitable fragmentation schema. Relations on many side may be suitable for derived fragmentation.

Page 62: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

62

Transparencies in a DDBMS

Distribution Transparency

– Fragmentation Transparency– Location Transparency– Replication Transparency– Local Mapping Transparency– Naming Transparency

Page 63: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

63

Transparencies in a DDBMS

Transaction Transparency

– Concurrency Transparency– Failure Transparency

Performance Transparency

– DBMS Transparency

DBMS Transparency

Page 64: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

64

Distribution Transparency

Distribution transparency allows user to perceive database as single, logical entity.

If DDBMS exhibits distribution transparency, user does not need to know:– data is fragmented (fragmentation transparency),

– location of data items (location transparency),

– otherwise call this local mapping transparency.

With replication transparency, user is unaware of replication of fragments .

Page 65: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

65

Naming Transparency

Each item in a DDB must have a unique name. DDBMS must ensure that no two sites create a

database object with same name. One solution is to create central name server.

However, this results in:– loss of some local autonomy;– central site may become a bottleneck;– low availability; if the central site fails,

remaining sites cannot create any new objects.

Page 66: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

66

Naming Transparency

Alternative solution - prefix object with identifier of site that created it.

For example, Branch created at site S1 might be named S1.BRANCH.

Also need to identify each fragment and its copies. Thus, copy 2 of fragment 3 of Branch created at site

S1 might be referred to as S1.BRANCH.F3.C2.

However, this results in loss of distribution transparency.

Page 67: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

67

Naming Transparency

An approach that resolves these problems uses aliases for each database object.

Thus, S1.BRANCH.F3.C2 might be known as LocalBranch by user at site S1.

DDBMS has task of mapping an alias to appropriate database object.

Page 68: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

68

Transaction Transparency

Ensures that all distributed transactions maintain distributed database’s integrity and consistency.

Distributed transaction accesses data stored at more than one location.

Each transaction is divided into number of subtransactions, one for each site that has to be accessed.

DDBMS must ensure the indivisibility of both the global transaction and each of the subtransactions.

Page 69: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

69

Example - Distributed Transaction

T prints out names of all staff, using schema defined above as S1, S2, S21, S22, and S23. Define three subtransactions TS3, TS5, and TS7 to represent agents at sites 3, 5, and 7.

Page 70: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

70

Concurrency Transparency

All transactions must execute independently and be logically consistent with results obtained if transactions executed one at a time, in some arbitrary serial order.

Same fundamental principles as for centralized DBMS.

DDBMS must ensure both global and local transactions do not interfere with each other.

Similarly, DDBMS must ensure consistency of all subtransactions of global transaction.

Page 71: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

71

Classification of Transactions

In IBM’s Distributed Relational Database Architecture (DRDA), four types of transactions:– Remote request– Remote unit of work– Distributed unit of work– Distributed request.

Page 72: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

72

Classification of Transactions

Page 73: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

73

Concurrency Transparency

Replication makes concurrency more complex. If a copy of a replicated data item is updated,

update must be propagated to all copies. Could propagate changes as part of original

transaction, making it an atomic operation. However, if one site holding copy is not

reachable, then transaction is delayed until site is reachable.

Page 74: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

74

Concurrency Transparency

Could limit update propagation to only those sites currently available. Remaining sites updated when they become available again.

Could allow updates to copies to happen asynchronously, sometime after the original update. Delay in regaining consistency may range from a few seconds to several hours.

Page 75: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

75

Failure Transparency

DDBMS must ensure atomicity and durability of global transaction.

Means ensuring that subtransactions of global transaction either all commit or all abort.

Thus, DDBMS must synchronize global transaction to ensure that all subtransactions have completed successfully before recording a final COMMIT for global transaction.

Must do this in presence of site and network failures.

Page 76: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

76

Performance Transparency

DDBMS must perform as if it were a centralized DBMS. – DDBMS should not suffer any performance

degradation due to distributed architecture.– DDBMS should determine most cost-effective

strategy to execute a request.

Page 77: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

77

Performance Transparency

Distributed Query Processor (DQP) maps data request into ordered sequence of operations on local databases.

Must consider fragmentation, replication, and allocation schemas.

DQP has to decide:– which fragment to access;– which copy of a fragment to use;– which location to use.

Page 78: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

78

Performance Transparency

DQP produces execution strategy optimized with respect to some cost function.

Typically, costs associated with a distributed request include:

– I/O cost;– CPU cost;– communication cost.

Page 79: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

79

Performance Transparency - Example

Property(propNo, city) 10000 records in London

Client(clientNo,maxPrice) 100000 records in Glasgow

Viewing(propNo, clientNo) 1000000 records in London

SELECT p.propNo

FROM Property p INNER JOIN

(Client c INNER JOIN Viewing v ON c.clientNo = v.clientNo)

ON p.propNo = v.propNo

WHERE p.city=‘Aberdeen’ AND c.maxPrice > 200000;

Page 80: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

80

Performance Transparency - Example

Assume: Each tuple in each relation is 100 characters

long. 10 renters with maximum price greater than

£200,000. 100 000 viewings for properties in Aberdeen. Computation time negligible compared to

communication time.

Page 81: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

81

Performance Transparency - Example

Page 82: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

82

Date’s 12 Rules for a DDBMS

0. Fundamental Principle

To the user, a distributed system should look exactly like a nondistributed system.

1. Local Autonomy

2. No Reliance on a Central Site

3. Continuous Operation

4. Location Independence

5. Fragmentation Independence

6. Replication Independence

Page 83: 1 ENTERPRISE PROGRAMMING Distributed DBMSs – Concepts and Design

83

Date’s 12 Rules for a DDBMS

7. Distributed Query Processing8. Distributed Transaction Processing9. Hardware Independence10. Operating System Independence11. Network Independence12. Database Independence

Last four rules are ideals.

END OF CLASS