Hash-Based Indexes. Chapter 11. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1

Similar documents
Selection Queries. to answer a selection query (ssn=10) needs to traverse a full path.

Hash-Based Indexes. Chapter 11

Hash-Based Indexes. Chapter 11 Ramakrishnan & Gehrke (Sections ) CPSC 404, Laks V.S. Lakshmanan 1

Hashed-Based Indexing

Hash-Based Indexing 1

Hash-Based Indexes. Chapter 11. Comp 521 Files and Databases Spring

Hash-Based Indexes. Chapter 11. Comp 521 Files and Databases Fall

Lecture 8 Index (B+-Tree and Hash)

CSIT5300: Advanced Database Systems

Introduction to Data Management. Lecture 15 (More About Indexing)

Systems Infrastructure for Data Science. Web Science Group Uni Freiburg WS 2014/15

Database Applications (15-415)

Database Applications (15-415)

Kathleen Durant PhD Northeastern University CS Indexes

Introduction to Data Management. Lecture 21 (Indexing, cont.)

TUTORIAL ON INDEXING PART 2: HASH-BASED INDEXING

Tree-Structured Indexes

Database Applications (15-415)

Module 3: Hashing Lecture 9: Static and Dynamic Hashing. The Lecture Contains: Static hashing. Hashing. Dynamic hashing. Extendible hashing.

Tree-Structured Indexes ISAM. Range Searches. Comments on ISAM. Example ISAM Tree. Introduction. As for any index, 3 alternatives for data entries k*:

Chapter 17. Disk Storage, Basic File Structures, and Hashing. Records. Blocking

Chapter 6. Hash-Based Indexing. Efficient Support for Equality Search. Architecture and Implementation of Database Systems Summer 2014

Principles of Data Management. Lecture #5 (Tree-Based Index Structures)

Announcements. Reading Material. Recap. Today 9/17/17. Storage (contd. from Lecture 6)

4 Hash-Based Indexing

Chapter 12: Indexing and Hashing (Cnt(

Tree-Structured Indexes

Material You Need to Know

key h(key) Hash Indexing Friday, April 09, 2004 Disadvantages of Sequential File Organization Must use an index and/or binary search to locate data

Tree-Structured Indexes

Module 5: Hash-Based Indexing

Hashing file organization

Symbol Table. Symbol table is used widely in many applications. dictionary is a kind of symbol table data dictionary is database management

Tree-Structured Indexes

CARNEGIE MELLON UNIVERSITY DEPT. OF COMPUTER SCIENCE DATABASE APPLICATIONS

Indexing. Chapter 8, 10, 11. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1

Introduction. Choice orthogonal to indexing technique used to locate entries K.

Data and File Structures Chapter 11. Hashing

Final Exam Review. Kathleen Durant CS 3200 Northeastern University Lecture 22

CS143: Index. Book Chapters: (4 th ) , (5 th ) , , 12.10

Topics to Learn. Important concepts. Tree-based index. Hash-based index

Tree-Structured Indexes

Tree-Structured Indexes

Midterm Review CS634. Slides based on Database Management Systems 3 rd ed, Ramakrishnan and Gehrke

Tree-Structured Indexes. Chapter 10

Indexing: Overview & Hashing. CS 377: Database Systems

Tree-Structured Indexes. A Note of Caution. Range Searches ISAM. Example ISAM Tree. Introduction

Chapter 1 Disk Storage, Basic File Structures, and Hashing.

CS698F Advanced Data Management. Instructor: Medha Atre. Aug 11, 2017 CS698F Adv Data Mgmt 1

Spring 2017 B-TREES (LOOSELY BASED ON THE COW BOOK: CH. 10) 1/29/17 CS 564: Database Management Systems, Jignesh M. Patel 1

Tree-Structured Indexes

HW 2 Bench Table. Hash Indexes: Chap. 11. Table Bench is in tablespace setq. Loading table bench. Then a bulk load

Chapter 12: Indexing and Hashing. Basic Concepts

Database System Concepts, 6 th Ed. Silberschatz, Korth and Sudarshan See for conditions on re-use

Chapter 12: Indexing and Hashing

Chapter 11: Indexing and Hashing

RAID in Practice, Overview of Indexing

Data Storage and Query Answering. Indexing and Hashing (5)

Administrivia. Tree-Structured Indexes. Review. Today: B-Tree Indexes. A Note of Caution. Introduction

Overview of Storage and Indexing

Storage hierarchy. Textbook: chapters 11, 12, and 13

Data Management for Data Science

Data Structure Lecture#22: Searching 3 (Chapter 9) U Kang Seoul National University

Why Is This Important? Overview of Storage and Indexing. Components of a Disk. Data on External Storage. Accessing a Disk Page. Records on a Disk Page

COMP 430 Intro. to Database Systems. Indexing

Overview of Storage and Indexing

Intro to DB CHAPTER 12 INDEXING & HASHING

Chapter 12: Indexing and Hashing

5. Hashing. 5.1 General Idea. 5.2 Hash Function. 5.3 Separate Chaining. 5.4 Open Addressing. 5.5 Rehashing. 5.6 Extendible Hashing. 5.

BBM371& Data*Management. Lecture 6: Hash Tables

Tree-Structured Indexes (Brass Tacks)

else // m + 1 = d + }{{} 1 + d

Hashing. Data organization in main memory or disk

The physical database. Contents - physical database design DATABASE DESIGN I - 1DL300. Introduction to Physical Database Design

Chapter 13 Disk Storage, Basic File Structures, and Hashing.

Chapter 11: Indexing and Hashing

Advances in Data Management Principles of Database Systems - 2 A.Poulovassilis

Chapter 11: Indexing and Hashing

Indexing. vanilladb.org

THE B+ TREE INDEX. CS 564- Spring ACKs: Jignesh Patel, AnHai Doan

Access Methods. Basic Concepts. Index Evaluation Metrics. search key pointer. record. value. Value

Overview of Storage and Indexing

Chapter 11: Indexing and Hashing" Chapter 11: Indexing and Hashing"

LH*Algorithm: Scalable Distributed Data Structure (SDDS) and its implementation on Switched Multicomputers

Indexing and Hashing

Overview of Storage and Indexing

Hashing. Introduction to Data Structures Kyuseok Shim SoEECS, SNU.

CSC 261/461 Database Systems Lecture 17. Fall 2017

Introduction to Indexing 2. Acknowledgements: Eamonn Keogh and Chotirat Ann Ratanamahatana

CS 525: Advanced Database Organization 04: Indexing

Evaluation of Relational Operations: Other Techniques

CS 245: Database System Principles

Parallel DBMS. Parallel Database Systems. PDBS vs Distributed DBS. Types of Parallelism. Goals and Metrics Speedup. Types of Parallelism

2, 3, 5, 7, 11, 17, 19, 23, 29, 31

Extendible Chained Bucket Hashing for Main Memory Databases. Abstract

Chapter 11: Indexing and Hashing

Indexes. File Organizations and Indexing. First Question to Ask About Indexes. Index Breakdown. Alternatives for Data Entries (Contd.

Physical Disk Structure. Physical Data Organization and Indexing. Pages and Blocks. Access Path. I/O Time to Access a Page. Disks.

File Organization and Storage Structures

Find the block in which the tuple should be! If there is free space, insert it! Otherwise, must create overflow pages!

Transcription:

Hash-Based Indexes Chapter Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1

Introduction As for any index, 3 alternatives for data entries k*: Data record with key value k <k, rid of data record with search key value k> <k, list of rids of data records with search key k> Choice orthogonal to the indexing technique Hash-based indexes are best for equality selections. Cannot support range searches. Static and dynamic hashing techniques exist; trade-offs similar to ISAM vs. B+ trees. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke

Static Hashing # primary pages fixed, allocated sequentially, never de-allocated; overflow pages if needed. h(k) mod N = bucket to which data entry with key k belongs. (N = # of buckets) h(key) mod N key h 0 N-1 Primary bucket pages Overflow pages Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 3

Static Hashing (Contd.) Buckets contain data entries. Hash fn works on search key field of record r. Must distribute values over range 0... N-1. h(key) = (a * key + b) usually works well. a and b are constants; lots known about how to tune h. Long overflow chains can develop and degrade performance. Extendible and Linear Hashing: Dynamic techniques to fix this problem. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 4

Extendible Hashing Situation: Bucket (primary page) becomes full. Why not re-organize file by doubling # of buckets? Reading and writing all pages is expensive! Idea: Use directory of pointers to buckets, double # of buckets by doubling the directory, splitting just the bucket that overflowed! Directory much smaller than file, so doubling it is much cheaper. Only one page of data entries is split. No overflow page! Trick lies in how hash function is adjusted! Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 5

Example Directory is array of size 4. To find bucket for r, take last `global depth # bits of h(r); we denote r by h(r). If h(r) = 5 = binary 1, it is in bucket pointed to by 01. LOCAL DEPTH GLOBAL DEPTH 01 DIRECTORY 4* 1* 3* 16* 1* 5* 1* 13* * 15* 7* 19* DATA PAGES Bucket A Bucket B Bucket C Bucket D Insert: If bucket is full, split it (allocate new page, re-distribute). If necessary, double the directory. (As we will see, splitting a bucket does not always require doubling; we can tell by comparing global depth with local depth for the split bucket.) Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 6

Insert h(r)=0 (Causes Doubling) LOCAL DEPTH GLOBAL DEPTH 3*16* Bucket A LOCAL DEPTH GLOBAL DEPTH 3 3* 16* Bucket A 01 DIRECTORY 1* 5* 1*13* * 15* 7* 19* 4* 1* 0* Bucket B Bucket C Bucket D Bucket A (`split image' of Bucket A) Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 7 0 1 0 0 0 1 1 1 3 DIRECTORY 1* 5* 1* 13* * 15* 7* 3 19* 4* 1* 0* Bucket B Bucket C Bucket D Bucket A (`split image' of Bucket A)

Points to Note 0 = binary 0. Last bits () tell us r belongs in A or A. Last 3 bits needed to tell which. Global depth of directory: Max # of bits needed to tell which bucket an entry belongs to. Local depth of a bucket: # of bits used to determine if an entry belongs to this bucket. When does bucket split cause directory doubling? Before insert, local depth of bucket = global depth. Insert causes local depth to become > global depth; directory is doubled by copying it over and `fixing pointer to split image page. (Use of least significant bits enables efficient doubling via copying of directory!) Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 8

Directory Doubling Why use least significant bits in directory? Allows for doubling via copying! 6 = 1 0 3 6 = 1 0 3 0 1 1 6* 01 6* 1 0 0 0 1 1 6* 0 1 1 6* 01 6* 0 0 1 1 1 0 6* 1 1 Least Significant vs. Most Significant Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 9

Comments on Extendible Hashing If directory fits in memory, equality search answered with one disk access; else two. 0MB file, 0 bytes/rec, 4K pages contains 1,0,0 records (as data entries) and 5,0 directory elements; chances are high that directory will fit in memory. Directory grows in spurts, and, if the distribution of hash values is skewed, directory can grow large. Multiple entries with same hash value cause problems! Delete: If removal of data entry makes bucket empty, can be merged with `split image. If each directory element points to same bucket as its split image, can halve directory. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke

Linear Hashing This is another dynamic hashing scheme, an alternative to Extendible Hashing. LH handles the problem of long overflow chains without using a directory, and handles duplicates. Idea: Use a family of hash functions h 0, h 1, h,... h i (key) = h(key) mod( i N); N = initial # buckets h is some hash function (range is not 0 to N-1) If N = d0, for some d0, h i consists of applying h and looking at the last di bits, where di = d0 + i. h i+1 doubles the range of h i (similar to directory doubling) Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke

Linear Hashing (Contd.) Directory avoided in LH by using overflow pages, and choosing bucket to split round-robin. Splitting proceeds in `rounds. Round ends when all N R initial (for round R) buckets are split. Buckets 0 to Next-1 have been split; Next to N R yet to be split. Current round number is Level. Search: To find bucket for data entry r, find h Level (r): If h Level (r) in range `Next to N R, r belongs here. Else, r could belong to bucket h Level (r) or bucket h Level (r) + N R ; must apply h Level+1 (r) to find out. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 1

Overview of LH File In the middle of a round. Bucket to be split Next Buckets that existed at the beginning of this round: this is the range of h Level Buckets split in this round: If h Level ( search key value ) is in this range, must use h Level+1 ( search key value ) to decide if entry is in `split image' bucket. `split image' buckets: created (through splitting of other buckets) in this round Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 13

Linear Hashing (Contd.) Insert: Find bucket by applying h Level / h Level+1 : If bucket to insert into is full: Add overflow page and insert data entry. (Maybe) Split Next bucket and increment Next. Can choose any criterion to `trigger split. Since buckets are split round-robin, long overflow chains don t develop! Doubling of directory in Extendible Hashing is similar; switching of hash functions is implicit in how the # of bits examined is increased. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 14

Example of Linear Hashing On split, h Level+1 is used to re-distribute entries. Level=0, N=4 Level=0 h 1 h 0 PRIMARY Next=0 PAGES h 1 h 0 PRIMARY PAGES OVERFLOW PAGES 0 1 01 3*44* 36* 9* 5* 5* Data entry r with h(r)=5 0 1 01 3* Next=1 9* 5* 5* 0 0 14* 18**30* 31*35* 7* * Primary bucket page (This info (The actual contents is for illustration of the linear hashed 0 44* 36* only!) file) Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 15 0 0 14* 18**30* 31*35* 7* * 43*

h 1 0 1 0 0 0 Example: End of a Round h0 01 Level=0 PRIMARY PAGES 3* 9* 5* 66* 18* * 34* Next=3 31* 35* 7* * 43* 44*36* OVERFLOW PAGES h 1 0 1 0 0 0 1 h0 01 Level=1 Next=0 PRIMARY PAGES 3* 9* 5* 66* 18* * 34* 43* 44* 36* 35* * 5* 37* 9* OVERFLOW PAGES 50* 1 01 5* 37*9* 1 14* 30* * 1 14* 30* * 1 31*7* Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 16

Summary Hash-based indexes: best for equality searches, cannot support range searches. Static Hashing can lead to long overflow chains. Extendible Hashing avoids overflow pages by splitting a full bucket when a new data entry is to be added to it. (Duplicates may require overflow pages.) Directory to keep track of buckets, doubles periodically. Can get large with skewed data; additional I/O if this does not fit in main memory. Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 17

Summary (Contd.) Linear Hashing avoids directory by splitting buckets round-robin, and using overflow pages. Overflow pages not likely to be long. Duplicates handled easily. Space utilization could be lower than Extendible Hashing, since splits not concentrated on `dense data areas. Can tune criterion for triggering splits to trade-off slightly longer chains for better space utilization. For hash-based indexes, a skewed data distribution is one in which the hash values of data entries are not uniformly distributed! Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke 18