alternative file organizations
play

Alternative File Organizations Many alternatives exist, each ideal - PDF document

Alternative File Organizations Many alternatives exist, each ideal for some situation , and not so good in others: File Organizations and Indexing Heap files: Suitable when typical access is a file scan retrieving all records. Sorted


  1. Alternative File Organizations Many alternatives exist, each ideal for some situation , and not so good in others: File Organizations and Indexing – Heap 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. – Hashed Files: Good for equality selections. � File is a collection of buckets. Bucket = primary page plus zero or more overflow pages. � Hashing function h : h ( r ) = bucket in which record r belongs. h looks at only some of the fields of r , called the search fields. Database Management Systems, R. Ramakrishnan and J. Gehrke 1 Database Management Systems, R. Ramakrishnan and J. Gehrke 2 Desired Operations Cost Model for Our Analysis We ignore CPU costs, for simplicity: � Scan records – B: The number of data pages � Equality search – R: Number of records per page � Range search – D: (Average) time to read or write disk page � Insert record – Measuring number of page I/O’s ignores gains of pre-fetching blocks of pages; thus, even I/O cost is � Delete record only approximated. – Average-case analysis; based on several simplistic assumptions. � Good enough to show the overall trends! Database Management Systems, R. Ramakrishnan and J. Gehrke 3 Database Management Systems, R. Ramakrishnan and J. Gehrke 4 Assumptions in Our Analysis Cost of Operations Heap Sorted Hashed � Single record insert and delete. File File File Scan all recs BD BD 1.25 BD � Heap Files: Equality Search 0.5 BD D log 2 B D – Equality selection on key; exactly one match. – Insert always at end of file. Range Search BD D (log 2 B + # of 1.25 BD pages with � Sorted Files: matches) – Files compacted after deletions. Insert 2D Search + BD 2D – Selections on sort field(s). Delete Search + D Search + BD 2D � Hashed Files: � Several assumptions underlie these (rough) estimates! – No overflow buckets, 80% page occupancy. Database Management Systems, R. Ramakrishnan and J. Gehrke 5 Database Management Systems, R. Ramakrishnan and J. Gehrke 6

  2. Indexes Alternatives for Data Entry k* in Index � Three alternatives: � An index on a file speeds up selections on the � Data record with key value k search key fields for the index. � < k , rid of data record with search key value k > � < k , list of rids of data records with search key k > – Any subset of the fields of a relation can be the search key for an index on the relation. � Choice of alternative for data entries is – Search key is not the same as key (minimal set of orthogonal to the indexing technique used fields that uniquely identify a record in a relation). – Examples of indexing techniques: B+ trees, hash- � An index contains a collection of data entries , based structures and supports efficient retrieval of all data – Typically, index contains auxiliary information that entries k* with a given key value k . directs searches to the desired data entries Database Management Systems, R. Ramakrishnan and J. Gehrke 7 Database Management Systems, R. Ramakrishnan and J. Gehrke 8 Alternatives for Data Entries (Contd.) Alternatives for Data Entries (Contd.) � Alternatives 2 and 3: � Alternative 1: – Data entries typically much smaller than data – If this is used, index structure is a file organization records. So, better than Alternative 1 with large for data records (like Heap files or sorted files). data records – At most one index on a given collection of data – If more than one index is required on a given file, at records can use Alternative 1. (Otherwise, data most one index can use Alternative 1; rest must use records duplicated, leading to redundant storage Alternatives 2 or 3. and potential inconsistency.) – Alternative 3 more compact than Alternative 2, but – If data records very large, # of pages containing leads to variable sized data entries even if search data entries is high. Implies size of auxiliary keys are of fixed length. information in the index is also large, typically. Database Management Systems, R. Ramakrishnan and J. Gehrke 9 Database Management Systems, R. Ramakrishnan and J. Gehrke 10 Clustered vs. Unclustered Index Index Classification � Suppose that Alternative (2) is used for data entries, and that the data records are stored in a Heap file. � Primary vs. secondary : If search key contains To build clustered index, first sort the Heap file (with – primary key, then called primary index. some free space on each page for future inserts). – Unique index: Search key contains a candidate key. – Overflow pages may be needed for inserts. (Thus, order of data recs is `close to’, but not identical to, the sort order.) � Clustered vs. unclustered : If order of data records is the same as, or `close to’, order of data entries, Index entries UNCLUSTERED direct search for CLUSTERED then called clustered index. data entries – Alternative 1 implies clustered, but not vice-versa. – A file can be clustered on at most one search key. Data entries Data entries (Index File) – Cost of retrieving data records through index varies (Data file) greatly based on whether index is clustered or not! Data Records Data Records Database Management Systems, R. Ramakrishnan and J. Gehrke 11 Database Management Systems, R. Ramakrishnan and J. Gehrke 12

  3. Index Classification (Contd.) Index Classification (Contd.) � Composite Search Keys : Search Examples of composite key � Dense vs. Sparse : If indexes using lexicographic order. on a combination of fields. there is at least one data Ashby, 25, 3000 – Equality query: Every field 22 11,80 11 entry per search key Basu, 33, 4003 value is equal to a constant 25 12 Bristow, 30, 2007 12,10 value (in some data 30 value. E.g. wrt <sal,age> index: name age sal Ashby 12,20 12 33 record), then dense. Cass, 50, 5004 Cass � age=20 and sal =75 13,75 bob 12 10 13 Smith Daniels, 22, 6003 – Alternative 1 always 40 – Range query: Some field value <age, sal> cal 11 80 <age> Jones, 40, 6003 44 leads to dense index. is not a constant. E.g.: joe 12 20 44 Smith, 44, 3000 10,12 sue 13 75 10 � age =20; or age=20 and sal > 10 – Every sparse index is 50 Tracy, 44, 5004 20,12 20 clustered! � Data entries in index sorted Data records Sparse Index Dense Index 75,13 75 sorted by name – Sparse indexes are on on by search key to support Data File Name Age 80,11 80 smaller; however, some range queries. <sal, age> <sal> useful optimizations are – Lexicographic order, or Data entries in index Data entries based on dense indexes. sorted by <sal,age> sorted by <sal> – Spatial order. Database Management Systems, R. Ramakrishnan and J. Gehrke 13 Database Management Systems, R. Ramakrishnan and J. Gehrke 14 Summary � 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. Database Management Systems, R. Ramakrishnan and J. Gehrke 15

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend