/
A History and Evaluation of System R A History and Evaluation of System R

A History and Evaluation of System R - PowerPoint Presentation

sherrill-nordquist
sherrill-nordquist . @sherrill-nordquist
Follow
378 views
Uploaded On 2017-06-25

A History and Evaluation of System R - PPT Presentation

Mosharaf Chowdhury EECS 582 W16 1 11316 Navigational Database Model Records and objects are found by following links or references from other objects Imperative users tell how to get the results ID: 563417

582 eecs system w16 eecs 582 w16 system data relational phase process quanta lock model queries introduced actual ibm

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "A History and Evaluation of System R" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

A History and Evaluation of System R

Mosharaf Chowdhury

EECS 582 – W16

1

1/13/16Slide2

Navigational Database Model

Records and objects are found by following links or references from other objects

Imperative: users tell how to get the resultsDependent on data structure

Charles BachmanIntegrated Data Store (IDS) around 1963 while at GE

1/13/16

EECS 582 – W16

2Slide3

Relational Database Model

Data independence

Not tied to underlying data representationUsers specify

what to do not howDeclarative

Edgar F.

Codd

PhD from University of Michigan!

Invented relational model while at IBM in 1970

1/13/16

EECS 582 – W16

3Slide4

System R is an Experimental Prototype

For SQL (SEQUEL)For relational model

For demonstrating performance similar to that of navigational modelWith the added benefit of data independence

1/13/16

EECS 582 – W16

4Slide5

Goals

RDBMS

Multiple usersGeneral system

Evolvable and dynamic

View maintenance

Fault tolerance

High performance

1/13/16

EECS 582 – W16

5Slide6

Phase Zero

Throwaway prototype tied to XRMXRM: Extended

(N-ary) Relational MemorySingle user

No fault-toleranceNo joins but sub-queries are supportedQuery optimizer minimized the number of tuples fetched

Without considering the actual cost

1/13/16

EECS 582 – W16

6Slide7

Takeaway from Phase Zero (Among Others)

1/13/16

EECS 582 – W16

7

“strongly felt conclusion was that it is a very good idea, in a project the size of System R, to plan to throw away the initial implementation

.”

-

A History and Evaluation of System

R”Slide8

Phase One

Separation of access and query representation methods

RSS (Research Storage System) and RDS (Relational Data System)Led to modularityRSS replaced XRM and opened to the path toward multi-user

Locking subsystem was introduced with different levels of lockingViews were introduced (to some extent) to limit/control accessRecovery subsystem for fault-tolerance

1/13/16

EECS 582 – W16

8Slide9

Phase One Optimizations

Compilation of (sub-)queries into machine language

Reusing them by mixing and matching across many queriesIndexes using B-TreesEasier scans

Query optimizerBased on actual costCan use different ways to join based on the contextShadow pages and checkpoints

As opposed to Write-Ahead Logs (WAL

)

1/13/16

EECS 582 – W16

9Slide10

Convoy Effect

When a process loses its time quanta, it can go to sleep/wait while holding the lock

Everyone waiting for the lock gets blocked!When a process releases a lock, the first in the queue gets itEven when this process has the time quanta, it must wait!

Waste of CPU timeAllow other processes to get the lock but don’t give it right away The original process can now get it within the same quanta if needed

If it goes to sleep, someone already has permissions to use it

1/13/16

EECS 582 – W16

10Slide11

What Happened After IBM System R?

They basically abandoned it

Oracle was born

1/13/16EECS 582 – W16

11