Title: Overview of Storage and Indexing
1Overview of Storage and Indexing
2Motivation
- DBMS stores vast quantities of data
- Data is stored on external storage devices and
fetched into main memory as needed for processing - Page is unit of information read from or written
to disk. (in DBMS, a page may have size 8KB or
more). - Data on external storage devices
- Disks Can retrieve random page at fixed cost
- But reading several consecutive pages is
much cheaper than reading them in random order - Tapes Can only read pages in sequence
- Cheaper than disks used for archival storage
- Cost of page I/O dominates cost of typical
database operations
3Structure of a DBMSLayered Architecture
These layers must consider concurrency control
and recovery
- external storage access
- Disk space manager manages persistent data
- Buffer manager stages pages from external storage
to main memory buffer pool. - File and index layers make calls to buffer
manager.
4Files versus Indices
- File organization
- Method of arranging a file of records on external
storage. - Record id (rid) is sufficient to physically
locate record - Indexes
- Indexes are data structures that allow to find
record ids of records with given values in index
search key fields
5File Organizations
- Heap (random order) files Suitable when typical
access is a file scan retrieving all records. - Sorted Files Best if records must be retrieved
in some order, or only a range of records is
needed. - Indexes Data structures to organize records to
optimize certain kinds of retrieval operations. - Speed up searches for a subset of records, based
on values in certain (search key) fields - Updates are much faster than in sorted files.
6Alternatives for Data Entry k in Index
- Data Entry Records stored in index file
- Given search key value k, provide for efficient
retrieval of all data entries k with value k. - In a data entry k , alternatives include that we
can store - alternative 1 Full data record with key value
k, or - alternative 2 ltk, rid of data record with
search key value kgt, or - alternative 3 ltk, list of rids of data records
with search key kgt - Choice of above 3 alternative data entries is
orthogonal to indexing technique used to locate
data entries. - Example indexing techniques B trees, hash-based
structures, etc.
7Alternatives for Data Entries
- Alternative 1 Full data record with key value k
- Index structure is file organization for data
records (instead of a Heap file or sorted file). - At most one index on a given collection of data
records can use Alternative 1. Otherwise, data
records are duplicated, leading to redundant
storage and potential inconsistency. - If data records are very large, this implies size
of auxiliary information in index is also large.
8Alternatives for Data Entries
- Alternatives 2 (ltk, ridgt) and 3 (ltk,
list-of-ridsgt) - Data entries typically much smaller than data
records. - Comparison
- Both better than Alternative 1 with large data
records, especially if search keys are small. - Alternative 3 more compact than Alternative 2,
but leads to variable sized data entries even if
search keys are of fixed length.
9Index Classification
- Primary vs. secondary index
- If search key contains primary key, then called
primary index. - Clustered vs. unclustered index
- If order of data records is the same as, or
close to, order of data entries, then called
clustered index.
10Index Clustered vs Unclustered
- Observation 1
- Alternative 1 implies clustered. True ?
- Observation 2
- In practice, clustered also implies Alternative 1
(since sorted files are rare). - Observation 3
- A file can be clustered on at most one search
key. - Observation 4
- Cost of retrieving data records through index
varies greatly based on whether index is
clustered or not !!
11Index Clustered vs Unclustered
- Observation 1
- Alternative 1 implies clustered. True ?
- Observation 2
- In practice, clustered also implies Alternative 1
(since sorted files are rare). - Observation 3
- A file can be clustered on at most one search
key. - Observation 4
- Cost of retrieving data records through index
varies greatly based on whether index is
clustered or not !!
12Clustered vs. Unclustered Index
Index entries
UNCLUSTERED
direct search for
CLUSTERED
data entries
Data entries
Data entries
(Index File)
(Data file)
Data Records
Data Records
Suppose Alternative (2) is used for data entries.
13Clustered vs. Unclustered Index
- Use Alternative (2) for data entries
- Data records are stored in Heap file.
- To build clustered index, first sort the Heap
file - Overflow pages may be needed for inserts.
- Thus, order of data recs is close to (not
identical to) sort order.
Index entries
UNCLUSTERED
direct search for
CLUSTERED
data entries
Data entries
Data entries
(Index File)
(Data file)
Data Records
Data Records
14B Tree Indexes
Non-leaf
Pages
Leaf
Pages (Sorted by search key)
- Index leaf pages contain data entries, and are
chained (prev next) - Index non-leaf pages have index entries only
used to direct searches
index entry
P
K
P
K
P
P
K
m
0
1
2
1
m
2
15Example B Tree
Note how data entries in leaf level are sorted
Root
17
Entries lt 17
Entries gt 17
27
30
13
5
2
3
39
38
7
5
8
22
24
27
29
14
16
33
34
- Find 29? 28? All gt 15 and lt 30
- Insert/delete Find data entry in leaf, then
change it.
16Hash-Based Indexes
- Index is a collection of buckets.
- Bucket primary page plus zero or more overflow
pages. - Buckets contain data entries.
- Hashing function h
- h(r) bucket in which data entry for record r
belongs. - h looks at search key fields of r.
- No need for index entries due to one-level
index file - Good for equality selections.
17Cost Model for Our Analysis
- Notes
- We ignore CPU costs, for simplicity.
- Measuring number of page I/Os ignores gains of
pre-fetching a sequence of pages - Thus even I/O cost is only approximated.
- Average-case analysis based on simplistic
assumptions.
- Good enough to show overall trends!
18Cost Model for Our Analysis
- Variables
- B The number of data pages
- R Number of records per page
- D (Average) time to read or write disk page
19Comparing File Organizations
- Heap files (random order insert at eof)
- Sorted files, sorted on ltage, salgt
- Clustered B tree file, Alternative (1), search
key ltage, salgt - Heap file with unclustered B tree index on
search key ltage, salgt (Alt 2) - Heap file with unclustered hash index on search
key ltage, salgt (Alt 2)
20Operations to Compare
- Scan Fetch all records from disk
- Equality search
- Range selection
- Insert a record
- Delete a record
21Assumptions in Our Analysis
- Heap Files
- Equality selection on key exactly one match.
- Sorted Files
- Files compacted after deletions.
- Indexes
- Alt (2), (3) data entry size/pointers 10
size of record - Hash No overflow buckets.
- 80 page occupancy gt File size 1.25 data size
- Tree 67 occupancy (this is typical).
- Implies file size 1.5 data size
- Scans
- Leaf levels of a tree-index are chained.
- Index data-entries plus actual file scanned for
unclustered indexes. - Range searches
- We use tree indexes to restrict set of data
records fetched, but ignore hash indexes.
22Cost of Operations
- Several assumptions underlie these (rough)
estimates!
23Summary
- Many alternative file organizations exist, each
appropriate in some situation. - If selection queries are frequent, sorting the
file or building an index is important. - Hash-based indexes only good for equality search.
- Sorted files and tree-based indexes best for
range search also good for equality search. - Files rarely kept sorted in practice B tree
index is better. - Index is a collection of data entries plus a way
to quickly find entries with given key values.
24Summary
- Data entries can be
- actual data records,
- ltkey, ridgt pairs, or
- ltkey, rid-listgt pairs.
- Can have several indexes on a given file of data
records, each with a different search key. - Indexes can be classified as clustered vs.
unclustered, - Differences have important consequences for
utility/performance of query processing