Hashing file organization

Similar documents
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

Chapter 12: Indexing and Hashing

Chapter 12: Indexing and Hashing. Basic Concepts

Chapter 12: Indexing and Hashing

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

Chapter 12: Indexing and Hashing (Cnt(

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

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

Chapter 11: Indexing and Hashing

Chapter 11: Indexing and Hashing

Chapter 11: Indexing and Hashing

Chapter 11: Indexing and Hashing

Database index structures

QUIZ: Buffer replacement policies

CSIT5300: Advanced Database Systems

Intro to DB CHAPTER 12 INDEXING & HASHING

Indexing: Overview & Hashing. CS 377: Database Systems

Hash-Based Indexes. Chapter 11

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

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

CS34800 Information Systems

Indexing and Hashing

TUTORIAL ON INDEXING PART 2: HASH-BASED INDEXING

Indexing and Hashing

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

Hash-Based Indexing 1

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

Hashed-Based Indexing

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

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

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.

Hashing Techniques. Material based on slides by George Bebis

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

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

Lecture 8 Index (B+-Tree and Hash)

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

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

Hashing. Data organization in main memory or disk

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

Fundamentals of Database Systems Prof. Arnab Bhattacharya Department of Computer Science and Engineering Indian Institute of Technology, Kanpur

Query Types Exact Match Partial Match Range Match

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

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

Multi-Attribute Indexing

Data and File Structures Chapter 11. Hashing

Hash Table and Hashing


Understand how to deal with collisions

Databases 2 Lecture IV. Alessandro Artale

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

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

File System CS170 Discussion Week 9. *Some slides taken from TextBook Author s Presentation

File-System Structure. Allocation Methods. Free-Space Management. Directory Implementation. Efficiency and Performance. Recovery

File Structures and Indexing

Hash Tables Outline. Definition Hash functions Open hashing Closed hashing. Efficiency. collision resolution techniques. EECS 268 Programming II 1

Query Processing. Debapriyo Majumdar Indian Sta4s4cal Ins4tute Kolkata DBMS PGDBA 2016

CARNEGIE MELLON UNIVERSITY DEPT. OF COMPUTER SCIENCE DATABASE APPLICATIONS

Introduction. hashing performs basic operations, such as insertion, better than other ADTs we ve seen so far

Material You Need to Know

(2,4) Trees Goodrich, Tamassia. (2,4) Trees 1

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

Chapter 5 Hashing. Introduction. Hashing. Hashing Functions. hashing performs basic operations, such as insertion,

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

Physical Database Design: Outline

File Directories Associated with any file management system and collection of files is a file directories The directory contains information about

Chapter 12: Query Processing. Chapter 12: Query Processing

Chapter 11: Implementing File Systems. Operating System Concepts 8 th Edition,

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

COMP171. Hashing.

Physical Storage Media

Module 5: Hash-Based Indexing

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

File System Interface and Implementation

Darshan Institute of Engineering & Technology

CS122 Lecture 3 Winter Term,

Kathleen Durant PhD Northeastern University CS Indexes

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

COMP 430 Intro. to Database Systems. Indexing

File Systems: Fundamentals

File Systems: Fundamentals

More B-trees, Hash Tables, etc. CS157B Chris Pollett Feb 21, 2005.

Chapter 12: Query Processing

Indexing. Week 14, Spring Edited by M. Naci Akkøk, , Contains slides from 8-9. April 2002 by Hector Garcia-Molina, Vera Goebel

Introduction to File Structures

Query processing and optimization

DATABASE PERFORMANCE AND INDEXES. CS121: Relational Databases Fall 2017 Lecture 11

CMSC 341 Hashing (Continued) Based on slides from previous iterations of this course

Hashing for searching

4 Hash-Based Indexing

File Systems. ECE 650 Systems Programming & Engineering Duke University, Spring 2018

Physical Level of Databases: B+-Trees

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

Database Technology. Topic 7: Data Structures for Databases. Olaf Hartig.

Advanced Database Systems

Indexing. Jan Chomicki University at Buffalo. Jan Chomicki () Indexing 1 / 25

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

Database System Concepts

Hashing. Hashing Procedures

Hashing. 1. Introduction. 2. Direct-address tables. CmSc 250 Introduction to Algorithms

CITS2200 Data Structures and Algorithms. Topic 15. Hash Tables

Transcription:

Hashing file organization These slides are a modified version of the slides of the book Database System Concepts (Chapter 12), 5th Ed., McGraw-Hill, by Silberschatz, Korth and Sudarshan. Original slides are available at www.db-book.com

Hashing A bucket is a unit of storage (typically a disk block). In a hash file organization we obtain the bucket of a record directly from its search-key value using a hash function. Hash function h is a function from the set of all search-key values K to the set of all bucket addresses h:k->{0,1,,br-1} Hash function is used to locate records for access, insertion as well as deletion. Records with different search-key values may be mapped to the same bucket (h(ki)=h(kj)); thus entire bucket has to be searched sequentially to locate a record. 1.2

Example of Hash File Organization Hash file organization of account file, using branch_name as key (See figure in next slide.) There are 10 blocks (buckets) The binary representation of the ith letter in the alphabet is assumed to be the integer i The hash function returns the sum of the binary representations of the characters of a key modulo 10 E.g. h(perryridge) = 5 h(round Hill) = 3 h(brighton) = 3 (125%10)=5 (113%3)=3 (93%3) = 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t 21 22 23 24 25 26 - u v - w - x - y - z 1.3

Example of Hash File Organization Hash file organization of account file, using branch_name as key (see previous slide for details). 1.4

Hash Functions Worst hash function maps all search-key values to the same bucket; this makes access time proportional to the number of search-key values in the file. An ideal hash function is uniform, i.e., each bucket is assigned the same number of search-key values from the set of all possible values. Ideal hash function is random, so each bucket will have the same number of records assigned to it irrespective of the actual distribution of search-key values in the file. Typical hash functions perform computation on the internal binary representation of the search-key. For example, for a string search-key, the binary representations of all the characters in the string could be added and the sum modulo the number of buckets could be returned.. 1.5

Handling of Bucket Overflows Bucket overflow can occur because of Insufficient buckets Skew in distribution of records. This can occur due to two reasons: multiple records have same search-key value chosen hash function produces non-uniform distribution of key values Although the probability of bucket overflow can be reduced, it cannot be eliminated; it is handled by using overflow buckets. Hash function must be chosen at implementation time. Number of buckets is fixed, but the database may grow. If number is too large, we waste space. If number is too small, we get too many ``collisions'', resulting in records of many search key values being in the same bucket (space/performance tradeoff) 1.6

Handling of Bucket Overflows (Cont.) Overflow chaining the overflow buckets of a given bucket are chained together in a linked list. Above scheme is called closed hashing. An alternative, called open hashing, which does not use overflow buckets, is not suitable for database applications. 1.7

Hash indices

Hash Indices Hashing can be used not only for file organization, but also for indexstructure creation. A hash index organizes the search keys, with their associated record pointers, into a hash file structure. Strictly speaking, hash indices are always secondary indices if the file itself is organized using hashing, a separate primary hash index on it using the same search-key is unnecessary. 1.9

Example of Hash Index 1.10

Overflow of Static Hashing Hash function h: K -> {0,.., n b -1} Let s us apply the hash function to a record. p = 1/n b probability that the hash function generates block j 1-p probability that the hash function generates a block different from j Given nr records, the probability P(x) that a block is generated x times is the probability that the hash function generates the same block for x records: P(x) = nr x (p) x (1 p) nr-x Overflow condition: block generated more times than the blocking factor of the index (f I ) Overflow probability: S x> fi P(x) 1.11

Deficiencies of Static Hashing In static hashing, function h maps search-key values to a fixed set of B of bucket addresses. Databases grow or shrink with time. If initial number of buckets is too small, and file grows, performance will degrade due to too much overflows. If space is allocated for anticipated growth, a significant amount of space will be wasted initially (and buckets will be underfull). If database shrinks, again space will be wasted. One solution: periodic re-organization of the file with a new hash function Expensive, disrupts normal operations Better solution: allow the number of buckets to be modified dynamically. 1.12

Dynamic Hashing Good for database that grows and shrinks in size Allows the hash function to be modified dynamically Extendable hashing one form of dynamic hashing Hash function generates values over a large range typically b-bit integers, with b = 32. At any time use only a prefix of the hash function to index into a table of bucket addresses. Let the length of the prefix be i bits, 0 i 32. Bucket address table size = 2 i. Initially i = 0 Value of i grows and shrinks as the size of the database grows and shrinks. Multiple entries in the bucket address table may point to a bucket (why?) Thus, actual number of buckets is < 2 i The number of buckets also changes dynamically due to coalescing and splitting of buckets. 1.13

General Extendable Hash Structure In this structure, i 2 = i 3 = i, whereas i 1 = i 1 (see next slide for details) 1.14

Use of Extendable Hash Structure Each bucket j stores a value i j All the entries that point to the same bucket have the same values on the first i j bits. To locate the bucket containing search-key K j : 1. Compute h(k j ) = X 2. Use the first i high order bits of X as a displacement into bucket address table, and follow the pointer to appropriate bucket To insert a record with search-key value K j follow same procedure as look-up and locate the bucket, say j. If there is room in the bucket j insert record in the bucket. Else the bucket must be split and insertion re-attempted (next slide.) Overflow buckets used instead in some cases (will see shortly) 1.15

Insertion in Extendable Hash Structure (Cont) To split a bucket j when inserting record with search-key value K j : If i > i j (more than one pointer to bucket j) allocate a new bucket z, and set i j = i z = (i j + 1) Update the second half of the bucket address table entries originally pointing to j, to point to z remove each record in bucket j and reinsert (in j or z) recompute new bucket for K j and insert record in the bucket (further splitting is required if the bucket is still full) If i = i j (only one pointer to bucket j) If i reaches some limit b, or too many splits have happened in this insertion, create an overflow bucket Else increment i and double the size of the bucket address table. replace each entry in the table by two entries that point to the same bucket. recompute new bucket address table entry for K j Now i > i j so use the first case above. 1.16

Deletion in Extendable Hash Structure To delete a key value, locate it in its bucket and remove it. The bucket itself can be removed if it becomes empty (with appropriate updates to the bucket address table). Coalescing of buckets can be done (can coalesce only with a buddy bucket having same value of i j and same i j 1 prefix, if it is present) Decreasing bucket address table size is also possible Note: decreasing bucket address table size is an expensive operation and should be done only if number of buckets becomes much smaller than the size of the table 1.17

Use of Extendable Hash Structure: Example Initial Hash structure, bucket size = 2 1.18

Example (Cont.) Hash structure after insertion of one Brighton and two Downtown records 0 1 1.19

Example (Cont.) Hash structure after insertion of Mianus record 00 01 10 11 1.20

Example (Cont.) 000 001 111 Hash structure after insertion of three Perryridge records 1.21

Example (Cont.) Hash structure after insertion of Redwood and Round Hill records 000 001 111 1.22

Extendable Hashing vs. Other Schemes Benefits of extendable hashing: Hash performance does not degrade with growth of file Minimal space overhead Disadvantages of extendable hashing Extra level of indirection to find desired record Bucket address table may itself become very big (larger than memory) Cannot allocate very large contiguous areas on disk either Solution: B + -tree structure to locate desired record in bucket address table Changing size of bucket address table is an expensive operation Linear hashing is an alternative mechanism Allows incremental growth of its directory (equivalent to bucket address table) At the cost of more bucket overflows 1.23

Comparison of Ordered Indexing and Hashing Cost of periodic re-organization Relative frequency of insertions and deletions Is it desirable to optimize average access time at the expense of worst-case access time? Expected type of queries: Hashing is generally better at retrieving records having a specified value of the key. If range queries are common, ordered indices are to be preferred 1.24