Presentation is loading. Please wait.

Presentation is loading. Please wait.

THE QUERY COMPILER 16.6 CHOOSING AN ORDER FOR JOINS By: Nitin Mathur Id: 110 CS: 257 Sec-1.

Similar presentations


Presentation on theme: "THE QUERY COMPILER 16.6 CHOOSING AN ORDER FOR JOINS By: Nitin Mathur Id: 110 CS: 257 Sec-1."— Presentation transcript:

1 THE QUERY COMPILER 16.6 CHOOSING AN ORDER FOR JOINS By: Nitin Mathur Id: 110 CS: 257 Sec-1

2 Introduction This section focuses on critical problem in cost-based optimization: – Selecting order for natural join of three or more relations Compared to other binary operations, joins take more time and therefore need effective optimization techniques

3 Significance of Arguments & How it executes The argument relations in joins determine the cost of the join The left argument of the join is – Called the build relation – Assumed to be smaller – Stored in main-memory

4 Significance of Arguments & How it executes The right argument of the join is – Called the probe relation – Read a block at a time – Its tuples are matched with those of build relation The join algorithms which distinguish between the arguments are: – One-pass join – Nested-loop join – Index join

5 Join Trees Order of arguments is important for joining two relations Left argument, since stored in main-memory, should be smaller With two relations only two choices of join tree With more than two relations, there are n! ways to order the arguments and therefore n! join trees, where n is the no. of relations

6 Join Trees Types Consider 4 relations. Different ways to join them are as follows Citation: Database System The Complete Book Chapter 16 Figure: 16.27

7 Join Trees Types In fig (a) all the right children are leaves. This is a left-deep tree In fig (c) all the left children are leaves. This is a right-deep tree Fig (b) is a bushy tree Considering left-deep trees is advantageous for deciding join orders

8 Join order Join order selection – A1 A2 A3.. An – Left deep join trees – Dynamic programming Best plan computed for each subset of relations – Best plan (A1,.., An) = min cost plan of( Best plan(A2,.., An) A1 Best plan(A1, A3,.., An) A2 …. Best plan(A1,.., An-1)) An

9 Dynamic Programming to Select a Join Order and Grouping To pick an order for the join of many relations there are three choices Consider them all Consider a subset Use a heuristic to pick one Use Dynamic Programming to enumerate trees

10 Dynamic Programming to Select a Join Order and Grouping Dynamic programming is used either to consider all or a subset Construct a table of costs based on relation size Remember only the minimum entry which will required to proceed

11 Dynamic Programming with More Detailed Cost Functions Disadvantage of dynamic programming is that it does not involve the actual costs of the joins in the calculations Can be improved by considering Use disk’s I/O for evaluating cost When computing cost of R1 join R2, since we sum cost of R1 and R2, we must also compute estimates for there sizes

12 A Greedy Algorithm for Selecting a Join Order It is expensive to use an exhaustive method like dynamic programming Better approach is to use a join-order heuristic for the query optimization Greedy algorithm is an example of that Make one decision at a time and never backtrack on the decisions once made

13 Thank you 4 Constructive listening


Download ppt "THE QUERY COMPILER 16.6 CHOOSING AN ORDER FOR JOINS By: Nitin Mathur Id: 110 CS: 257 Sec-1."

Similar presentations


Ads by Google