CMU SCS Carnegie Mellon Univ. Dept. of Computer Science 15-415/615 - DB Applications C. Faloutsos – A. Pavlo Lecture#14: Implementation of Relational Operations.

Slides:



Advertisements
Similar presentations
Database Management Systems, R. Ramakrishnan and J. Gehrke1 Evaluation of Relational Operations Chapter 12, Part A.
Advertisements

Equality Join R X R.A=S.B S : : Relation R M PagesN Pages Relation S Pr records per page Ps records per page.
1 Overview of Query Evaluation Chapter Outline  Query Optimization Overview  Algorithm for Relational Operations.
Database Management Systems 3ed, R. Ramakrishnan and Johannes Gehrke1 Evaluation of Relational Operations: Other Techniques Chapter 14, Part B.
Implementation of Other Relational Algebra Operators, R. Ramakrishnan and J. Gehrke1 Implementation of other Relational Algebra Operators Chapter 12.
Database Management Systems, R. Ramakrishnan and Johannes Gehrke1 Evaluation of Relational Operations: Other Techniques Chapter 12, Part B.
Database Management Systems, R. Ramakrishnan and Johannes Gehrke1 Evaluation of Relational Operations: Other Techniques Chapter 12, Part B.
1 Overview of Query Evaluation Chapter Objectives  Preliminaries:  Core query processing techniques  Catalog  Access paths to data  Index matching.
Implementation of Relational Operations CS186, Fall 2005 R&G - Chapter 14 First comes thought; then organization of that thought, into ideas and plans;
1 Implementation of Relational Operations Module 5, Lecture 1.
Evaluation of Relational Operators 198:541. Relational Operations  We will consider how to implement: Selection ( ) Selects a subset of rows from relation.
1  Simple Nested Loops Join:  Block Nested Loops Join  Index Nested Loops Join  Sort Merge Join  Hash Join  Hybrid Hash Join Evaluation of Relational.
SPRING 2004CENG 3521 Join Algorithms Chapter 14. SPRING 2004CENG 3522 Schema for Examples Similar to old schema; rname added for variations. Reserves:
Implementation of Relational Operations CS 186, Spring 2006, Lecture 14&15 R&G Chapters 12/14 First comes thought; then organization of that thought, into.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Query Evaluation Chapter 12.
1 Optimization - Selection. 2 The Selection Operation Table: Reserves(sid, bid, day, agent) A page (block) can hold 100 Reserves tuples There are 1,000.
Query Optimization 3 Cost Estimation R&G, Chapters 12, 13, 14 Lecture 15.
Implementation of Relational Operations R&G - Chapters 12 and 14.
Introduction to Database Systems 1 Join Algorithms Query Processing: Lecture 1.
1 Evaluation of Relational Operations: Other Techniques Chapter 12, Part B.
1 Evaluation of Relational Operations Yanlei Diao UMass Amherst March 01, 2007 Slides Courtesy of R. Ramakrishnan and J. Gehrke.
Evaluation of Relational Operations. Relational Operations v We will consider how to implement: – Selection ( ) Selects a subset of rows from relation.
CMU SCS Carnegie Mellon Univ. Dept. of Computer Science /615 - DB Applications C. Faloutsos – A. Pavlo Lecture#14: Implementation of Relational Operations.
1 Implementation of Relational Operations: Joins.
Overview of Implementing Relational Operators and Query Evaluation
CPSC 404, Laks V.S. Lakshmanan1 Evaluation of Relational Operations: Other Operations Chapter 14 Ramakrishnan & Gehrke (Sections ; )
Relational Operator Evaluation. Overview Index Nested Loops Join If there is an index on the join column of one relation (say S), can make it the inner.
Lec3/Database Systems/COMP4910/031 Evaluation of Relational Operations Chapter 14.
RELATIONAL JOIN Advanced Data Structures. Equality Joins With One Join Column External Sorting 2 SELECT * FROM Reserves R1, Sailors S1 WHERE R1.sid=S1.sid.
Implementing Natural Joins, R. Ramakrishnan and J. Gehrke with corrections by Christoph F. Eick 1 Implementing Natural Joins.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Implementing Relational Operators and Query Evaluation Chapter 12.
Relational Operator Evaluation. Overview Application Programmer (e.g., business analyst, Data architect) Sophisticated Application Programmer (e.g.,
CPSC 404, Laks V.S. Lakshmanan1 Evaluation of Relational Operations – Join Chapter 14 Ramakrishnan and Gehrke (Section 14.4)
Query Execution. Where are we? File organizations: sorted, hashed, heaps. Indexes: hash index, B+-tree Indexes can be clustered or not. Data can be stored.
Implementation of Relational Operations R&G - Chapter 14 First comes thought; then organization of that thought, into ideas and plans; then transformation.
Database Management Systems 1 Raghu Ramakrishnan Evaluation of Relational Operations Chpt 14.
Hash Tables and Query Execution March 1st, Hash Tables Secondary storage hash tables are much like main memory ones Recall basics: –There are n.
Relational Operator Evaluation. overview Projection Two steps –Remove unwanted attributes –Eliminate any duplicate tuples The expensive part is removing.
Implementation of Database Systems, Jarek Gryz1 Evaluation of Relational Operations Chapter 12, Part A.
Query Execution Query compiler Execution engine Index/record mgr. Buffer manager Storage manager storage User/ Application Query update Query execution.
Alon Levy 1 Relational Operations v We will consider how to implement: – Selection ( ) Selects a subset of rows from relation. – Projection ( ) Deletes.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Evaluation of Relational Operations Chapter 14, Part A (Joins)
1 Overview of Query Evaluation Chapter Outline  Query Optimization Overview  Algorithm for Relational Operations.
Relational Operator Evaluation. Application Programmer (e.g., business analyst, Data architect) Sophisticated Application Programmer (e.g., SAP admin)
Implementation of Relational Operations Jianlin Feng School of Software SUN YAT-SEN UNIVERSITY courtesy of Joe Hellerstein, Mike Franklin, and etc for.
Database Applications (15-415) DBMS Internals- Part VII Lecture 16, October 25, 2016 Mohammad Hammoud.
Evaluation of Relational Operations
Evaluation of Relational Operations: Other Operations
Relational Operations
CS222P: Principles of Data Management Notes #11 Selection, Projection
Database Applications (15-415) DBMS Internals- Part VII Lecture 19, March 27, 2018 Mohammad Hammoud.
Database Applications (15-415) DBMS Internals- Part VI Lecture 15, Oct 23, 2016 Mohammad Hammoud.
CS222P: Principles of Data Management Notes #12 Joins!
Faloutsos/Pavlo CMU /615 Carnegie Mellon Univ. Dept. of Computer Science /615 - DB Applications C. Faloutsos – A. Pavlo Lecture#14: Implementation.
CS222: Principles of Data Management Notes #12 Joins!
Implementation of Relational Operations
Overview of Query Evaluation
Overview of Query Evaluation
Implementation of Relational Operations
CS222: Principles of Data Management Notes #11 Selection, Projection
Evaluation of Relational Operations: Other Techniques
Overview of Query Evaluation: JOINS
Implementation of Relational Operations
Evaluation of Relational Operations: Other Techniques
CS222/CS122C: Principles of Data Management UCI, Fall 2018 Notes #10 Selection, Projection Instructor: Chen Li.
CS222/CS122C: Principles of Data Management UCI, Fall Notes #11 Join!
CS222P: Principles of Data Management UCI, Fall 2018 Notes #11 Join!
Presentation transcript:

CMU SCS Carnegie Mellon Univ. Dept. of Computer Science /615 - DB Applications C. Faloutsos – A. Pavlo Lecture#14: Implementation of Relational Operations

CMU SCS Last Class Sorting: –External Merge Sort Projection: –External Merge Sort –Two-Phase Hashing Faloutsos/PavloCMU SCS /6152 These are for when the data is larger than the amount of memory available.

CMU SCS Query Processing Some database operations are expensive. The DBMS can greatly improve performance by being “smart” –e.g., can speed up 1,000,000x over naïve approach Faloutsos/PavloCMU SCS /6153

CMU SCS Query Processing There are clever implementation techniques for operators. We can exploit “equivalencies” of relational operators to do less work. Use statistics and cost models to choose among these. Faloutsos/PavloCMU SCS /6154 Work smarter, not harder.

CMU SCS Today’s Class Introduction Selection Joins Explain Faloutsos/PavloCMU SCS /6155

CMU SCS sidbiddayrname matlock macgyver a-team dallas Sample Database Faloutsos/PavloCMU SCS /6156 SAILORSRESERVES sidsnameratingage 1Trump Obama Tupac Bieber Sailors(sid: int, sname: varchar, rating: int, age: real) Reserves(sid: int, bid: int, day: date, rname: varchar)

CMU SCS Sample Database Faloutsos/PavloCMU SCS /6157 SAILORSRESERVES Each tuple is 50 bytes 80 tuples per page 500 pages total N=500, p S =80 Each tuple is 40 bytes 100 tuples per page 1000 pages total M=1000, p R =100 sidbiddayrname matlock macgyver a-team dallas sidsnameratingage 1Trump Obama Tupac Bieber1019.0

CMU SCS Single-Table Selection Faloutsos/PavloCMU SCS /6158 SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’ SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’  rname<‘C%’ (Reserves ) RESERVES  rname<‘C%’

CMU SCS Single-Table Selection What’s the best way to execute this query? A: It depends on… –What indexes and access paths are available. –What is the expected size of the result (in terms of number of tuples and/or number of pages) Faloutsos/PavloCMU SCS /6159 SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’ SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’

CMU SCS Access Paths How the DBMS retrieves tuples from a table for a query plan. –File Scan (aka Sequential Scan) –Index Scan (Tree, Hash, List, …) Selectivity of an access path: –% of pages we retrieve –e.g., Selectivity of a hash index, on range query: 100% (no reduction!) Faloutsos/PavloCMU SCS /61510

CMU SCS Simple Selections Size of result approximated as: –(size of R) ∙ (selectivity) Selectivity is also called Reduction Factor. The estimate of reduction factors is based on statistics – we will discuss shortly. Faloutsos/PavloCMU SCS /61511

CMU SCS Selection Options No Index, Unsorted Data No Index, Sorted Data B+Tree Index Hash Index, Equality Selection Faloutsos/PavloCMU SCS /61512

CMU SCS Selection: No Index, Unsorted Data Must scan the whole relation. –Cost: M For “Reserves” = 1000 I/Os. Faloutsos/PavloCMU SCS /61513 SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’ SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’

CMU SCS Selection: No Index, Sorted Data Cost of binary search + number of pages containing results. – Cost: log 2 M +  selectivity ∙ #pages  Faloutsos/PavloCMU SCS /61514 SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’ SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’

CMU SCS Selection: B+Tree Index With an index on selection attribute: –Use index to find qualifying data entries, then retrieve corresponding data records. Note: Hash indexes are only useful for equality selections. Faloutsos/PavloCMU SCS /61515 SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’ SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’

CMU SCS Selection: B+Tree Index Cost depends on #qualifying tuples, and clustering. –Finding qualifying data entries (typically small) –Plus cost of retrieving records (could be large w/o clustering). Faloutsos/PavloCMU SCS /61516

CMU SCS B+Tree Indexes Faloutsos/PavloCMU SCS /61517

CMU SCS B+Tree Indexes Faloutsos/PavloCMU SCS /61518 rid→data

CMU SCS Selection: B+Tree Index In example “Reserves” relation, if 10% of tuples qualify (100 pages, 10,000 tuples): –With a clustered index, cost is little more than 100 I/Os; –If unclustered, could be up to 10,000 I/Os! unless… Faloutsos/PavloCMU SCS /61519 SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’ SELECT * FROM Reserves AS R WHERE R.rname < ‘C%’

CMU SCS Selection: B+Tree Index Refinement for unclustered indexes: –Find qualifying data records by their rid. –Sort rid’s of the data records to be retrieved. –Fetch rids in order. This ensures that each data page is looked at just once (though # of such pages likely to be higher than with clustering). Faloutsos/PavloCMU SCS /61520

CMU SCS Partial Indexes Create an index on a subset of the entire table. This potentially reduces its size and the amount of overhead to maintain it. Faloutsos/PavloCMU SCS /61521 CREATE INDEX idx_foo ON foo (a, b) WHERE c = ‘WuTang’ CREATE INDEX idx_foo ON foo (a, b) WHERE c = ‘WuTang’ SELECT b FROM foo WHERE a = 123 AND c = ‘WuTang’

CMU SCS Covering Indexes If all of the fields needed to process the query are available in an index, then the DBMS does not need to retrieve the tuple. Faloutsos/PavloCMU SCS /61522 SELECT b FROM foo WHERE a = 123 CREATE INDEX idx_foo ON foo (a, b)

CMU SCS Index Include Columns Embed additional columns in indexes to support index-only queries. Not part of the search key. Faloutsos/PavloCMU SCS /61523 SELECT b FROM foo WHERE a = 123 AND c = ‘WuTang’ CREATE INDEX idx_foo ON foo (a, b) INCLUDE (c) CREATE INDEX idx_foo ON foo (a, b) INCLUDE (c)

CMU SCS Selection Conditions A B-tree index matches terms that involve only attributes in a prefix of the search key. –Index on matches (a=5 AND b=3), but not (b=3). For Hash index, we must have all attributes in search key. Faloutsos/PavloCMU SCS /61524

CMU SCS B+Tree Prefix Search Faloutsos/PavloCMU SCS /61525 yzxxxyzyzz Key = xy Key = _y ?

CMU SCS Two Approaches to Selection Approach #1: Find the cheapest access path, retrieve tuples using it, and apply any remaining terms that don’t match the index Approach #2: Use multiple indexes to find the intersection of matching tuples. Faloutsos/PavloCMU SCS /61526

CMU SCS Approach #1 Find the cheapest access path, retrieve tuples using it, and apply any remaining terms that don’t match the index: –Cheapest access path: An index or file scan with fewest I/Os. –Terms that match this index reduce the number of tuples retrieved; other terms help discard some retrieved tuples, but do not affect number of tuples/pages fetched. Faloutsos/PavloCMU SCS /61527

CMU SCS Approach #1 – Example A B+ tree index on day can be used; –then, bid=5 and sid=3 must be checked for each retrieved tuple. Similarly, a hash index on could be used; –Then, day<‘12/12/2015’ must be checked. Faloutsos/PavloCMU SCS /61528 (day<‘12/12/2015’ AND bid=5 AND sid=3)

CMU SCS Approach #1 – Example How about a B+tree on ? How about a Hash index on ? Faloutsos/PavloCMU SCS /61529 (day<‘12/12/2015’ AND bid=5 AND sid=3) What if we have multiple indexes?

CMU SCS Approach #2 Get rids from first index; rids from second index; intersect and fetch. If we have 2 or more matching indexes: –Get sets of rids of data records using each matching index. –Then intersect these sets of rids. –Retrieve the records and apply any remaining terms. Faloutsos/PavloCMU SCS /61530

CMU SCS Approach #2 – Example With an index on day and an index on sid, –We can retrieve rids of records satisfying day<‘12/12/2015’ using the first, –rids of recs satisfying sid=3 using the second, –intersect, –retrieve records and check bid=5. Faloutsos/PavloCMU SCS /61531 (day<‘12/12/2015’ AND bid=5 AND sid=3)

CMU SCS Approach #2 – Example Faloutsos/PavloCMU SCS /61532 (day<‘12/12/2015’ AND bid=5 AND sid=3) day<‘12/12/2015’ sid=3 record ids bid=5 fetch records Set intersection can be done with bitmaps, hash tables, or bloom filters.

CMU SCS Summary For selections, we always want an index. –B+Trees are more versatile. –Hash indexes are faster, but only support equality predicates. Last resort is to just scan entire table. Faloutsos/PavloCMU SCS /61533 almost!

CMU SCS Today’s Class Introduction Selection Joins Explain Faloutsos/PavloCMU SCS /61534

CMU SCS Joins RS is very common and thus must be carefully optimized. R×S followed by a selection is inefficient because cross-product is large. There are many approaches to reduce join cost, but no one works best for all cases. Remember, join is associative and commutative. Faloutsos/PavloCMU SCS /61535

CMU SCS Joins Join techniques we will cover: –Nested Loop Joins –Index Nested Loop Joins –Sort-Merge Joins –Hash Joins Faloutsos/PavloCMU SCS /61536

CMU SCS Joins Assume: –M pages in R, pR tuples per page, m tuples total –N pages in S, pS tuples per page, n tuples total –In our examples, R is Reserves and S is Sailors. We will consider more complex join conditions later. Cost metric: # of I/Os Faloutsos/PavloCMU SCS /61537 We will ignore output costs

CMU SCS First Example Assume that we don’t know anything about the tables and we don’t have any indexes. Faloutsos/PavloCMU SCS /61538 SELECT * FROM Reserves R, Sailors S WHERE R.sid = S.sid SELECT * FROM Reserves R, Sailors S WHERE R.sid = S.sid

CMU SCS Simple Nested Loop Join Algorithm #0: Simple Nested Loop Join Faloutsos/PavloCMU SCS /61539 foreach tuple r of R foreach tuple s of S output, if they match R(A,..) S(A,......)

CMU SCS Simple Nested Loop Join Algorithm #0: Simple Nested Loop Join Faloutsos/PavloCMU SCS /61540 foreach tuple r of R foreach tuple s of S output, if they match outer relation inner relation R(A,..) S(A,......)

CMU SCS Simple Nested Loop Join Algorithm #0: Why is it bad? How many disk accesses (‘M’ and ‘N’ are the number of blocks for ‘R’ and ‘S’)? –Cost: M + (pR ∙ M) ∙ N Faloutsos/PavloCMU SCS /61541 R(A,..) S(A,......) M pages, m tuples N pages, n tuples

CMU SCS Simple Nested Loop Join Actual number: –M + (pR ∙ M) ∙ N = ∙ 1000 ∙ 500 = 50,001,000 I/Os –At 10ms/IO, Total time ≈ 5.7 days What if smaller relation (S) was outer? –Slightly better… What assumptions are being made here? –1 buffer for each table (and 1 for output) Faloutsos/PavloCMU SCS /61542

CMU SCS Simple Nested Loop Join Actual number: –M + (pR ∙ M) ∙ N = ∙ 1000 ∙ 500 = 50,001,000 I/Os –At 10ms/IO, Total time ≈ 5.7 days What if smaller relation (S) was outer? –Slightly better… What assumptions are being made here? –1 buffer for each table (and 1 for output) Faloutsos/PavloCMU SCS /61543 SSD ≈ 1.3 hours at 0.1ms/IO

CMU SCS Simple Nested Loop Join Actual number: –M + (pR ∙ M) ∙ N = ∙ 1000 ∙ 5000 = 50,001,000 I/Os –At 10ms/IO, Total time ≈ 5.7 days What if smaller relation (S) was outer? –Slightly better… What assumptions are being made here? –1 buffer for each table (and 1 for output) Faloutsos/PavloCMU SCS /61544 SSD ≈ 1.3 hours at 0.1ms/IO

CMU SCS Simple Nested Loop Join Actual number: –M + (pR ∙ M) ∙ N = ∙ 1000 ∙ 5000 = 50,001,000 I/Os –At 10ms/IO, Total time ≈ 5.7 days What if smaller relation (S) was outer? –Slightly better… What assumptions are being made here? –1 buffer for each table (and 1 for output) Faloutsos/PavloCMU SCS /61545 SSD ≈ 1.3 hours at 0.1ms/IO

CMU SCS Block Nested Loop Join Algorithm #1: Block Nested Loop Join Faloutsos/PavloCMU SCS /61546 read block from R read block from S output, if tuples match R(A,..) S(A,......) M pages, m tuples N pages, n tuples

CMU SCS Block Nested Loop Join Algorithm #1: Things are better. How many disk accesses (‘M’ and ‘N’ are the number of blocks for ‘R’ and ‘S’)? –Cost: M + (M∙N) Faloutsos/PavloCMU SCS /61547 R(A,..) S(A,......) M pages, m tuples N pages, n tuples

CMU SCS Block Nested Loop Join Actual number: –M + (M∙N) = ∙ 500 = 501,000 I/Os –At 10ms/IO, Total time ≈ 1.4 hours What if we use the smaller one as the outer relation? –The smallest in terms of # of pages. Faloutsos/PavloCMU SCS /61548 SSD ≈ 50 seconds at 0.1ms/IO

CMU SCS Block Nested Loop Join Actual number: –N + (M∙N) = ∙ 500 = 500,500 I/Os –At 10ms/IO, Total time ≈ 1.4 hours What if we have B buffers available? –Give B-2 buffers to outer relation, 1 to inner relation, 1 for output Faloutsos/PavloCMU SCS /61549

CMU SCS Block Nested Loop Join Algorithm #1: Using multiple buffers. Faloutsos/PavloCMU SCS /61550 read B-2 blocks from R read block from S output, if tuples match R(A,..) S(A,......) M pages, m tuples N pages, n tuples

CMU SCS Block Nested Loop Join Algorithm #1: Using multiple buffers. How many disk accesses (‘M’ and ‘N’ are the number of blocks for ‘R’ and ‘S’)? –Cost: M+ (  M/(B-2)  ∙N ) Faloutsos/PavloCMU SCS /61551 R(A,..) S(A,......) M pages, m tuples N pages, n tuples

CMU SCS Block Nested Loop Join Algorithm #1: Using multiple buffers. But if the outer relation fits in memory: –Cost: M+N Faloutsos/PavloCMU SCS /61552 R(A,..) S(A,......) M pages, m tuples N pages, n tuples

CMU SCS Block Nested Loop Join Actual number: –M + N = = 1500 –At 10ms/IO, Total time ≈ 15 seconds Faloutsos/PavloCMU SCS /61553 SSD ≈ 0.15 seconds at 0.1ms/IO

CMU SCS Joins Join techniques we will cover: –Nested Loop Joins –Index Nested Loop Joins –Sort-Merge Joins –Hash Joins Faloutsos/PavloCMU SCS /61554

CMU SCS Index Nested Loop Why do basic nested loop joins suck? –For each tuple in the outer table, we have to do a sequential scan to check for a match in the inner table. A better approach is to use an index to find inner table matches. –We could use an existing index, or even build one on the fly. Faloutsos/PavloCMU SCS /61555

CMU SCS Index Nested Loop Join Algorithm #2: Index Nested Loop Join Faloutsos/PavloCMU SCS /61556 foreach tuple r of R foreach tuple s of S, where r i ==s j output Index Probe R(A,..) S(A,......) M pages, m tuples N pages, n tuples

CMU SCS Index Nested Loop Join Algorithm #2: Index Nested Loop Join How many disk accesses (‘M’ and ‘N’ are the number of blocks for ‘R’ and ‘S’)? –Cost: M + m ∙ C Faloutsos/PavloCMU SCS /61557 R(A,..) S(A,......) M pages, m tuples N pages, n tuples Look-up Cost

CMU SCS Nested Loop Joins Guideline Pick the smallest table as the outer relation –i.e., the one with the fewest pages Put as much of it in memory as possible Loop over the inner Faloutsos/PavloCMU SCS /61558

CMU SCS Joins Join techniques we will cover: –Nested Loop Joins –Index Nested Loop Joins –Sort-Merge Joins –Hash Joins Faloutsos/PavloCMU SCS /61559

CMU SCS Sort-Merge Join First sort both tables on joining attribute. Then step through each one in lock-step to find matches. Faloutsos/PavloCMU SCS /61560

CMU SCS Sort-Merge Join This algorithm is useful if: –One or both tables are already sorted on join attribute(s) –Output is required to be sorted on join attributes The “Merge” phase can require some back tracking if duplicate values appear in join column. Faloutsos/PavloCMU SCS /61561

CMU SCS Sort-Merge Join Algorithm #3: Sort-Merge Join How many disk accesses (‘M’ and ‘N’ are the number of blocks for ‘R’ and ‘S’)? –Cost: (2M ∙ logM/logB) + (2N ∙ logN/logB) + M + N Faloutsos/PavloCMU SCS /61562 R(A,..) S(A,......) M pages, m tuples N pages, n tuples

CMU SCS Sort-Merge Join Algorithm #3: Sort-Merge Join How many disk accesses (‘M’ and ‘N’ are the number of blocks for ‘R’ and ‘S’)? –Cost: (2M ∙ logM/logB) + (2N ∙ logN/logB) + M + N Faloutsos/PavloCMU SCS /61563 R(A,..) S(A,......) M pages, m tuples N pages, n tuples Sort Cost Merge Cost

CMU SCS Sort-Merge Join Example Faloutsos/PavloCMU SCS /61564 SELECT * FROM Reserves R, Sailors S WHERE R.sid = S.sid SELECT * FROM Reserves R, Sailors S WHERE R.sid = S.sid sidbiddayrname matlock macgyver a-team dallas sidsnameratingage 1Trump Obama Tupac Bieber Sort!

CMU SCS Sort-Merge Join Example Faloutsos/PavloCMU SCS /61565 SELECT * FROM Reserves R, Sailors S WHERE R.sid = S.sid SELECT * FROM Reserves R, Sailors S WHERE R.sid = S.sid sidbiddayrname macgyver dallas a-team matlock sidsnameratingage 1Trump Tupac Obama Bieber Merge! ✔ ✔ ✔ ✔

CMU SCS Sort-Merge Join Example With 100 buffer pages, both Reserves and Sailors can be sorted in 2 passes: –Cost: 7,500 I/Os –At 10ms/IO, Total time ≈ 75 seconds Block Nested Loop: –Cost: 2,500 to 15,000 I/Os Faloutsos/PavloCMU SCS /61566

CMU SCS Sort-Merge Join Example With 100 buffer pages, both Reserves and Sailors can be sorted in 2 passes: –Cost: 7,500 I/Os –At 10ms/IO, Total time ≈ 75 seconds Block Nested Loop: –Cost: 2,500 to 15,000 I/Os Faloutsos/PavloCMU SCS /61567 SSD ≈ 0.75 seconds at 0.1ms/IO

CMU SCS Sort-Merge Join Worst case for merging phase? –When all of the tuples in both relations contain the same value in the join attribute. –Cost: (M ∙ N) + (sort cost) Don’t worry kids! This is unlikely! Faloutsos/PavloCMU SCS /61568

CMU SCS Sort-Merge Join Optimizations All the refinements from external sorting Plus overlapping of the merging of sorting with the merging of joining. Multi-threaded optimizations. Faloutsos/PavloCMU SCS /61569

CMU SCS Joins Join techniques we will cover: –Nested Loop Joins –Index Nested Loop Joins –Sort-Merge Joins –Hash Joins Faloutsos/PavloCMU SCS /61570

CMU SCS In-Memory Hash Join Faloutsos/PavloCMU SCS /61571 R(A,...) S(A,......) h1h1 Algorithm #4: In-Memory Hash Join build hash table H for R foreach tuple s of S output, if h(s j ) ∈ H build hash table H for R foreach tuple s of S output, if h(s j ) ∈ H This assumes H fits in memory! Hash Probe h1h1 ⋮ Hash Table

CMU SCS Grace Hash Join Hash join when tables don’t fit in memory. –Partition Phase: Hash both tables on the join attribute into partitions. –Probing Phase: Compares tuples in corresponding partitions for each table. Named after the GRACE database machine. Faloutsos/PavloCMU SCS /61572

CMU SCS Grace Hash Join Hash R into (0, 1,..., ‘max’) buckets Hash S into buckets (same hash function) Faloutsos/PavloCMU SCS /61573 R(A,...) S(A,......) ⋮ h1h1 ⋮ h1h1

CMU SCS Grace Hash Join Join each pair of matching buckets: Faloutsos/PavloCMU SCS /61574 R(A,...) S(A,......) ⋮ h1h1 ⋮ h1h1 H R(i) H S(i) max

CMU SCS Grace Hash Join Choose the (page-wise) smallest - if it fits in memory, do a nested loop join Otherwise: –Build another hash table for H S(i), and probe it with each tuple of H R(i) (with H 2 != H 1 ) –And then probe it for each tuple of the other Faloutsos/PavloCMU SCS /61575

CMU SCS Grace Hash Join What if H S(i) is too large to fit in memory? –Recursive Partitioning! –More details (overflows, hybrid hash joins) available in textbook (Ch ) Faloutsos/PavloCMU SCS /61576

CMU SCS Grace Hash Join Cost of hash join? –Assume that we have enough buffers. –Cost: 3(M + N) Partitioning Phase: read+write both tables –2(M+N) I/Os Probing Phase: read both tables –M+N I/Os Faloutsos/PavloCMU SCS /61577

CMU SCS Grace Hash Join Actual number: –3(M + N) = 3 ∙ ( ) = 4,500 I/Os –At 10ms/IO, Total time ≈ 45 seconds Faloutsos/PavloCMU SCS /61578 SSD ≈ 0.45 seconds at 0.1ms/IO

CMU SCS Sort-Merge Join vs. Hash Join Given a minimum amount of memory both have a cost of 3(M+N) I/Os. When do we want to choose one over the other? Faloutsos/PavloCMU SCS /61579

CMU SCS Sort-Merge Join vs. Hash Join Sort-Merge: –Less sensitive to data skew. –Result is sorted (may help upstream operators). –Goes faster if one or both inputs already sorted. Hash: –Superior if relation sizes differ greatly. –Shown to be highly parallelizable. Faloutsos/PavloCMU SCS /61580

CMU SCS Today’s Class Introduction Selection Joins Explain Faloutsos/PavloCMU SCS /61581

CMU SCS EXPLAIN When you precede a SELECT statement with the keyword EXPLAIN, the DBMS displays information from the optimizer about the statement execution plan. The system “explains” how it would process the query, including how tables are joined and in which order. Faloutsos/PavloCMU SCS /61582

CMU SCS EXPLAIN Faloutsos/PavloCMU SCS /61583 Pseudo Query Plan: SELECT bid, COUNT(*) AS cnt FROM Reserves GROUP BY bid ORDER BY cnt SELECT bid, COUNT(*) AS cnt FROM Reserves GROUP BY bid ORDER BY cnt RESERVES GROUP BY COUNT SORT  bid

CMU SCS EXPLAIN Faloutsos/PavloCMU SCS /61584 EXPLAIN SELECT bid, COUNT(*) AS cnt FROM Reserves GROUP BY bid ORDER BY cnt EXPLAIN SELECT bid, COUNT(*) AS cnt FROM Reserves GROUP BY bid ORDER BY cnt Postgres v9.1

CMU SCS EXPLAIN Faloutsos/PavloCMU SCS /61585 EXPLAIN SELECT bid, COUNT(*) AS cnt FROM Reserves GROUP BY bid ORDER BY cnt EXPLAIN SELECT bid, COUNT(*) AS cnt FROM Reserves GROUP BY bid ORDER BY cnt MySQL v5.5

CMU SCS EXPLAIN ANALYZE ANALYZE option causes the statement to be actually executed. The actual runtime statistics are displayed. This is useful for seeing whether the planner's estimates are close to reality. Note that ANALYZE is a Postgres idiom. Faloutsos/PavloCMU SCS /61586

CMU SCS EXPLAIN ANALYZE Faloutsos/PavloCMU SCS /61587 EXPLAIN ANALYZE SELECT bid, COUNT(*) AS cnt FROM Reserves GROUP BY bid ORDER BY cnt EXPLAIN ANALYZE SELECT bid, COUNT(*) AS cnt FROM Reserves GROUP BY bid ORDER BY cnt Postgres v9.1

CMU SCS EXPLAIN ANALYZE Works on any type of query. Since ANALYZE actually executes a query, if you use it with a query that modifies the table, that modification will be made. Faloutsos/PavloCMU SCS /61588

CMU SCS Summary There are multiple ways to do selections if you have different indexes. Joins are difficult to optimize. –Index Nested Loop when selectivity is small. –Sort-Merge/Hash when joining whole tables. Faloutsos/PavloCMU SCS /61589

CMU SCS Next Class Set & Aggregate Operations Query Optimizations Mid-Term Review Faloutsos/PavloCMU SCS /61590