Advance Database System

Slides:



Advertisements
Similar presentations
Disk Storage, Basic File Structures, and Hashing
Advertisements

Lecture 6 Hashing. Motivating Example Want to store a list whose elements are integers between 1 and 5 Will define an array of size 5, and if the list.
CS4432: Database Systems II Hash Indexing 1. Hash-Based Indexes Adaptation of main memory hash tables Support equality searches No range searches 2.
©Silberschatz, Korth and Sudarshan12.1Database System Concepts Chapter 12: Part C Part A:  Index Definition in SQL  Ordered Indices  Index Sequential.
Hash-Based Indexes Jianlin Feng School of Software SUN YAT-SEN UNIVERSITY.
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.
Hash-Based Indexes The slides for this text are organized into chapters. This lecture covers Chapter 10. Chapter 1: Introduction to Database Systems Chapter.
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.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Hash-Based Indexes Chapter 11.
ICOM 6005 – Database Management Systems Design Dr. Manuel Rodríguez-Martínez Electrical and Computer Engineering Department Lecture 11 – Hash-based Indexing.
Chapter 11 (3 rd Edition) Hash-Based Indexes Xuemin COMP9315: Database Systems Implementation.
Copyright 2003Curt Hill Hash indexes Are they better or worse than a B+Tree?
©Silberschatz, Korth and Sudarshan12.1Database System Concepts Chapter 12: Indexing and Hashing Basic Concepts Ordered Indices B+-Tree Index Files B-Tree.
1 Hash-Based Indexes Yanlei Diao UMass Amherst Feb 22, 2006 Slides Courtesy of R. Ramakrishnan and J. Gehrke.
Spring 2003 ECE569 Lecture ECE 569 Database System Engineering Spring 2003 Yanyong Zhang
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.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Chapter 13 Disk Storage, Basic File Structures, and Hashing.
Spring 2004 ECE569 Lecture ECE 569 Database System Engineering Spring 2004 Yanyong Zhang
Hashing General idea: Get a large array
Lecture 6 Hashing. Motivating Example Want to store a list whose elements are integers between 1 and 5 Will define an array of size 5, and if the list.
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.
Basic File Structures and Hashing Lectured by, Jesmin Akhter, Assistant professor, IIT, JU.
Chapter 11 Indexing & Hashing. 2 n Sophisticated database access methods n Basic concerns: access/insertion/deletion time, space overhead n Indexing 
Comp 335 File Structures Hashing.
12.1 Chapter 12: Indexing and Hashing Spring 2009 Sections , , Problems , 12.7, 12.8, 12.13, 12.15,
Hashing and Hash-Based Index. Selection Queries Yes! Hashing  static hashing  dynamic hashing B+-tree is perfect, but.... to answer a selection query.
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.
Introduction to Database, Fall 2004/Melikyan1 Hash-Based Indexes Chapter 10.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Indexed Sequential Access Method.
Database Management Systems, R. Ramakrishnan and J. Gehrke1 Hash-Based Indexes Chapter 10.
Lec 5 part2 Disk Storage, Basic File Structures, and Hashing.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 18 Indexing Structures for Files.
Chapter 5 Record Storage and Primary File Organizations
Azita Keshmiri CS 157B Ch 12 indexing and hashing
Hashing, Hash Function, Collision & Deletion
Hash table CSC317 We have elements with key and satellite data
Dynamic Hashing (Chapter 12)
Are they better or worse than a B+Tree?
Hash-Based Indexes Chapter 11
Hashing CENG 351.
Disk Storage, Basic File Structures, and Hashing
Database Management Systems (CS 564)
Data Structures Using C++ 2E
Review Graph Directed Graph Undirected Graph Sub-Graph
Disk Storage, Basic File Structures, and Hashing
Hash Tables.
Chapter 10 Hashing.
CS222: Principles of Data Management Notes #8 Static Hashing, Extendible Hashing, Linear Hashing Instructor: Chen Li.
Hash-Based Indexes Chapter 10
Indexing and Hashing Basic Concepts Ordered Indices
CS222P: Principles of Data Management Notes #8 Static Hashing, Extendible Hashing, Linear Hashing Instructor: Chen Li.
Hashing.
Hash-Based Indexes Chapter 11
Indexing and Hashing B.Ramamurthy Chapter 11 2/5/2019 B.Ramamurthy.
CS202 - Fundamental Structures of Computer Science II
Database Systems (資料庫系統)
Advanced Implementation of Tables
2018, Spring Pusan National University Ki-Joune Li
Hashing Sections 10.2 – 10.3 Lecture 26 CS302 Data Structures
Hash-Based Indexes Chapter 11
Chapter 11 Instructor: Xin Zhang
Advance Database System
CS222/CS122C: Principles of Data Management UCI, Fall 2018 Notes #07 Static Hashing, Extendible Hashing, Linear Hashing Instructor: Chen Li.
Lecture-Hashing.
Presentation transcript:

Advance Database System Lecture # 3 Department of Computer Science University of Lahore January 17, 2019 ADBS: Storage

Hashing Techniques January 17, 2019 ADBS: Storage

Review of Previous Lecture The Storage Hierarchy Disk Storage Devices Records Blocking Files Of Records Unordered Files Ordered Files January 17, 2019 ADBS: Storage

Scope of Today Lecture What Is Hashing Type Of Hashing Internal Hashing External Hashing Dynamic Hashing Extendible Hashing January 17, 2019 ADBS: Storage

Hashing Another type of primary file organization is based on hashing, which provides very fast access to records on certain search conditions. This practice is usually called a hash file. The search condition must be an equality condition on a single field, called the hash field of the file. In most cases, the hash field is also a key field of the file. The idea behind hashing is to provide a function h, called a hash function or randomizing function, that is applied to the hash field value of a record and yields the address of the disk block in which the record is stored. A search for the record within the block can be carried out in a main memory buffer. For most records, we need only a single-block access to retrieve that record. January 17, 2019 ADBS: Storage

Hashing Hashing is also used as an internal search structure within a program whenever a group of records is accessed exclusively by using the value of one field. Hashing is also used when a modified record is stored on external files on disk January 17, 2019 ADBS: Storage

Internal Hashing For internal files, hashing is typically implemented as a hash table through the use of an array of records. Suppose that the array index range is from 0 to M – 1 January 17, 2019 ADBS: Storage

Internal Hashing then we have M slots whose addresses correspond to the array indexes. We choose a hash function that transforms the hash field value into an integer between 0 and M - 1. One common hash function is the h(K) = K mod M function, which returns the remainder of an integer hash field value K after division by M; this value is then used for the record address. Noninteger hash field values can be transformed into integers before the mod function is applied. For character strings, the numeric (ASCII) codes associated with characters can be used in January 17, 2019 ADBS: Storage

Example Five employee records having empid [0,1,2,3, 4] is key field. Hash function is “mod 5” The hash table is given. Key mod 5 = give the array index Key record 1 2 3 4 January 17, 2019 ADBS: Storage

Example Five employee records having empid [0,1,2,3, 4] is key field. Hash function is “mod 5” The hash table is given. Key mod 5 = give the array index 0 mod 5 = 0 then record goes to array index 0. Key record R0 1 2 3 4 January 17, 2019 ADBS: Storage

Example Five employee records having empid [0,1,2,3, 4] is key field. Hash function is “mod 5” The hash table is given. Key mod 5 = give the array index 0 mod 5 = 0 then record goes to array index 0. 1 mod 5 = 1 then record goes to array index 1. Key record R0 1 R1 2 3 4 January 17, 2019 ADBS: Storage

Example Five employee records having empid [0,1,2,3, 4] is key field. Hash function is “mod 5” The hash table is given. Key mod 5 = give the array index 0 mod 5 = 0 then record goes to array index 0. 1 mod 5 = 1 then record goes to array index 1. 2 mod 5 = 2 then record goes to array index 2. Key record R0 1 R1 2 R2 3 4 January 17, 2019 ADBS: Storage

Example Key record R0 1 R1 2 R2 3 R3 4 R4 Five employee records having empid [0,1,2,3, 4] is key field. Hash function is “mod 5” The hash table is given. Key mod 5 = give the array index 0 mod 5 = 0 then record goes to array index 0. 1 mod 5 = 1 then record goes to array index 1. 2 mod 5 = 2 then record goes to array index 2. 3 mod 5 = 3 then record goes to array index 3. 4 mod 5 = 4 then record goes to array index 4. Key record R0 1 R1 2 R2 3 R3 4 R4 January 17, 2019 ADBS: Storage

Load Factor The performance of most collision resolution methods does not depend directly on the number n of stored entries, but depends strongly on the table's load factor, the ratio n/s between n and the size s of its bucket array. With a good hash function, the average lookup cost is nearly constant as the load factor increases from 0 up to 0.7 or so. Beyond that point, the probability of collisions and the cost of handling them increases. On the other hand, as the load factor approaches zero, the size of the hash table increases with little improvement in the search cost, and memory is wasted. January 17, 2019 ADBS: Storage

Problem with Hashing The problem with most hashing functions is that they do not guarantee that distinct values will hash to distinct addresses Because the hash field space-the number of possible values a hash field can take-is usually much larger than the address space-the number of available addresses for records. The hashing function maps the hash field space to the address space. A collision occurs when the hash field value of a record that is being inserted hashes to an address that already contains a different record. In this situation, we must insert the new record in some other position, since its hash address is occupied. The process of finding another position is called collision resolution January 17, 2019 ADBS: Storage

Example Key record R0 1 R1 2 R2 3 R3 4 Five employee records having empid [0,1,2,3, 4] is key field. Hash function is “mod 5” The hash table is given. Key mod 5 = give the array index 0 mod 5 = 0 then record goes to array index 0. 1 mod 5 = 1 then record goes to array index 1. 2 mod 5 = 2 then record goes to array index 2. 3 mod 5 = 3 then record goes to array index 3. Key record R0 1 R1 2 R2 3 R3 4 January 17, 2019 ADBS: Storage

Example Key record R0 1 R1 2 R2 3 R3/R4 4 Five employee records having empid [0,1,2,3, 4] is key field. Hash function is “mod 5” The hash table is given. Key mod 5 = give the array index 0 mod 5 = 0 then record goes to array index 0. 1 mod 5 = 1 then record goes to array index 1. 2 mod 5 = 2 then record goes to array index 2. 3 mod 5 = 3 then record goes to array index 3. 18 mod 5 = 3 Key record R0 1 R1 2 R2 3 R3/R4 4 January 17, 2019 ADBS: Storage

Collision Resolution Open addressing: Proceeding from the occupied position specified by the hash address, the program checks the subsequent positions in order until an unused (empty) position is found. January 17, 2019 ADBS: Storage

Open addressing January 17, 2019 ADBS: Storage

Collision Resolution Chaining For this method, various overflow locations are kept, usually by extending the array with a number of overflow positions. In addition, a pointer field is added to each record location. A collision is resolved by placing the new record in an unused overflow location and setting the pointer of the occupied hash address location to the address of that overflow location. A linked list of overflow records for each hash address is thus maintained, as shown in Figure January 17, 2019 ADBS: Storage

January 17, 2019 ADBS: Storage

Collision Resolution Multiple hashing: The program applies a second hash function if the first results in a collision. If another collision results, the program uses open addressing or applies a third hash function and then uses open addressing if necessary. January 17, 2019 ADBS: Storage

Issues of Hashing Each collision resolution method requires its own algorithms for insertion, retrieval, and deletion of records. The algorithms for chaining are the simplest. Deletion algorithms for open addressing are rather tricky. The goal of a good hashing function is to distribute the records uniformly over the address space so as to minimize collisions while not leaving many unused locations. Simulation and analysis studies have shown that it is usually best to keep a hash table between 70 and 90 percent full so that the number of collisions remains low and we do not waste too much space. Hence, if we expect to have r records to store in the table, we should choose M locations for the address space such that (r/M) is between 0.7 and 0.9. January 17, 2019 ADBS: Storage

External Hashing Hashing for disk files is called external hashing. To suit the characteristics of disk storage, the target address space is made of buckets, each of which holds multiple records. A bucket is either one disk block or a cluster of blocks. The hashing function maps a key into a relative bucket number, rather than assign an absolute block address to the bucket. A table maintained in the file header converts the bucket number into the corresponding disk block address, as illustrated in Figure The pointers in the linked list should be record pointers, which include both a block address and a relative record position within the block. January 17, 2019 ADBS: Storage

Overflow Handling January 17, 2019 ADBS: Storage

Issues of external Hashing The hashing scheme described is called static hashing because a fixed number of buckets M is allocated. This can be a serious drawback for dynamic files. Suppose that we allocate M buckets for the address space and let m be the maximum number of records that can fit in one bucket; then at most (r * M) records will fit in the allocated space. If the number of records turns out to be substantially fewer than (r * M), we are left with a lot of unused space. On the other hand, if the number of records increases to substantially more than (m * M), numerous collisions will result and retrieval will be slowed down because of the long lists of overflow records. In either case, we may have to change the number of blocks M allocated and then use a new hashing function (based on the new value of M) to redistribute the records. These reorganizations can be quite time consuming for large files. January 17, 2019 ADBS: Storage

Issues of external Hashing When using external hashing, searching for a record given a value of some field other than the hash field is as expensive as in the case of an unordered file. Modifying a record's field value depends on two factors: (1) the search condition to locate the record and (2) the field to be modified. If the search condition is an equality comparison on the hash field, we can locate the record efficiently by using the hashing function; otherwise, we must do a linear search. A nonhash field can be modified by changing the record and rewriting it in the same bucket. Modifying the hash field means that the record can move to another bucket, which requires deletion of the old record followed by insertion of the modified record. January 17, 2019 ADBS: Storage

Dynamic Hashing A major drawback of the static hashing scheme just discussed is that the hash address space is fixed. Hence, it is difficult to expand or shrink the file dynamically. The first scheme-extendible hashing-stores an access structure in addition to the file, and hence is somewhat similar to indexing. The main difference is that the access structure is based on the values that result after application of the hash function to the search field. In indexing, the access structure is based on the values of the search field itself. The second technique, called linear hashing, does not require additional access structures. January 17, 2019 ADBS: Storage

Dynamic Hashing These hashing schemes take advantage of the fact that the result of applying a hashing function is a nonnegative integer and hence can be represented as a binary number. The access structure is built on the binary representation of the hashing function result, which is a string of bits. We call this the hash value of a record. Records are distributed among buckets based on the values of the leading bits in their hash values January 17, 2019 ADBS: Storage

Dynamic Hashing In extendible hashing, a type of directory n array of 2d bucket addresses is maintained, where d is called the global depth of the directory. The integer value corresponding to the first (high-order) d bits of a hash value is used as an index to the array to determine a directory entry, and the address in that entry determines the bucket in which the corresponding records are stored. However, there does not have to be a distinct bucket for each of the 2d directory locations. Several directory locations with the same first d' bits for their hash values may contain the same bucket address if all the records that hash to these locations fit in a single bucket. A local depth d‘ stored with each bucket specifies the number of bits on which the bucket contents are based. Figure shows a directory with global depth d = 3. January 17, 2019 ADBS: Storage

Dynamic Hashing January 17, 2019 ADBS: Storage

Use of Extendable Hash Structure: Example Initial Hash structure, bucket size = 2 January 17, 2019 ADBS: Storage

Example (Cont.) Hash structure after insertion of one Brighton and two Downtown records January 17, 2019 ADBS: Storage

Hash structure after insertion of Mianus record Example (Cont.) Hash structure after insertion of Mianus record January 17, 2019 ADBS: Storage

Hash structure after insertion of three Perryridge records Example (Cont.) Hash structure after insertion of three Perryridge records January 17, 2019 ADBS: Storage

Example (Cont.) Hash structure after insertion of Redwood and Round Hill records January 17, 2019 ADBS: Storage January 17, 2019

Example Insert 20, Binary is = 10100 13* 00 01 10 11 2 LOCAL DEPTH GLOBAL DEPTH DIRECTORY Bucket A Bucket B Bucket C Bucket D 10* 1* 21* 4* 12* 32* 16* 15* 7* 19* 5* Insert 20, Binary is = 10100 Record goes to bucket A, here is collision. Now we perform two steps. If the local depth of collision bucket is equal to global depth of directory then double the directory size, and spilt the bucket as well. January 17, 2019 ADBS: Storage

Example 20* 00 01 10 11 2 LOCAL DEPTH DIRECTORY GLOBAL DEPTH Bucket A Bucket B Bucket C Bucket D Bucket A2 (`split image' of Bucket A) 1* 5* 21* 13* 32* 16* 10* 15* 7* 19* 4* 12* GLOBAL DEPTH 19* 2 000 001 010 011 100 101 110 111 3 DIRECTORY Bucket A Bucket B Bucket C Bucket D Bucket A2 (`split image' of Bucket A) 32* 1* 5* 21* 13* 16* 10* 15* 7* 4* 20* 12* LOCAL DEPTH January 17, 2019 ADBS: Storage

Review of Lecture What Is Hashing Type Of Hashing Internal Hashing External Hashing Dynamic Hashing Extendible Hashing Linear Hashing January 17, 2019 ADBS: Storage

Thanks January 17, 2019 ADBS: Storage