联系方式

  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-23:00
  • 微信:codinghelp

您当前位置:首页 >> Algorithm 算法作业Algorithm 算法作业

日期:2019-10-19 10:57

INFO20003 Tutorial – Week 8 Solutions 1

INFO20003 Tutorial – Week 8 Solutions

(Tutorial: Query optimisation)

Objectives:

This tutorial will cover:

I. Estimate cost of single-relation plans – 20 mins

II. Estimate cost of multi-relation plans – 35 mins

Exercises:

1. Single-relation plans:

Consider a relation with this schema:

Employees (eid: integer, ename: string, sal: integer, title: string, age: integer)

Suppose that the following indexes exist:

• An unclustered hash index on eid

• An unclustered B+ tree index on sal

• An unclustered hash index on age

• A clustered B+ tree index on (age, sal)

The Employees relation contains 10,000 pages and each page contains 20 tuples. Suppose there are

500 index pages for B+ tree indexes and 500 index pages for hash indexes. There are 40 distinct

values of age, ranging from 20 to 60, in the relation. Similarly, sal ranges from 0 to 50,000 and

there are up to 50,000 distinct values. eid is a candidate key; its value ranges from 1 to 200,000 and

there are 200,000 distinct values.

For each of the following selection conditions, compute the Reduction Factor (selectivity) and the

cost of the cheapest access path for retrieving all tuples from Employees that satisfy the condition:

There are two possible access paths for this query:

• The unclustered B+ tree index on sal, with cost

Cost = product of RFs of matching selects × (NTuples(R) + NPages(I))

= 0.6 × ((20 × 10,000) + 500)

= 120,300 I/Os

• Full table scan, with cost 10,000 I/Os.

Other indexes are not applicable here. Hence the cheapest access path is the full table scan, with

cost 10,000.

INFO20003 Tutorial – Week 8 Solutions 2

Since we have two indexes on age, a hash index and a B+ tree index, there are three possible

access paths for this query:

• The clustered B+ tree index on (age, sal), with cost

Cost = product of RFs of matching conditions × (NPages(R) + NPages(I))

• The unclustered hash index on age, with cost

Cost = product of RFs of matching conditions × hash lookup cost × NTuples(R)

For a hash index, the size does not matter as for each tuple the cost is 2.2; 1.2 is for the

bucket check and 1 to fetch the page from the disk.

• Full table scan, with cost 10,000 I/Os.

Therefore, the cheapest access path here is to use the B+ tree index with cost 263 (approx.).

Note that the full scan cost is the same as in the previous case.

c. age > 30

The reduction factor is

RF =

High(I) − value

High(I) − Low(I)

=

60 − 30

60 − 20 = 0.75

We cannot use the hash index over a range, thus the only options to consider are the full table

scan vs. B+ tree index. There are two possible access paths for this query:

• The clustered B+ tree index on (age, sal), with cost

Cost = product of RFs of matching conditions × (NPages(R) + NPages(I))

= 0.75 × (500 + 10,000)

= 7875 I/Os

• Full table scan, with cost 10,000 I/Os.

Therefore, the clustered B+ tree index with cost 7875 is the cheapest access path here.

INFO20003 Tutorial – Week 8 Solutions 3

d. eid = 1000

As stated earlier, eid is a candidate key. Therefore, we can expect one record per eid. We can

use the primary index (hash index on eid) to achieve a lookup cost of roughly

Cost = hash lookup cost + 1 data page access = 1.2 + 1 = 2.2

This is obviously cheaper than the full table scan (cost 10,000).

e. sal > 20,000 ∧ age > 30

The selection condition is the same as age > 30 ∧ sal > 20,000. This is similar to part c, so we

can use the clustered B+ tree index, but the RF will be product of the RF for the two conditions,

since both are

There are two possible access paths for this query:

• The clustered B+ tree index on (age, sal), with cost

Cost = product of RFs of matching conditions × (NPages(R) + NPages(I))

= 0.75 × 0.6 × (500 + 10,000)

= 4725 I/Os

• Full table scan, with cost 10,000 I/Os.

Thus the clustered B+ tree index on (age, sal), cost 4725, is the cheapest option here.

2. Multi-relation plans:

Consider the following schema:

projid, budget, status)

Proj (projid, code, report)

The number of tuples in Emp is 20,000 and each page can hold 20 records. The Dept relation has

5000 tuples and each page contains 40 records. There are 500 distinct dids in Dept. One page can

fit 100 resulting tuples of Dept JOIN Emp. Similarly, Proj has 1000 tuples and each page can

contain 10 tuples. Assuming that projid is the candidate key of Proj, there can be 1000 unique values

for projid. The number of available buffer pages is 50, and Sort-Merge Join can be done in 2 passes.

Let’s assume that, if we join Proj with Dept, 50 resulting tuples will fit on a page.

Consider the following query:

INFO20003 Tutorial – Week 8 Solutions 4

SELECT E.eid, D.did, P.projid

FROM Emp AS E, Dept AS D, Proj AS P

WHERE E.did = D.did

AND D.projid = P.projid;

For this query, estimate the cost of the following plans, focusing on the join order and join types:

This left-deep plan is joining Dept with Emp using Nested Loop Join and then

joining the results with Proj also using Nested Loop Join. The cost analysis is

shown below:

Number of resulting tuples for Dept JOIN Emp

Cost of scanning Dept = 125 I/O

Cost to join with Emp = NPages(Dept) × NPages(Emp)

= 125 × 1000 = 125,000 I/O

Cost to join with Proj = NPages(Dept JOIN Emp) × NPages(Proj)

= 2000 × 100 = 200,000 I/O

Total cost = 125 + 125,000 + 200,000 = 325,125 I/O

This left-deep plan is joining Dept with Emp using Nested Loop Join and then

joining the results with Proj using Hash Join. The cost analysis is shown below:

Number of resulting tuples for Dept JOIN Emp

Number of pages for Dept JOIN Emp = 200‚000

100 = 2000 pages

Cost of scanning Dept = 125 I/O

Cost to join with Emp = NPages(Dept) × NPages(Emp)

= 125 × 1000 = 125,000 I/O

Cost to join with Proj = 2 × NPages(Dept JOIN Emp) + 3 × NPages(Proj)

= 2 × 2000 + 3 × 100 = 4300 I/O

Total cost = 125 + 125,000 + 4300 = 129,425 I/O

INFO20003 Tutorial – Week 8 Solutions 5

This left-deep plan is joining Dept with Emp using Sort-Merge Join and then

joining the results with Proj using Hash Join. The number of passes of Sort-Merge

Join is 2. The cost analysis is shown below:

Number of resulting tuples for Dept JOIN Emp

Number of pages for Dept JOIN Emp = 200‚000

100 = 2000 pages

Cost of sorting Dept = 2 × NPasses × NPages(Dept) = 2 × 2 × 125 = 500 I/O

Cost of sorting Emp = 2 × NPasses × NPages(Emp) = 2 × 2 × 1000 = 4000 I/O

Cost of joining sorted Dept and Emp = NPages(Dept) + NPages(Emp)

= 125 + 1000 = 1125 I/O

Total cost of SMJ between Dept and Emp = 500 + 4000 + 1125 = 5625 I/O

Cost to join with Proj = 2 × NPages(Dept JOIN Emp) + 3 × NPages(Proj)

= 2 × 2000 + 3 × 100 = 4300 I/O

Total cost = 5625 + 4300 = 9925 I/O

This left-deep plan is joining Proj with Dept using Sort-Merge Join (with 2 passes)

and then joining the results with Emp using Hash Join. The cost analysis is shown

below:

Number of resulting tuples for Proj JOIN Dept

Cost of sorting Proj = 2 × NPasses × NPages(Proj) = 2 × 2 × 100 = 400 I/O

Cost of sorting Dept = 2 × NPasses × NPages(Dept) = 2 × 2 × 125 = 500 I/O

Cost of joining sorted Proj and Dept = NPages(Proj) + NPages(Dept)

= 100 + 125 = 225 I/O

Total cost of SMJ between Proj and Dept = 400 + 500 + 225 = 1125 I/O

Cost to join with Emp = 2 × NPages(Proj JOIN Dept) + 3 × NPages(Emp)

= 2 × 100 + 3 × 1000 = 3200 I/O

Total cost = 1125 + 3200 = 4325 I/O


版权所有:留学生编程辅导网 2020 All Rights Reserved 联系方式:QQ:99515681 微信:codinghelp 电子信箱:99515681@qq.com
免责声明:本站部分内容从网络整理而来,只供参考!如有版权问题可联系本站删除。 站长地图

python代写
微信客服:codinghelp