+ All Categories
Home > Documents > Storing Data: Disks and Files Disks and DBMS Design

Storing Data: Disks and Files Disks and DBMS Design

Date post: 13-Feb-2017
Category:
Upload: dangkhue
View: 241 times
Download: 3 times
Share this document with a friend
8
1 Storing Data: Disks and Files Yanlei Diao UMass Amherst Feb 15, 2007 Slides Courtesy of R. Ramakrishnan and J. Gehrke 2 Memory Hierarchy Primary storage: Main Memory (and cache) Random access , fast; usually volatile Main memory for currently used data. Secondary storage: Magnetic Disk Random access , relatively slow; nonvolatile Disk for the main database. Tertiary storage: Tape Sequential scan (read the entire tape for the last type); nonvolatile Tapes for archiving older versions of the data. 3 Disks and DBMS Design DBMS stores data on disks. This has major implications on DBMS design! READ: transfer data from disk to main memory (RAM) for data processing . WRITE: transfer data from RAM to disk for persistent storage . Both are high-cost operations, relative to in-memory operations, so must be planned carefully!
Transcript
Page 1: Storing Data: Disks and Files Disks and DBMS Design

1

Storing Data: Disks and Files

Yanlei DiaoUMass Amherst

Feb 15, 2007

Slides Courtesy of R. Ramakrishnan and J. Gehrke

2

Memory Hierarchy

Primary storage: Main Memory (and cache) Random access, fast; usually volatile Main memory for currently used data.

Secondary storage: Magnetic Disk Random access, relatively slow; nonvolatile Disk for the main database.

Tertiary storage: Tape Sequential scan (read the entire tape for the last

type); nonvolatile Tapes for archiving older versions of the data.

3

Disks and DBMS Design

DBMS stores data on disks. This has major implications on DBMS design!

READ: transfer data from disk to main memory (RAM)for data processing.

WRITE: transfer data from RAM to disk for persistentstorage.

Both are high-cost operations, relative to in-memoryoperations, so must be planned carefully!

Page 2: Storing Data: Disks and Files Disks and DBMS Design

4

Why Not Store Everything in Main Memory?

Main memory is volatile. We want data to besaved between runs. (Obviously!)

Costs too much. E.g., $100 will buy you either1GB of RAM or 160GB of disk.

32-bit addressing limitation. 232 bytes can be directly addressed in memory. Number of objects cannot exceed this number.

5

Basics of Disks

Unit of storage and retrieval: disk block or page. A disk block/page is a contiguous sequence of bytes. Size is a DBMS parameter, 4KB or 8KB.

Like RAM, disks support direct access to a page. Unlike RAM, time to retrieve a page varies!

It depends upon the location on disk. Therefore, relative placement of pages on disk has

major impact on DBMS performance!

6

Components of a Disk

Platters

Spindle Platters

•E.g. spin at 7200 rpm(revolutions per minute)

An array of disk headsconnected by an armassembly.

Spindle

Disk head

Arm movement

Armassembly

Arm assembly moves inor out to position a head on adesired location. Only one head reads/writes at any one time.

Page 3: Storing Data: Disks and Files Disks and DBMS Design

7

Data on Disk

Platters

Spindle

Disk head

Arm movement

Armassembly

A platter consists ofconcentric rings called tracks.

Single vs. double-sidedplatters.

Tracks under heads make acylinder (imaginary!).

Each track is divided intosectors (whose size is fixed).

Block (page) size is set tobe a multiple of sector size.

Sector

Track

8

Accessing a Disk Page

Time to access (read/write) a disk block: seek time (moving arms to position disk head on track) rotational delay (waiting for block to rotate under head) transfer time (actually moving data to/from disk surface)

Seek time and rotational delay dominate. Seek time varies from about 1 to 20msec Rotational delay varies from 0 to 10msec Transfer rate is less than 1msec for a 4KB page

Key to lower I/O cost: reduce seek/rotationdelays! Hardware vs. software solutions?

9

Arranging Pages on Disk

`Next’ block concept: blocks on the same track, followed by blocks on the same cylinder, followed by blocks on an adjacent cylinder

Blocks in a file should be arrangedsequentially on disk (by `next’), to minimizeseek and rotational delay. Scan of the file is a sequential scan. For a sequential scan, pre-fetching several pages at

a time can be a big win.

Page 4: Storing Data: Disks and Files Disks and DBMS Design

10

Disk Space Manager

Disk space manager is the lowest layer of DBMSmanaging space on disk.

Higher levels call upon this layer to: allocate/de-allocate a page or a sequence of pages read/write a page

Requests for a sequence of pages are satisfied byallocating the pages sequentially on disk! Higher levels don’t need to know how this is done,

or how free space is managed.

11

Files

Access method layer offers an abstraction ofdisk-resident data: a file of records residingon multiple pages A number of fields are organized in a record A collection of records are organized in a page A collection of pages are organized in a file

12

Record Format: Fixed Length

Record type: the number of fields and type of eachfield, stored in the system catalog.

Fixed length record: (1) the number of fields is fixed,(2) each field has a fixed length.

Store fields consecutively in a record. Finding i’th field does not require a scan of the record.

L1 L2 L3 L4

F1 F2 F3 F4

Base address (B) Address = B+L1+L2

Page 5: Storing Data: Disks and Files Disks and DBMS Design

13

Record Format: Variable Length Variable length record: (1) number of fields is fixed, (2)

some fields are of variable length

2nd choice offers direct access to i’th field, efficient storage of nulls; but small directory overhead.

F1 F2 F3 F4

S1 S2 S3 S4 E4Array of FieldOffsets

$ $ $ $

Scan

Fields Delimitedby Special Symbols

F1 F2 F3 F4

14

Page Format

How to store a collection of records on a page? Consider a page as a collection of slots, one for

each record. A record is identified by rid = <page id, slot #> Record ids (rids) are used in indexes

(Alternatives 2 and 3).

15

Page Format: Fixed Length Records

Moving records for free space management changesrid! Unacceptable for performance.

Slot 1Slot 2

Slot N

PACKED

N

FreeSpace

number of records

. . .

M10. . .

M ... 3 2 1

UNPACKED, BITMAP

Slot 1Slot 2

Slot N

Slot M

11

numberof slots

. . .

Page 6: Storing Data: Disks and Files Disks and DBMS Design

16

Page Format: Variable Length Records

Can move records on a page without changing rids; so,attractive for fixed-length records too. (level of indirection)

Page iRid = (i,N)

Rid = (i,2)

Rid = (i,1)

20 16 24 N Pointerto startof freespace

SLOT DIRECTORY

N . . . 2 1 # slots

17

Files of Records

Page or block is OK when doing I/O, but higherlevels of DBMS operate on records and files ofrecords.

File: A collection of pages, each containing acollection of records. Must support: insert/delete/modify records read a particular record (specified using record id) scan all records (possibly with some conditions on the

records to be retrieved)

Files in DBMS versus Files in OS?

18

Unordered (Heap) Files

Simplest file structure contains records in noparticular order.

As a file grows and shrinks, disk pages areallocated and de-allocated.

To support record level operations, we must: keep track of the pages in a file keep track of free space on pages keep track of the records on a page Many alternatives for keeping track of this.

Page 7: Storing Data: Disks and Files Disks and DBMS Design

19

Heap File Implemented as a List

DBMS: table of (heap file name, header page id), stored in aknown place.

Two doubly linked lists, for full pages & pages with space. Each page contains 2 `pointers’ plus data.

Upon insertion, scan the list of pages with space, or ask diskspace manager to allocate a new page

HeaderPage

DataPage

DataPage

DataPage

DataPage

DataPage

DataPage Pages with

Free Space

Full Pages

20

Heap File Using a Page Directory

A directory entry per page: (a pointer to the page, thenumber of free bytes on the page).

The directory is a collection of pages; linked list is just oneimplementation. Much smaller than linked list of all HF pages!

Search for space for insertion: fewer I/Os

DataPage 1

DataPage 2

DataPage N

HeaderPage

DIRECTORY

21

System Catalogs For each index:

structure (e.g., B+ tree) and search key fields

For each relation: name, file name, file structure (e.g., Heap file) attribute name and type, for each attribute index name, for each index integrity constraints

For each view: view name and definition

Plus statistics, authorization, buffer pool size, etc. Catalogs are themselves stored as relations!

Page 8: Storing Data: Disks and Files Disks and DBMS Design

22

Attr_Cat(attr_name, rel_name, type, position)attr_name rel_name type positionattr_name Attribute_Cat string 1rel_name Attribute_Cat string 2type Attribute_Cat string 3position Attribute_Cat integer 4sid Students string 1name Students string 2login Students string 3age Students integer 4gpa Students real 5fid Faculty string 1fname Faculty string 2sal Faculty real 3

Catalogs are themselves stored as relations!

23

Summary

Disks provide cheap, non-volatile storage. Random access But cost depends on location of page on disk Important to arrange data sequentially to minimize

seek and rotation delays. Variable length record format with field offset

directory offers support for direct access to i’thfield and null values.

Slotted page format supports variable lengthrecords and allows records to move on page.

24

Summary (Contd.)

File organization keeps track of pages in a file,supports abstraction of a collection of records. Pages (full or with free space) identified using linked

list or directory structure.

Indexes support efficient retrieval of recordsbased on the values in some fields.

Catalog relations store information aboutrelations, indexes and views. (Information that iscommon to all records in a given collection.)


Recommended