Presentation is loading. Please wait.

Presentation is loading. Please wait.

CSCI 5708: Query Processing I Pusheng Zhang University of Minnesota Feb 3, 2004.

Similar presentations


Presentation on theme: "CSCI 5708: Query Processing I Pusheng Zhang University of Minnesota Feb 3, 2004."— Presentation transcript:

1 CSCI 5708: Query Processing I Pusheng Zhang University of Minnesota Email: pusheng@cs.umn.edupusheng@cs.umn.edu Feb 3, 2004

2 15.2 CSCI 5708, Spring 2004. University of Minnesota Outline Basic Steps in Query Processing External Sorting Strategies for relational operations  Select Operation  Join Operation  Other Operations Evaluation of Expressions

3 15.3 CSCI 5708, Spring 2004. University of Minnesota Basic Steps in Query Processing FIGURE 15.1 PP 494 Statistics about Data

4 15.4 CSCI 5708, Spring 2004. University of Minnesota Basic Steps in Query Processing (Cont.) Scanning, Parsing, and Validating  translate the query into its internal form. This is then translated into relational algebra.  Parser checks syntax, verifies relations Evaluation  The query-execution engine takes a query-evaluation plan, executes that plan, and returns the answers to the query.

5 15.5 CSCI 5708, Spring 2004. University of Minnesota Basic Steps in Query Processing : Optimization A relational algebra expression may have many equivalent expressions  E.g.,  SALARY < 50K (  SALARY (EMPLOYEE)) is equivalent to  SALARY (  SALARY < 50K (EMLOYEE)) Each relational algebra operation can be evaluated using one of several different algorithms  Correspondingly, a relational-algebra expression can be evaluated in many ways. Annotated expression specifying detailed evaluation strategy is called an evaluation-plan.  E.g., can use an index on SALARY to find employees with SALARY < 50k,  or can perform complete relation scan and discard employees with SALARY  50k

6 15.6 CSCI 5708, Spring 2004. University of Minnesota Basic Steps: Optimization (Cont.) Query Optimization: Amongst all equivalent evaluation plans choose the one with lowest cost.  Cost is estimated using statistical information from the database catalog  e.g. number of tuples in each relation, size of tuples, etc. In query processing we study  How to measure query costs  Algorithms for evaluating relational algebra operations  How to combine algorithms for individual operations in order to evaluate a complete expression In query optimization  We study how to optimize queries, that is, how to find an evaluation plan with lowest estimated cost.  Heuristic rules and systematically estimating

7 15.7 CSCI 5708, Spring 2004. University of Minnesota Measures of Query Cost Cost is generally measured as total elapsed time for answering query  Many factors contribute to time cost  disk accesses, CPU, or even network communication Typically disk access is the predominant cost, and is also relatively easy to estimate. Measured by taking into account  Number of seeks * average-seek-cost  Number of blocks read * average-block-read-cost  Number of blocks written * average-block-write-cost  Cost to write a block is greater than cost to read a block –data is read back after being written to ensure that the write was successful

8 15.8 CSCI 5708, Spring 2004. University of Minnesota Measures of Query Cost (Cont.) For simplicity we just use number of block transfers from disk as the cost measure  We ignore the difference in cost between sequential and random I/O for simplicity  We also ignore CPU/communication costs for simplicity I/O cost DEPENDS on  Search criteria: point/range query on a ordering / other fields  File structures: heap, sorted, hashed  Index types: primary, clustering, secondary, B+ tree, multilevel, …  Other factors: e.g., buffering, disk placement, materialization, overflow / free space mgmt, … We do not include cost to writing output to disk in our cost formulae

9 15.9 CSCI 5708, Spring 2004. University of Minnesota Catalog Information for Cost Estimation n r : number of tuples in a relation r. b r : number of blocks containing tuples of r. s r : size of a tuple of r. bfr: blocking factor of r — i.e., the number of tuples of r that fit into one block. d(A, r): number of distinct values that appear in r for attribute A. sl(A,r): selectivity (fraction of records satisfying an equality condition in r for attribute A. sc(A,r): selection cardinality of attribute A of relation r; average number of records that satisfy equality on A x: number of index levels e = Pr[a record in overflow area] * E(overflow chain length)

10 15.10 CSCI 5708, Spring 2004. University of Minnesota Selection Operation File scan – search algorithms that locate and retrieve records that fulfill a selection condition. Algorithm S1 (linear search). Scan each file block and test all records to see whether they satisfy the selection condition.  Cost estimate (number of disk blocks scanned) = b r  b r denotes number of blocks containing records from relation r  If selection is on a key attribute, cost = ( b r /2)  stop on finding record  Linear search can be applied regardless of  selection condition or  ordering of records in the file, or  availability of indices

11 15.11 CSCI 5708, Spring 2004. University of Minnesota Selection Operation (Cont.) S2 (binary search). Applicable if selection is an equality comparison on the attribute on which file is ordered.  Assume that the blocks of a relation are stored contiguously  Cost estimate (number of disk blocks to be scanned):   log 2 (b r )  — cost of locating the first tuple by a binary search on the blocks   sc(A,r) / bfr  - 1 — Plus number of other blocks containing records that satisfy selection condition  If selection is on a key attribute, cost =  log 2 (b r ) 

12 15.12 CSCI 5708, Spring 2004. University of Minnesota Example for File Scan n r = 10,000 (number of tuples in a relation r). b r = 500 (number of blocks containing tuples of r). sc(A,r): selection cardinality of attribute A of relation r; average number of records that satisfy equality on A select FNAME = ‘Alex’ from EMPLOYEE

13 15.13 CSCI 5708, Spring 2004. University of Minnesota Selections (cont.) Index scan – search algorithms that use an index  selection condition must be on search-key of index. S3a (primary index, equality). Retrieve a single record that satisfies the corresponding equality condition  Cost = x + 1 S3b (hash key). Retrieve a single record  Cost = e + 1 S4 (primary index, comparison). (Relation is sorted on A)  For  A  V (r) use index to find first tuple  v and scan relation sequentially from there  For  A  V (r) just scan relation sequentially till first tuple > v; do not use index  Rough cost = x + (b r /2),

14 15.14 CSCI 5708, Spring 2004. University of Minnesota Selection (cont.) S5 (equality on clustering index to retrieve multiple records)  Cost = x +  sc(A,r) / bfr  S6a (equality on search-key of secondary index).  Retrieve a single record if the search-key is a candidate key  Cost = x + 1  Retrieve multiple records if search-key is not a candidate key  Cost = x + number of records retrieved –Can be very expensive!  each record may be on a different block – one block access for each retrieved record – worst cost = x + sc(A,r)

15 15.15 CSCI 5708, Spring 2004. University of Minnesota Selections (cont.) S6b (secondary index, comparison).  For  A  V (r) use index to find first index entry  v and scan index sequentially from there, to find pointers to records.  For  A  V (r) just scan leaf pages of index finding pointers to records, till first entry > v  In either case, retrieve records that are pointed to –requires an I/O for each record – Linear file scan may be cheaper if many records are to be fetched! S7 Conjunctive selection

16 15.16 CSCI 5708, Spring 2004. University of Minnesota Summary of Selections Point Query: equality  Algorithm: Linear scan, Binary search, Hash, Indexed search  Algebraic cost formula:  Search on unique attribute: (b r /2),,  log 2 (b r ) , e + 1, x + 1  Not unique => plus  sc(A,r) / bfr  to sorted/hashed files; b r for heap Range Query: retrieve records in a certain range  (1) Linear : b r or b r /2 + sl * b r  (2) Binary search then scan:  log 2 (b r )  + sl * b r  (3) Find 1 st record in, then scan data file (primary/clustering index)  x + 1 + sl * b r  (4) Find 1 st record in, then scan index leafs (secondary index/B+ tree)  x + sl *[bi(leaf) +

17 15.17 CSCI 5708, Spring 2004. University of Minnesota Sorting We may build an index on the relation, and then use the index to read the relation in sorted order. May lead to one disk block access for each tuple. For relations that fit in memory, techniques like quicksort can be used. For relations that don’t fit in memory, external sort-merge is a good choice.

18 15.18 CSCI 5708, Spring 2004. University of Minnesota External Sort-Merge 1. Create sorted runs. Let i be 0 initially. Repeatedly do the following till the end of the relation: (a) Read M blocks of relation into memory (b) Sort the in-memory blocks (c) Write sorted data to run R i ; increment i. Let the final value of I be N 2. Merge the runs (N-way merge). We assume (for now) that N < M. 1. Use N blocks of memory to buffer input runs, and 1 block to buffer output. Read the first block of each run into its buffer page 2. repeat 1. Select the first record (in sort order) among all buffer pages 2. Write the record to the output buffer. If the output buffer is full write it to disk. 3. Delete the record from its input buffer page. If the buffer page becomes empty then read the next block (if any) of the run into the buffer. 3. until all input buffer pages are empty: Let M denote memory size (in pages).

19 15.19 CSCI 5708, Spring 2004. University of Minnesota External Sort-Merge (Cont.) If i  M, several merge passes are required.  In each pass, contiguous groups of M - 1 runs are merged.  A pass reduces the number of runs by a factor of M -1, and creates runs longer by the same factor.  E.g. If M=11, and there are 90 runs, one pass reduces the number of runs to 9, each 10 times the size of the initial runs  Repeated passes are performed till all runs have been merged into one.

20 15.20 CSCI 5708, Spring 2004. University of Minnesota Example: External Sorting Using Sort-Merge

21 15.21 CSCI 5708, Spring 2004. University of Minnesota External Merge Sort (Cont.) Cost analysis:  Total number of merge passes required:  log M–1 (b r /M) .  Disk accesses for initial run creation as well as in each pass is 2b r.  Sort phase: 2b r (each block is accessed twice: read and write) Thus total number of disk accesses for external sorting: b r ( 2  log M–1 (b r / M)  + 2)


Download ppt "CSCI 5708: Query Processing I Pusheng Zhang University of Minnesota Feb 3, 2004."

Similar presentations


Ads by Google