relational operators
play

Relational Operators indexing technology. Now we can move on to - PDF document

Review (2) Review (1) |R| + 1 = 101, where |R| denotes the size of R in pages We would like to sort the tuples of a relation R on a given key. The following is known about the relation: R contains 100,000 tuples. The 2 X 2 X


  1. Review (2) Review (1) • √ |R| + 1 = 101, where |R| denotes the size of R in pages • We would like to sort the tuples of a relation R on a given key. The following is known about the relation: R contains 100,000 tuples. The • 2 X 2 X |R| = 40000 size of a page on disk is 4000 bytes. The size of each R tuple is 400 bytes. R is clustered, i.e., each disk page holding R tuples is full of R • Memory required = 34 (an additional page is needed for the tuples. The size of the sort key is 32 bytes. A record pointer is 8 bytes. random access step in the second phase) Answer the following questions: • If we use a two pass sorting algorithm, what is the minimum amount of main memory (in terms of number of pages) required? memory (in terms of number of pages) required? • This is an optimized version. The I/Os of the sorting scheme is • What is the cost of the two pass sorting algorithm in terms of number of disk I/Os? 122000. This includes 10000 for initially reading R and Include the cost of writing the sorted file to disk. constructing (key, recordPointer) pairs; 1000 I/Os for writing the • Consider the following variant of the sorting algorithm. Instead of sorting the entire tuple, we just sort the (key, recordPointer) for each tuple. As in the conventional sorted runs of (key, recordPointer) pairs to disk; 1000 for reading two pass sorting algorithm, we sort chunks of (key, recordPointer) in main memory the same from disk to merge the runs; 100000 I/Os for random and write the chunks to the tuple (from the original copy of R) and write the sorted access to retrieve the tuples pointed by the record pointer; and relation to disk. What is the minimum amount of main memory required for this operation? What is the cost in terms of number of disk I/Os? finally 10000 I/Os to write the sorted relation R to disk • Keeping all other parameters constant, for what values of tuple size is the variant discussed above better (in the number of I/Os)? • Assume that records are unspanned, then tuplesize > 2001 Introduction • We’ve covered the basic underlying storage, buffering, and Relational Operators indexing technology. • Now we can move on to query processing. • Some database operations are EXPENSIVE • Can greatly improve performance by being “smart” First comes thought; then organization of that thought, into • e.g., can speed up 1,000,000x over naïve approach ideas and plans; then • Main weapons are: transformation of those plans into • clever implementation techniques for operators reality. The beginning, as you will • exploiting “equivalences” of relational operators observe, is in your imagination. • using statistics and cost models to choose among these. Napolean Hill CS5208 3 CS5208 4 Steps of processing a high-level Relational Operations query • We will consider how to implement: • Selection (  ) Selects a subset of rows from relation. Database • Projection (  ) Deletes unwanted columns from relation. Statistics Cost Model • Join ( ) Allows us to combine two relations. • Set-difference ( - ) Tuples in reln. 1, but not in reln. 2. Query Query Parsed Query QEP Parser • Union ( U ) Tuples in reln. 1 and in reln. 2. Optimizer Evaluator • Aggregation (SUM, MIN, etc.) and GROUP BY P1: Sequential Scan P2: Use SAL index High Level Query Query Result Since each op returns a relation, ops can be composed ! SELECT * FROM EMP Queries that require multiple ops to be composed may be composed in WHERE SAL > 50k different ways - thus optimization is necessary for good performance CS5208 5 CS5208 6 1

  2. SELECT S.sname Paradigm FROM Reserves R, Sailors S Example WHERE R.sid=S.sid AND R.bid=100 AND S.rating>5 • Cross product • Index sname • B+-tree, Hash sname sname • assume index entries to be (rid pointer) pair assume index entries to be (rid,pointer) pair rating > 5 ti 5 • Clustered, Unclustered rating > 5 bid=100 sid=sid • Sort sid=sid rating > 5 bid=100 • Hash bid=100 Sailors sid=sid Reserves Sailors Reserves Sailors Reserves CS5208 CS5208 8 Schema for Examples Equality Joins With One Join Column Sailors ( sid : integer, sname : string, rating : integer, age : real) SELECT * sid=sid Reserves ( sid : integer, bid : integer, day : dates, rname : string) Reserves R, Sailors S FROM WHERE R.sid=S.sid • Reserves (R): Sailors Reserves • p R tuples per page, M pages. p R = 100. M = 1000. • In algebra: R S. • Sailors (S): • Most frequently used operation; very costly operation. • p S tuples per page, N pages. p S = 80. N = 500. • join_selectivity = join_size/(#R tuples x #S tuples) • Cost metric: # of I/Os (pages) • We will ignore output costs in the following discussion. CS5208 9 CS5208 10 Join Example Equality Joins With One Join Column Reserve Sailor sname sid sname rating age sid bid day rname SELECT sname 22 dustin 7 45.0 31 101 10/11/96 lubber Reserves R, Sailors S FROM 28 yuppy 9 35.0 58 103 11/12/96 dustin WHERE R.sid=S.sid sid=sid 31 lubber 8 55.5 44 guppy 5 35.0 Sailors Reserves • In algebra: R S. 58 rusty 10 35.0 • Most frequently used operation; very costly operation. • join_selectivity = join_size/(#R tuples x #S tuples) CS5208 11 CS5208 12 2

  3. Join Example Simple Nested Loops Join Reserve Sailor foreach tuple r in R do sid sname rating age sid bid day rname foreach tuple s in S do 22 dustin 7 45.0 31 101 10/11/96 lubber if r.sid == s.sid then add <r, s> to result 28 yuppy 9 35.0 58 103 11/12/96 dustin 31 lubber 8 55.5 • For each tuple in the outer relation R, we scan the • For each tuple in the outer relation R we scan the 44 guppy 5 35.0 entire inner relation S. 58 rusty 10 35.0 • I/O Cost? Query (join) output sid sname rating age bid day rname • Memory? 31 lubber 8 55.5 101 10/11/96 lubber 58 rusty 10 35.0 103 11/12/96 dustin CS5208 13 CS5208 14 Simple Nested Loops Join Simple Nested Loops Join foreach tuple r in R do foreach tuple r in R do foreach tuple s in S do foreach tuple s in S do if r.sid == s.sid then add <r, s> to result if r.sid == s.sid then add <r, s> to result • For each tuple in the outer relation R, we scan the • For each tuple in the outer relation R we scan the • For each tuple in the outer relation R we scan the • For each tuple in the outer relation R, we scan the entire inner relation S. entire inner relation S. • Cost: M + p R * M * N = 1000 + 100*1000*500 I/Os. • Cost: M + p R * M * N = 1000 + 100*1000*500 I/Os. • Memory: 3 pages! CS5208 15 CS5208 16 Examples of Block Nested Loops Block Nested Loops Join • Cost: Scan of outer + #outer blocks * scan of inner • Use one page as an input buffer for scanning the inner S, one • #outer blocks ? page as the output buffer, and use all remaining pages to hold ``block’’ of outer R. • For each matching tuple r in R-block, s in S-page, add <r, s> to result. g p , p g , , Then read next R-block, scan S, etc. R & S Join Result Hash table for block of R (k < B-1 pages) . . . . . . . . . Output buffer Input buffer for S CS5208 17 CS5208 18 3

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend