1 introduction ddbms

59
Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/1 Outline Introduction What is a distributed DBMS Distributed DBMS Architecture Background Distributed Database Design Database Integration Semantic Data Control Distributed Query Processing Multidatabase query processing Distributed Transaction Management Data Replication Parallel Database Systems Distributed Object DBMS Peer-to-Peer Data Management Web Data Management Current Issues

Transcript of 1 introduction ddbms

Page 1: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/1

Outline• Introduction

➡ What is a distributed DBMS➡ Distributed DBMS Architecture

• Background• Distributed Database Design• Database Integration• Semantic Data Control• Distributed Query Processing• Multidatabase query processing• Distributed Transaction Management• Data Replication• Parallel Database Systems• Distributed Object DBMS• Peer-to-Peer Data Management• Web Data Management • Current Issues

Page 2: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/2

File Systems

program 1data description 1

program 2data description 2

program 3data description 3

File 1

File 2

File 3

Page 3: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/3

Database Management

database

DBMS

Applicationprogram 1(with datasemantics)

Applicationprogram 2(with datasemantics)

Applicationprogram 3(with datasemantics)

descriptionmanipulation

control

Page 4: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/4

Motivation

DatabaseTechnology

ComputerNetworks

integration distribution

integration

integration ≠ centralization

DistributedDatabaseSystems

Page 5: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/5

Distributed Computing•A number of autonomous processing elements (not necessarily

homogeneous) that are interconnected by a computer network and that cooperate in performing their assigned tasks.

•What is being distributed?➡ Processing logic➡ Function➡ Data➡ Control

Page 6: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/6

What is a Distributed Database System?A distributed database (DDB) is a collection of multiple, logically interrelated databases distributed over a computer network.

A distributed database management system (D–DBMS) is the software that manages the DDB and provides an access mechanism that makes this distribution transparent to the users.

Distributed database system (DDBS) = DDB + D–DBMS

Page 7: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/7

Centralized DBMS on a Network

Site 5

Site 1Site 2

Site 3Site 4

CommunicationNetwork

Page 8: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/8

Distributed DBMS Environment

Site 5

Site 1Site 2

Site 3Site 4

CommunicationNetwork

Page 9: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/9

Implicit Assumptions•Data stored at a number of sites each site logically consists of a

single processor.•Processors at different sites are interconnected by a computer

network not a multiprocessor system➡ Parallel database systems

•Distributed database is a database, not a collection of files data logically related as exhibited in the users’ access patterns➡ Relational data model

•D-DBMS is a full-fledged DBMS➡ Not remote file system, not a TP system

Page 10: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/10

Data Delivery Alternatives•Delivery modes

➡ Pull-only✦ Transfer of data from servers to clients is initiated by a client pull✦ Client request is received at a server, the server responds by locating

the requested information✦ Main characteristic of pull-based delivery is that the arrival of new data

items or updates to existing data items are carried out at a server without notification to clients

✦ Conventional DBMSs offer primarily pull-based data delivery➡ Push-only

✦ Transfer of data from servers to clients is initiated by a server push in the absence of any specific request from clients

✦ Main difficulty of the push-based approach is in deciding which data would be of common interest, and when to send them to clients

✦ Usefulness of server push depends heavily upon the accuracy of a server to predict the needs of clients.

✦ In push-based mode, servers disseminate information to either an unbounded set of clients (random broadcast) or selective set of clients (multicast).

Page 11: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/11

Data Delivery Alternatives•Delivery modes

➡ Hybrid✦ Combines the client-pull and server-push mechanisms✦ The transfer of information from servers to clients is first initiated by a

client pull (by posing the query)✦ The subsequent transfer of updated information to clients is initiated

by a server push•Frequency

➡ Periodic✦ Data are sent from servers to clients at regular intervals✦ Intervals can be defined by system default or by clients using their

profiles✦ Pull and push can be performed in periodic fashion✦ Periodic delivery is carried out on a regular and pre-specified repeating

schedule

➡ Conditional➡ Ad-hoc or irregular

•Communication Methods➡ Unicast➡ One-to-many

•Note: not all combinations make sense

Page 12: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/12

Data Delivery Alternatives•Frequency

➡ Conditional✦ Data are sent from servers whenever certain conditions installed by

clients in their profiles are satisfied✦ Such conditions can be as simple as a given time span or as

complicated as event-condition-action-rules.✦ Conditional delivery is mostly used in the hybrid or push-only delivery

systems✦ Using conditional push, data are sent out according to a pre-specified

condition, rather than any particular repeating schedule➡ Ad-hoc or irregular

✦ Adhoc delivery is irregular and is performed mostly in a pure pull-based system.

✦ Data are pulled from servers to clients in an ad-hoc fashion whenever clients request it

•Communication Methods➡ Unicast, One-to-many

Page 13: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/13

Distributed DBMS PromisesTransparent management of distributed, fragmented, and

replicated data Improved reliability/availability through distributed transactions

Distributed DBMSs are intended to improve reliability since they have replicated components and, thereby eliminate single points of failure.

The failure of a single site which makes one or more site unreachable, is not sufficient to bring down the entire system.

Improved performance Improved Performance of distributed DBMSs is typically based on

two points. Distributed DBMS fragments the conceptual database, enabling data

to be stored in close proximity to its point of use (also called data localization).

Easier and more economical system expansion

Ch.x/13

Page 14: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/14

Distributed DBMS Promises Improved performance has two potential advantages

Each site handle only a portion of the database, contention for CPU and I/O services is not as severe as for centralized databases.

Localization reduces remote access delays that are usually involved in wide area networks.

Full benefits of reduced contention and reduced communication overhead can be obtained only by a proper fragmentation and distribution of the database.

Ch.x/14

Page 15: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/15

Distributed DBMS PromisesEasier and more economical system expansion

Expansion can usually be handled by adding processing and storage power to the network.

One aspect of easier system expansion is economics. It normally costs much less to put together a system of “smaller” computers with the equivalent power of a single big machine.

Ch.x/15

Page 16: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/16

Types of Transparency•Data independence•Network transparency (or distribution transparency)

➡ Location transparency➡ Fragmentation transparency

•Replication transparency•Fragmentation transparency

Page 17: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/17

Transparency•Transparency is the separation of the higher level semantics of a

system from the lower level implementation issues.•Fundamental issue is to provide

data independence in the distributed environment

Logical Data Independence Immunity of user applications to changes in the logical structure (i.e.

schema) of the database Physical Data Independence

Hiding the details of storage structure from user applications When a user-application is written, it should not be concerned with the

details of physical data organization

Ch.x/17

Page 18: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/18

Transparency➡ Network (distribution) transparency

✦ In centralized database systems, the only available resource that needs to be shielded from the user is the data (i.e. the storage system)

✦ In distributed database environment, there is a second resource that needs to be managed i.e. network.

➡ Types of distribution transparency✦ Location transparency

✓ Command used to perform a task is independent of both the location of the data and system on which an operation is carried out

✦ Naming transparency✓ Unique name is provided for each object in the database.✓ In the absence of naming transparency, users are required to embed the location name (or an

identifier) as part of the object name.

Page 19: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/19

Transparency➡ Replication transparency

✦ Performance✦ Reliability✦ Availability✦ Data that are commonly accessed by one user can be placed on that user’s local

machine as well as on the machine of another user with the same access requirements. This increases the locality of reference.

➡ Fragmentation transparency✦ horizontal fragmentation: selection✦ vertical fragmentation: projection✦ hybrid

Ch.x/19

Page 20: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/20

Example

Page 21: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/2121

Design Issues• Distributed Database Design• Distributed Directory Management• Distributed Query Processing• Distributed Concurrency Control• Distributed Deadlock Management• Reliability of Distributed DBMS• Replication• Relationship among problems

Page 22: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/2222

Distributed Database Design•Distributed Database Design

➡ How the database and the applications that run against it should be placed across the sites.

➡ Two alternatives to place data✦ Replicated & non-replicated (partitioned) database distribution

➡ In the partitioned scheme, the database is divided into a number of disjoint partitions each of which is placed at a different site.

➡ Replicated designs can be either fully replicated (also called fully duplicated) where the entire database is stored at each site, or partially replicated (partially duplicated) where each partition of the database is stored at more than one site, but not all the sites.

➡ The two fundamental design issues are✦ Fragmentation✦ Distribution

Page 23: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/23

Distributed Database Design➡ The two fundamental design issues are

✦ Fragmentation✓ The separation of the database into partitions called fragments

✦ Distribution✓ The optimum distribution of fragments

➡ Research mostly involves mathematical programming in order to minimize the combined cost of storing the database, processing transactions against it, and message communication among sites.✦ Optimization problem

➡ General formulation is NP-hard

Page 24: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/24

Distributed Directory Management•A directory contains information (such as descriptions and

locations) about data items in the database.•A directory may be global to the entire DDBS or local to each site

➡ It can be centralized at one site or distributed over several sites

Ch.1/24

Page 25: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/25

Distributed Query Processing•Query processing deals with designing algorithms that analyze

queries and convert them into a series of data manipulation operations.➡ The problem is how to decide on a strategy for executing each

query over the network in the cost-effective way•The factors to be considered are the distribution of data,

communication costs, and lack of sufficient locally available information.

•The objective is to optimize where the inherent parallelism is used to improve the performance of executing the transaction.

Ch.1/25

Page 26: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/26

Distributed Concurrency Control•Concurrency control involves the synchronization of accesses to

the distributed database, such that the integrity of the database is maintained.

•One not only has to worry about the integrity of a single database, but also about the consistency of multiple copies of the database.➡ The condition that requires all the values of multiple copies of every

data item to converge to the same value is called mutual consistency.

•Two general classes are➡ Pessimistic

✦ Synchronizing the execution of user requests before the execution starts

➡ Optimistic✦ Executing the requests and then checking if the execution has

compromised the consistency of the database.•Two fundamental primitives that can be used with both

approaches are➡ Locking, timestamping

Ch.1/26

Page 27: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/27

Distributed Concurrency Control

➡ Locking✦ Based on the mutual exclusion of accesses to data items

➡ Time stamping✦ Transaction executions are ordered based on timestamps

➡ Hybrid Algorithms✦ Attempt to combine the two basic mechanisms

• In computer science, mutual exclusion refers to the requirement of ensuring that no two concurrent processes are in their critical section at the same time; it is a basic problem in concurrency control. Here, a critical section refers to a period when the process accesses a shared resource, such as shared memory.

• In concurrent programming, a critical section is a piece of code that accesses a shared resource (data structure or device) that must not be concurrently accessed by more than one thread of execution. A critical section will usually terminate in fixed time, and a thread, task, or process will have to wait for a fixed time to enter it.

Ch.1/27

Page 28: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/28

Distributed Deadlock Management•The deadlock problem in DDBSs is similar in nature to that

encountered in operating systems.•The competition among users for access to a set of resources

(data, in this case) can result in a deadlock if the synchronization mechanism is based on locking.

• In an operating system, a deadlock is a situation which occurs when a process or thread enters a waiting state because a resource requested is being held by another waiting process, which in turn is waiting for another resource. If a process is unable to change its state indefinitely because the resources requested by it are being used by another waiting process, then the system is said to be in a deadlock.

Ch.1/28

Page 29: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/29

Reliability of Distributed DBMS•One of the potential advantages of distributed systems is

improved reliability and availability.• It is important that mechanisms be provided to ensure the

consistency of the database as well as to detect failures and recover from them.

Ch.1/29

Page 30: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/30

Replication• If the distributed database is replicated, it is necessary to

implement protocols that ensure the consistency of the replicas i.e., copies of the same data item have the same value.

•Theses protocols can be eager in that they force the updates to be applied to all the replicas before the transaction completes,

•Or they may be lazy so that the transaction updates one copy (called the master) from which updates are propagated to the others after the transaction completes.

Ch.1/30

Page 31: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/31

DirectoryManagement

Relationship among Problems

Reliability

DeadlockManagement

QueryProcessing

ConcurrencyControl

DistributionDesign

Page 32: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/32

Relationship Between Issues•Naturally, these problems are not isolated from one another.•The design of distributed databases affects many areas.• It affects directory management, because the definition of

fragments and their placement determine the contents of the directory as well as the strategies that may be employed to manage them.

•The same information (i.e., fragment structure and placement) is used by the query processor to determine the query evaluation strategy.

•The replication of fragments when they are distributed affects the concurrency control strategies that might be employed.

•There is a strong relationship among the concurrency control problem, the deadlock management problem, and reliability issue. This is to be expected, since they are usually called transaction management problem.

•Reliability mechanisms involve both local recovery techniques and distributed reliability protocols.

Page 33: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/33

Architecture•Defines the structure of the system

➡ components of the system are identified➡ functions of each component is defined➡ interrelationships and interactions among these components are

defined•Three “reference” architectures for a distributed DBMS are:

➡ Client / Server Systems➡ Peer to peer distributed DBMS➡ Multidatabase systems

Page 34: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/34

ANSI/SPARC Architecture

ExternalSchema

ConceptualSchema

InternalSchema

Internal view

Users

External view

Conceptual view

External view

External view

Page 35: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/3535

ANSI/SPARC Architecture•External View

➡ Which is that of the end user, who might be a programmer➡ Which is concerned with how users view the database➡ An individual user’s view represents the portion of the database

that will be accessed by that user as well as the relationships that the user would like to see among the data.

• Internal View➡ That of the system or machine➡ Which deals with the physical definition and organization of data➡ The location of data on different storage devices and the access

mechanisms used to reach and manipulate data

Page 36: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/3636

ANSI/SPARC Architecture•Conceptual View

➡ That of the enterprise➡ Which is an abstract definition of the database➡ “Real World” view of the enterprise being modeled in the database➡ It is supposed to represent the data and relationships among data

•The separation of the external schemas from the conceptual schema enables logical data independence

•While the separation of conceptual schema from the internal schema allows physical data independence

•For each of these views, an appropriate schema definition is required.

Page 37: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/37

Generic DBMS Architecture

Page 38: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/3838

Generic DBMS Architecture•The interface layer manages the interface to the applications.•The control layer controls the query by adding semantic integrity

predicates and authorization predicates.➡ The output of this layer is an enriched query in the high-level

language accepted by the interface.•The query processing layer maps the query into an optimized

sequence of lower-level operations. This layer is concerned with performance.➡ It decomposes the query into a tree of algebra operations and tries

to find the “optimal” ordering of the operations.➡ The output of this layer is a query expressed in lower-level code

(algebra operations).•The execution layer directs the execution of the access plans,

including transaction management and synchronization of algebra operations.

Page 39: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/3939

Generic DBMS Architecture• It interprets the relational operations by calling the data access

layer through the retrieval and update requests. •The data access layer manages the data structures that

implement the files, indices etc.➡ It also manages the buffers by caching the most frequently

accessed data.➡ Careful use of this layer minimizes the access to disks to get or

write data.•The consistency layer manages concurrency control and logging

for update requests.➡ This layer allows transaction, system, and media recovery after

failure.

Page 40: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/40

DBMS Implementation Alternatives

Page 41: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/41

Architectural Models for Distributed DBMSs• Consider the possible ways in which a distributed DBMS may be architected.• Use a classification that organizes the systems as characterized with respect to

➡ The autonomy of local systems➡ Their distribution➡ Their heterogeneity

• Distribution➡ Whether the components of the system are located on the same machine or not

• Heterogeneity➡ Various levels (hardware, communications, operating system)➡ DBMS important one

✦ data model, query language, transaction management algorithms• Autonomy

➡ Autonomy refers to the distribution of control, not of data.➡ It indicates the degree to which individual DBMSs can operate independently.➡ Autonomy is a function of a number of factors such as whether the component

systems (i.e. individual DBMSs) exchange information, whether they can independently execute transactions, and whether one is allowed to modify them.

Page 42: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/42

Autonomy➡ Requirements of an autonomous system are as follows:

✦ The local operations of the individual DBMSs are not affected by their participation in the distributed system.

✦ The manner in which the individual DBMSs process queries and optimize them should not be affected by the execution of global queries that access multiple databases.

✦ System consistency should not be compromised when individual DBMSs join or leave the distributed system.

➡ The dimensions of autonomy can be specified as follows:✦ Design autonomy: Ability of a component DBMS to decide on issues

related to its own design.✦ Communication autonomy: Ability of a component DBMS to decide

whether and how to communicate with other DBMSs.✦ Execution autonomy: Ability of a component DBMS to execute local

operations in any manner it wants to.

Page 43: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/43

Autonomy➡ Classification that covers the important aspects of these features

✦ Tight-integration✓ Single image of the entire database is available to any user who wants to share the

information, which may reside in multiple databases.✓ In these systems, the data managers are implemented so that one of them is in

control of the processing of each user request even if that request is serviced by more than one data manager.

✦ Semiautonomous systems✓ DBMSs that can operate independently, but have decided to participate in a

federation to make their local data shareable.✓ DBMSs determine what parts of their own database they will make accessible to users

of other DBMSs.✓ They are not fully autonomous systems because they need to be modified to enable

them to exchange information with one another. ✦ Total isolation

✓ Where the individual systems are stand-alone DBMSs that know neither of the existence of other DBMSs nor how to communicate them.

✓ In such systems, the processing of user transactions that access multiple databases is especially difficult since there is no global control over the execution of individual DBMSs.

Page 44: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/44

Distribution➡ Distribution dimension of the taxonomy deals with data.

✦ Physical distribution of data over multiple sites✦ The user sees the data as one logical pool

➡ There are a number of ways DBMSs have been distributed. Abstract these into two classes✦ Client / Server Distribution

✓ Client / server distribution concentrates data management duties at servers while the client focus on providing the application environment including the user interface

✓ The communication duties are shared between the client machines and servers.✦ Peer-to-peer distribution (or full distribution)

✓ There is no distinction of client machines verses servers✓ Each machine has full DBMS functionality and communicate with other machines

to execute queries and transactions.

Page 45: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/45

Heterogeneity•Heterogeneity may occur in various forms

➡ Ranging from hardware heterogeneity and differences in networking protocols to variations in data managers.

•Representing data with different modeling tools creates heterogeneity because of the inherent expressive powers and limitations of individual data models.

•Heterogeneity in query languages not only involves the use of completely different data access paradigms in different data models but also covers differences in languages even when the individual system use the same data model.➡ Although SQL is now the standard relational query language, there

are many different implementations and every vendor’s language has a slightly different flavor.

Page 46: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/46

Architectural Alternatives•The distribution of databases•Their possible heterogeneity•Their autonomy

➡ Are orthogonal issues

Ch.1/46

Page 47: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/47

Client / Server Systems•Distinguish the functionality that needs to be provided and divide

these functions into two classes:➡ Server Functions➡ Client Functions

•This provides a two-level architecture which makes it easier to manage the complexity of modern DBMSs and the complexity of distribution.

Ch.1/47

Page 48: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/48

Client/Server Architecture

Page 49: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/49

Client-Server Architectures•The communication between the clients and the server(s) is at

the level of SQL Statements.•The client passes SQL queries to the server without trying to

understand or optimize them.•The server does most of the work and returns the result relation

to the client.➡ Multiple Client / Single Server

✦ Heavy Client Systems➡ Multiple Client / Multiple Server Approach

✦ Concentrates the data management functionality at the servers.✦ Transparency of data access is provided at the server interface, leading

to “light clients”.

Page 50: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/50

Database Server

Page 51: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/51

Distributed Database Servers

Page 52: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/52

Datalogical Distributed DBMS Architecture

...

...

...

ES1 ES2 ESn

GCS

LCS1 LCS2 LCSn

LIS1 LIS2 LISn

Page 53: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/53

Datalogical Distributed DBMS Architecture•There needs to be an individual internal schema definition at

each site, which we call local internal schema (LIS).•The enterprise view of the data is described by the global

conceptual schema (GCS)➡ It describes the logical structure of the data at all the sites.

•To handle data fragmentation and replication, the local organization of data at each site needs to be described.➡ Therefore, there needs to be a third layer called the local

conceptual schema.•The global conceptual schema is the union of the local

conceptual schemas.•User applications and user access to the database is supported

by external schemas (ESs).

Page 54: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/54

Peer-to-Peer Component Architecture

Database

DATA PROCESSORUSER PROCESSOR

USER

Userrequests

Systemresponses

ExternalSchema

Use

r In

terf

ace

Han

dler

GlobalConceptual

Schema

Sem

anti

c D

ata

Cont

rolle

r

Glo

bal

Exec

utio

nM

onit

or

SystemLog

Loca

l Rec

over

yM

anag

er

LocalInternalSchema

Runt

ime

Supp

ort

Proc

esso

r

Loca

l Que

ryPr

oces

sor

LocalConceptual

Schema

Glo

bal Q

uery

Opt

imiz

er

GD/D

Page 55: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/55

Peer to Peer Component Architecture•The user interface handler is responsible for interpreting user

commands as they come in, and formatting the result data as it is sent to the user.

•The semantic data controller uses the integrity constraints and authorizations that are defined as part of the global conceptual schema.

•The global query optimizer and decomposer determines an execution strategy to minimize a cost function, and translates the global queries into local ones using the global and local conceptual schemas as well as the global directory.

•The global query optimizer is responsible for generating the best strategy to execute distributed join operations.

•The distributed execution monitor coordinates the distributed execution of the user request. The execution monitor is also called the distributed transaction manager.

Page 56: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/56

Peer to Peer Component Architecture•The local query optimizer is responsible for choosing the best

access path to access any data item.•The local recovery manager is responsible for making sure that

the local database remains consistent even when failures occur.•The run-time support processor is the interface to the operating

system and contains the database buffer (or cache) manager, which is responsible for maintaining the main memory buffers and managing the data accesses.

Page 57: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/57

Datalogical Multi-DBMS Architecture

...

GCS… …

GES1

LCS2 LCSn…

…LIS2 LISn

LES11 LES1n LESn1 LESnm

GES2 GESn

LIS1

LCS1

Page 58: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/58

MDBS Components & Execution

Multi-DBMSLayer

DBMS1 DBMS3DBMS2

GlobalUser

Request

LocalUser

RequestGlobal

SubrequestGlobal

SubrequestGlobal

Subrequest

LocalUser

Request

Page 59: 1 introduction ddbms

Distributed DBMS © M. T. Özsu & P. Valduriez Ch.1/5959

Description• In the case of logically integrated distributed DBMS, the global

conceptual schema defines the conceptual view of the entire database

•While in the case of distributed multi-DBMSs, it represents only the collection of some of the local databases that each local DBMS wants to share.

•The definition of global database is different in MDBSs than in distributed DBMSs.

• In distributed DBMS, global database is equal to the union of local databases

• In Multi-DBMSs, it is a subset of the same union.