static hashing & dynamic hashing hash function

Slides:



Advertisements
Similar presentations
CS4432: Database Systems II Hash Indexing 1. Hash-Based Indexes Adaptation of main memory hash tables Support equality searches No range searches 2.
Advertisements

File Organizations Sept. 2012Yangjun Chen ACS Outline: Hashing (5.9, 5.10, 3 rd. ed.; 13.8, 4 th, 5 th ed.; 17.8, 6 th ed.) external hashing static.
1 Hash-Based Indexes Module 4, Lecture 3. 2 Introduction As for any index, 3 alternatives for data entries k* : – Data record with key value k – –Choice.
Hashing. CENG 3512 Motivation The primary goal is to locate the desired record in a single access of disk. – Sequential search: O(N) – B+ trees: O(log.
1 Linear Hashing Appendix for Chapter 1. 2 Linear Hashing Allow a hash file to expand and shrink dynamically without needing a directory. Suppose the.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Hash-Based Indexes Chapter 11.
Quick Review of Apr 10 material B+-Tree File Organization –similar to B+-tree index –leaf nodes store records, not pointers to records stored in an original.
DBMS 2001Notes 4.2: Hashing1 Principles of Database Management Systems 4.2: Hashing Techniques Pekka Kilpeläinen (after Stanford CS245 slide originals.
File Processing : Hash 2015, Spring Pusan National University Ki-Joune Li.
What we learn with pleasure we never forget. Alfred Mercier Smitha N Pai.
Hash Table indexing and Secondary Storage Hashing.
FALL 2004CENG 3511 Hashing Reference: Chapters: 11,12.
METU Department of Computer Eng Ceng 302 Introduction to DBMS Disk Storage, Basic File Structures, and Hashing by Pinar Senkul resources: mostly froom.
1 Hash-Based Indexes Chapter Introduction : Hash-based Indexes  Best for equality selections.  Cannot support range searches.  Static and dynamic.
HASH TABLES Malathi Mansanpally CS_257 ID-220. Agenda: Extensible Hash Tables Insertion Into Extensible Hash Tables Linear Hash Tables Insertion Into.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Chapter 13 Disk Storage, Basic File Structures, and Hashing.
E.G.M. PetrakisHashing1 Hashing on the Disk  Keys are stored in “disk pages” (“buckets”)  several records fit within one page  Retrieval:  find address.
Database Management Systems, R. Ramakrishnan and J. Gehrke1 File Organizations and Indexing Chapter 5, 6 of Elmasri “ How index-learning turns no student.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 17 Disk Storage, Basic File Structures, and Hashing.
1 CSE 326: Data Structures: Hash Tables Lecture 12: Monday, Feb 3, 2003.
Hashing and Hash-Based Index. Selection Queries Yes! Hashing  static hashing  dynamic hashing B+-tree is perfect, but.... to answer a selection query.
FALL 2005 CENG 351 Data Management and File Structures 1 Hashing.
March 23 & 28, Csci 2111: Data and File Structures Week 10, Lectures 1 & 2 Hashing.
March 23 & 28, Hashing. 2 What is Hashing? A Hash function is a function h(K) which transforms a key K into an address. Hashing is like indexing.
Storage Structures. Memory Hierarchies Primary Storage –Registers –Cache memory –RAM Secondary Storage –Magnetic disks –Magnetic tape –CDROM (read-only.
File Structures. 2 Chapter - Objectives Disk Storage Devices Files of Records Operations on Files Unordered Files Ordered Files Hashed Files Dynamic and.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Hash-Based Indexes Chapter 11 Modified by Donghui Zhang Jan 30, 2006.
File Organizations Jan. 2008Yangjun Chen ACS Outline: Hashing (5.9, 5.10, 3 rd. ed.; 13.8, 4 th ed.) external hashing static hashing & dynamic hashing.
Hashing by Rafael Jaffarove CS157b. Motivation  Fast data access  Search  Insertion  Deletion  Ideal seek time is O(1)
Chapter 5 Record Storage and Primary File Organizations
Em Spatiotemporal Database Laboratory Pusan National University File Processing : Hash 2004, Spring Pusan National University Ki-Joune Li.
Dynamic Hashing (Chapter 12)
Lecture 21: Hash Tables Monday, February 28, 2005.
Are they better or worse than a B+Tree?
Hash-Based Indexes Chapter 11
Hashing CENG 351.
Subject Name: File Structures
Disk Storage, Basic File Structures, and Hashing
Database Management Systems (CS 564)
Hash Table.
External Memory Hashing
Hash Table.
Disk Storage, Basic File Structures, and Hashing
Introduction to Database Systems
External Memory Hashing
CS222: Principles of Data Management Notes #8 Static Hashing, Extendible Hashing, Linear Hashing Instructor: Chen Li.
Hash-Based Indexes Chapter 10
External Memory Hashing
Extendible Hashing Primarily used for storage of files on disk
CS222P: Principles of Data Management Notes #8 Static Hashing, Extendible Hashing, Linear Hashing Instructor: Chen Li.
Hashing.
Hash-Based Indexes Chapter 11
Index tuning Hash Index.
Advance Database System
Database Systems (資料庫系統)
LINEAR HASHING E0 261 Jayant Haritsa Computer Science and Automation
Database Design and Programming
2018, Spring Pusan National University Ki-Joune Li
Chapter 11: Indexing and Hashing
1. Explain the following concepts: (a) superkey (b) key
1.(5) Describe the working process with a database system.
CPSC-608 Database Systems
Index tuning Hash Index.
Hash-Based Indexes Chapter 11
1. Explain the following concepts of the ER data model:
Chapter 11 Instructor: Xin Zhang
What we learn with pleasure we never forget. Alfred Mercier
CS222/CS122C: Principles of Data Management UCI, Fall 2018 Notes #07 Static Hashing, Extendible Hashing, Linear Hashing Instructor: Chen Li.
Index Structures Chapter 13 of GUW September 16, 2019
Presentation transcript:

static hashing & dynamic hashing hash function Outline: Hashing (5.9, 5.10, 3rd. ed.; 13.8, 4th, 5th ed.; 17.8, 6th ed.) external hashing static hashing & dynamic hashing hash function mathematical function that maps a key to a bucket address collisions collision resolution scheme open addressing chaining multiple hashing linear hashing Jan. 2017 Yangjun Chen ACS-7102

Mapping a table into a file Employee ssn name bdate sex address salary … ... mapping file Block (or page) - access unit of operating system - block size: range from 512 to 4096 bytes Bucket - access unit of database system - A bucket contains one or more blocks. A file can be considered as a collection of buckets. Each bucket has an address. Jan. 2017 Yangjun Chen ACS-7102

Consider a file comprising a primary area and an overflow area External Hashing Consider a file comprising a primary area and an overflow area Records hash to one of many primary buckets Records not fitting into the primary area are relegated to overflow Common implementations are static - the number of primary buckets is fixed - and we expect to need to reorganize this type of files on a regular basis. Jan. 2017 Yangjun Chen ACS-7102

Consider a static hash file comprising M primary buckets External Hashing Consider a static hash file comprising M primary buckets We need a hash function that maps the key onto {0, 1, … M-1} If M is prime and Key is numeric then Hash(Key)= Key mod M can work well A collision may occur when more than one records hash to the same address We need a collision resolution scheme for overflow handling because the number of collisions for one primary bucket can exceed the bucket capacity open addressing chaining multiple hashing Jan. 2017 Yangjun Chen ACS-7102

subsequent buckets are examined until an open record position is found Overflow handling Open addressing subsequent buckets are examined until an open record position is found no need for an overflow area, unless the number of records exceeds … consider records being inserted R1, R2, R3, R4, R5, R6, R7 with bucket capacity of 2 and hash values 1, 2, 3, 2, 2, 1, 4 How do we handle retrieval, deletion? 0 1 2 3 4 Jan. 2017 Yangjun Chen ACS-7102

a pointer in the primary bucket points to the first overflow record Overflow handling Chaining a pointer in the primary bucket points to the first overflow record overflow records for one primary bucket are chained together consider records being inserted R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11. with bucket capacity of 2 and hash values 1, 2, 3, 2, 2, 1, 4, 2, 3, 3, 3. deletions? 0 1 2 3 4 Primary Area Overflow Area Jan. 2017 Yangjun Chen ACS-7102

eventually we would resort to chaining Overflow handling Multiple Hashing when collision occurs a next hash function is tried to find an unfilled bucket eventually we would resort to chaining note that open addressing can suffer from poor performance due to islands of full buckets occurring and having a tendency to get even longer - using a second hash function helps avoid that problem Jan. 2017 Yangjun Chen ACS-7102

grows and shrinks gracefully Linear Hashing A dynamic hash file: grows and shrinks gracefully initially the hash file comprises M primary buckets numbered 0, 1, … M-1 the hashing process is divided into several phases (phase 0, phase 1, phase 2, …). In phase j, records are hashed according to hash functions hj(key) and hj+1(key) hj(key) = key mod (2j*M) phase 0: h0(key) = key mod (20*M), h1(key) = key mod (21*M) phase 1: h1(key) = key mod (21*M), h2(key) = key mod (22*M) phase 2: h2(key) = key mod (22*M), h3(key) = key mod (23*M) … ... Jan. 2017 Yangjun Chen ACS-7102

hj(key) is used first; to split, use hj+1(key) Linear Hashing hj(key) is used first; to split, use hj+1(key) splitting a bucket means to redistribute the records into two buckets: the original one and a new one. In phase j, to determine which ones go into the original while the others go into the new one, we use hj+1(key) = key mod 2j+1*M to calculate their address. splitting buckets splitting occurs according to a specific rule such as - an overflow occurring, or - the load factor reaching a certain value, etc. a split pointer keeps track of which bucket to split next split pointer goes from 0 to 2j*M - 1 during the jth phase, j= 0, 1, 2, … ... Jan. 2017 Yangjun Chen ACS-7102

What bucket will be chosen to split next? Linear Hashing What is a phase? When to split a bucket? How to split a bucket? What bucket will be chosen to split next? 5. How do we find a record inserted into a linear hashing file? Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example initially suppose M=4 h0(key) = key mod M; i.e. key mod 4 (rightmost 2 bits) h1(key) = key mod 2*M Capacity of a bucket is 2. As the file grows, buckets split and records are redistributed using h1(key) = key mode 2*M. 0 1 2 3 n=0 0 1 2 3 4 n=1 after the split Jan. 2017 Yangjun Chen ACS-7102

Buckets to be added during the expansion Linear Hashing, example collision resolution strategy: chaining split rule: if load factor > 0.70 insert the records with key values: 0011, 0010, 0100, 0001, 1000, 1110, 0101, 1010, 0111, 1100 Buckets to be added during the expansion 0 1 2 3 4 5 6 7 Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example when inserting the sixth record (using h0 = Key mod M) we would have n=0 before the split (n is the point to the bucket to be split.) 0100 1000 0001 0010 1110 0011 0 1 2 3 0011, 0010, 0100, 0001, 1000, 1110, 0101, 1010, 0111, 1100 Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example when inserting the sixth record (using h0 = Key mod M) we would have but the load factor 6/8= 0.75 > 0.70 and so bucket 0 must be split (using h1 = Key mod 2M): n=0 before the split (n is the point to the bucket to be split.) 0100 1000 0001 0010 1110 0011 0 1 2 3 n=1 after the split load factor: 6/10=0.6 no split 1000 0001 0010 1110 0011 0100 0 1 2 3 4 Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example insert(0101) 1000 0001 0010 1110 0011 0100 0 1 2 3 4 n=1 load factor: 7/10=0.7 no split 1000 0001 0101 0010 1110 0011 0100 0 1 2 3 4 Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example insert(1010) 1000 0001 0101 0010 1110 0011 0100 0 1 2 3 4 n=1 load factor: 8/10=0.8 split using h1. 1000 0001 0101 0010 1110 0011 0100 overflow 1010 Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example load factor: 8/12=0.66 no split 1000 0001 0010 1110 0011 0100 0101 0 1 2 3 4 5 overflow 1010 Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example insert(0111) 1000 0001 0010 1110 0011 0100 0101 overflow 1010 n=2 load factor: 9/12=0.75 split using h1. 1000 0001 0010 1110 0011 0111 0100 0101 0 1 2 3 4 5 overflow 1010 Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example 1000 0001 0010 1010 0011 0111 0100 0101 1110 n=3 load factor: 9/14=0.642 no split. insert(1100) 1000 0001 0010 1010 0011 0111 0100 0101 1110 Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example 1000 1100 0001 0010 1010 0011 0111 0100 0101 1110 n=3 load factor: 10/14=0.71 split using h1. 1000 1100 0001 0010 1010 0011 0100 0101 1110 0111 Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing, example 1000 1100 0001 0010 1010 0011 0100 0101 1110 0111 n=4 load factor: 10/16=0.625 no split. At this point, all the 4 (M) buckets are split. n should be set to 0. It begins a second phase. In the second phase, we will use h1 to insert records and h2 to split a bucket. - note that h1(K) = K mod 2M and h2(K) = K mod 4M. Jan. 2017 Yangjun Chen ACS-7102

Linear Hashing including two Phases: - collision resolution strategy: chaining - split rule: load factor > 0.7 - initially M = 4 (M: size of the primary area) - hash functions: hi(key) = key mod 2i  M (i = 0, 1, 2, …) - bucket capacity = 2 Trace the insertion process of the following keys into a linear hashing file: 3, 2, 4, 1, 8, 14, 5, 10, 7, 24, 17, 13, 15. Jan. 2017 Yangjun Chen ACS-7102

when inserting the sixth record we would have The first phase – phase0 when inserting the sixth record we would have but the load factor 6/8= 0.75 > 0.70 and so bucket 0 must be split (using h1 = Key mod 2M): 4 8 1 2 14 3 n=0 before the split (n is the point to the bucket to be split.) 0 1 2 3 8 1 2 14 3 4 n=1 after the split load factor: 6/10=0.6 no split 0 1 2 3 4 Jan. 2017 Yangjun Chen ACS-7102

8 1 2 14 3 4 0 1 2 3 4 n=1 load factor: 7/10=0.7 no split 8 1 5 2 14 3 insert(5) 8 1 2 14 3 4 0 1 2 3 4 n=1 load factor: 7/10=0.7 no split 8 1 5 2 14 3 4 0 1 2 3 4 Jan. 2017 Yangjun Chen ACS-7102

8 1 5 2 14 3 4 0 1 2 3 4 n=1 load factor: 8/10=0.8 split using h1. 8 1 insert(10) 8 1 5 2 14 3 4 0 1 2 3 4 n=1 load factor: 8/10=0.8 split using h1. 8 1 5 2 14 3 4 overflow 10 Jan. 2017 Yangjun Chen ACS-7102

8 1 2 14 3 4 5 0 1 2 3 4 5 10 n=2 load factor: 8/12=0.66 no split 0 1 2 3 4 5 overflow 10 n=2 load factor: 8/12=0.66 no split Jan. 2017 Yangjun Chen ACS-7102

8 1 2 14 3 4 5 n=2 load factor: 9/12=0.75 split using h1. 10 8 1 2 14 insert(7) 8 1 2 14 3 4 5 n=2 load factor: 9/12=0.75 split using h1. overflow 10 8 1 2 14 3 7 4 5 0 1 2 3 4 5 overflow 10 Jan. 2017 Yangjun Chen ACS-7102

8 1 2 10 3 7 4 5 14 n=3 load factor: 9/14=0.642 no split. 8 1 2 10 3 7 insert(24) 8 1 2 10 3 7 4 5 14 Jan. 2017 Yangjun Chen ACS-7102

8 24 1 2 10 3 7 4 5 14 n=3 load factor: 10/14=0.71 split using h1. 8 Jan. 2017 Yangjun Chen ACS-7102

The second phase – phase1 n = 0; using h1 = Key mod 2M to insert and 8 24 1 2 10 3 4 5 14 7 n=4 The second phase – phase1 n = 0; using h1 = Key mod 2M to insert and h2 = Key mod 4M to split. insert(17) 8 24 1 2 10 3 4 5 14 7 Jan. 2017 Yangjun Chen ACS-7102

8 24 1 17 2 10 3 4 5 14 7 n=0 load factor: 11/16=0.687 no split. 8 24 insert(13) 8 24 1 17 2 10 3 4 5 14 7 Jan. 2017 Yangjun Chen ACS-7102

8 24 1 17 2 10 3 4 5 13 14 7 n=0 load factor: 12/16=0.75 split bucket 0, using h2: h2 = Key mod 4M 1 17 2 10 3 4 5 13 14 7 8 24 Jan. 2017 Yangjun Chen ACS-7102

insert(15) 1 17 2 10 3 4 5 13 14 7 8 24 1 17 2 10 3 4 5 13 14 7 15 8 24 n=1 load factor: 13/18=0.722 split bucket 1, using h2. 1 17 2 10 3 4 5 13 14 7 15 8 24 Jan. 2017 Yangjun Chen ACS-7102