Presentation is loading. Please wait.

Presentation is loading. Please wait.

Database System Architectures

Similar presentations


Presentation on theme: "Database System Architectures"— Presentation transcript:

1 Database System Architectures

2 Database System Architectures
Classification based on underlying systems and requirements Client – Server Parallel Databases Distributed Databases

3 Centralized Servers Single System managing whole databases
Generally involves: High end machines Mainframe servers Generally categorized as Single users system Multiple user system

4 Centralized Servers

5 Client – Server Systems

6 Client Server System Server systems satisfy requests generated at m client systems, whose general structure is shown below:

7 Client Server Systems Client – Server Requirement?
Availability of networking amount systems Sharing of tasks among client and server Safety / Security Load Balancing

8 Client-Server Systems
Database functionality can be divided into: Back-end: manages access structures, query evaluation and optimization, concurrency control and recovery. Front-end: consists of tools such as forms, report-writers, and graphical user interface facilities.

9 Client-Server Systems (Cont.)
Advantages of replacing mainframes with networks of workstations or personal computers connected to back-end server machines: better functionality for the cost flexibility in locating resources and expanding facilities better user interfaces easier maintenance

10 Server System Architecture
Server systems can be broadly categorized into two kinds: transaction servers which are widely used in relational database systems, and data servers, used in object-oriented database systems

11 Transaction Servers Also called query server systems or SQL server systems Clients send requests to the server Transactions are executed at the server Results are shipped back to the client. Requests are specified in SQL, and communicated to the server through a remote procedure call (RPC) mechanism. JDBC / ODBC are used to perform these activities

12 Transaction System Processes (Cont.)

13 Data Servers Used in high-speed LANs, in cases where
The clients are comparable in processing power to the server The tasks to be executed are compute intensive. Data are shipped to clients where processing is performed, and then shipped results back to the server. This architecture requires full back-end functionality at the clients.

14 Data Servers (Cont.) Page-shipping versus item-shipping Locking
Smaller unit of shipping  more messages Fetching items even before they are requested (Blocks as units of I/O) Locking Can grant locks on requested and prefetched items; with page shipping, transaction is granted lock on whole page. Locks on a prefetched item can be P{called back} by the server, and returned by client transaction if the prefetched item has not been used.

15 Data Servers (Cont.) Data Caching Lock Caching
Data can be cached at client even in between transactions But check that data is up-to-date before it is used (cache coherency) Lock Caching Locks can be retained by client system even in between transactions Server calls back locks from clients when it receives conflicting lock request. Client returns lock once no local transaction is using it.

16 Parallel Servers

17 Parallel Servers Parallel Server Requirement? Response Time Throughput
Processing huge data Scalability

18 Parallel Servers Architecture

19 Shared Memory Processors and disks have access to a common memory, typically via a bus or through an interconnection network. Extremely efficient communication between processors — data in shared memory can be accessed by any processor without having to move it using software. Downside – architecture is not scalable beyond 32 or 64 processors since the bus or the interconnection network becomes a bottleneck Widely used for lower degrees of parallelism (4 to 8). Low fault tolerance

20 Shared Disk All processors can directly access all disks via an interconnection network, but the processors have private memories. The memory bus is not a bottleneck Architecture provides a degree of fault-tolerance — if a processor fails, the other processors can take over its tasks since the database is resident on disks that are accessible from all processors. Downside: bottleneck now occurs at interconnection to the disk subsystem. Shared-disk systems can scale to a somewhat larger number of processors, but communication between processors is slower.

21 Shared Nothing Node consists of a processor, memory, and one or more disks. Processors at one node communicate with another processor at another node using an interconnection network. A node functions as the server for the data on the disk or disks the node owns. Examples: Teradata, Tandem, Oracle-n CUBE Data accessed from local disks (and local memory accesses) do not pass through interconnection network, thereby minimizing the interference of resource sharing. Shared-nothing multiprocessors can be scaled up to thousands of processors without interference. Main drawback: cost of communication and non-local disk access; sending data involves software interaction at both ends.

22 Hierarchical Combines characteristics of shared-memory, shared-disk, and shared-nothing architectures. Top level is a shared-nothing architecture – nodes connected by an interconnection network, and do not share disks or memory with each other. Each node of the system could be a shared-memory system with a few processors. Alternatively, each node could be a shared-disk system, and each of the systems sharing a set of disks could be a shared-memory system. Reduce the complexity of programming such systems by distributed virtual-memory architectures Also called non-uniform memory architecture (NUMA)

23 Distributed Systems

24 Distributed Systems Data spread over multiple machines (also referred to as sites or nodes). Network interconnects the machines Data shared by users on multiple machines

25 Distributed Databases
Homogeneous distributed databases Same software/schema on all sites, data may be partitioned among sites Goal: provide a view of a single database, hiding details of distribution Heterogeneous distributed databases Different software/schema on different sites Goal: integrate existing databases to provide useful functionality

26 Trade-offs in Distributed Systems
Sharing data – users at one site able to access the data residing at some other sites. Autonomy – each site is able to retain a degree of control over data stored locally. Higher system availability through redundancy — data can be replicated at remote sites, and system can function even if a site fails. Disadvantage: added complexity required to ensure proper coordination among sites. Software development cost. Greater potential for bugs. Increased processing overhead.


Download ppt "Database System Architectures"

Similar presentations


Ads by Google