精品深夜AV无码一区二区_伊人久久无码中文字幕_午夜无码伦费影视在线观看_伊人久久无码精品中文字幕

代做COMP3211、Python/Java程序代寫

時間:2024-04-26  來源:  作者: 我要糾錯



Coursework Specification
Late submissions will be penalised at 10% per working day.
No work can be accepted after feedback has been given.
You should expect to spend up to 37.5 hours on this assignment.
Please note the University regulations regarding academic integrity.
Module: COMP3211 Advanced Databases
Assignment: Database Programming Exercise Weighting: 25 %
Deadline: 16:00 Wed 8 May 2024 Feedback: Fri 17 May 2024
Instructions
In this assignment, you will build a query optimiser for SJDB, a simple RDBMS. Your optimiser should accept a
canonical query plan (a project over a series of selects over a cartesian product over the input named
relations) and aim to construct a left-deep query plan which minimises the sizes of any intermediate relations.
Part 1: Estimator.java
Before implementing an optimiser for query plans, you must first estimate the cost of the query plans.
In the first phase, you must create a class Estimator that implements the PlanVisitor interface and performs
a depth-first traversal of the query plan. On each operator, the Estimator should create an instance of Relation
(bearing appropriate Attribute instances and tuple counts) and attach to the operator as its output.
Some operators may require you to revise the value counts for the attributes on the newly created output
relations (for example, a select of the form attr=val will change the number of distinct values for that
attribute to 1). Note also that an attribute on a relation may not have more distinct values than there are
tuples in the relation.
Page 5 of this coursework specification lists the formulae that you should use to calculate the sizes of the
output relations, and to revise the attribute value counts. The supplied distribution of SJDB includes a
skeleton for Estimator, including an implementation of the visit(Scan) method.
Part 2: Optimiser.java
Once you have an estimator, you must create a class Optimiser that will take a canonical query plan as input,
and produce an optimised query plan as output. The optimised plan should not share any operators with the
canonical query plan; all operators should be created afresh.
In order to demonstrate your optimiser, you should be able to show your cost estimation and query
optimisation classes in action on a variety of inputs. The SJDB zip file contains a sample catalogue and
queries. In addition, the SJDB class (see page 3) contains a main() method with sample code for reading a
serialised catalogue from file and a query from stdin.
Part 3: Report
In addition to your estimator and optimiser, you should produce a short (maximum 500 word) report that
describes the optimisation strategy that you’ve adopted.
Note
You should not need to modify any of the provided classes or interfaces as part of your submission (aside
from Estimator), but if you think that you have a justifiable reason for doing so, please contact Nick for
permission first.
2
Submission
Please submit your files (Estimator.java, Optimiser.java and report.pdf) using the electronic hand-in system
(http://handin.ecs.soton.ac.uk/) by 4pm on the due date.
Late submissions will be penalised at 10% per working day and no work can be accepted after feedback has
been given.
You should expect to spend up to 37.5 hours on this assignment, and you should note the University
regulations regarding academic integrity:
http://www.calendar.soton.ac.uk/sectionIV/academic-integrity-statement.html
Relevant Learning Outcomes
1. The internals of a database management system
2. The issues involved in developing database management software
3. Demonstrate how a DBMS processes, optimises and executes a query
4. Implement components of a DBMS
Marking Scheme
Criterion Description Outcomes Total
Cost Estimator Implementation of the cost estimator 1,2,3,4 40 %
Optimiser Implementation of the query optimiser 1,2,3,4 40 %
Report Description of your query optimisation strategy 1,2,3 20 %
Note that partial credit will be given for incomplete solutions; for example, an optimiser that moves some
(but not all) selections down the query plan will still receive part of the total mark for the optimiser
component.
3
SJDB – A Simple Java Database
SJDB supports a limited subset of the relational algebra, consisting of the following operators only:
• cartesian product
• select with a predicate of the form attr=val or attr=attr
• project
• equijoin with a predicate of the form attr=attr
• scan (an operator that reads a named relation as a source for a query plan)
In addition, all attributes on all relations will be strings; there are no other datatypes available. Attributes also
have globally unique names (there may not be two attributes of the same name on different relations), and
self-joins on relations are not permitted.
The sjdb package contains the following classes and interfaces:
Relation an unnamed relation, contains attributes
NamedRelation a named relation
Attribute an attribute on a relation
Predicate a predicate for use with a join or select operator
Operator abstract superclass for all operators
UnaryOperator abstract superclass for all operators with a single child
Scan an operator that feeds a named relation into a query plan
Select an operator that selects certain tuples in its input, via some predicate
Project an operator that projects certain attributes from its input
BinaryOperator abstract superclass for all operator with two children
Product an operator that performs a cartesian product over its inputs
Join an operator that joins its inputs, via some predicate
Catalogue a directory and factory for named relations and their attributes
CatalogueException a failure to retrieve relations or attributes from the catalogue
CatalogueParser a utility class that reads a serialised catalogue from file
QueryParser a utility class that reads a query and builds a canonical query plan
PlanVisitor an interface that when implemented performs a depth-first plan traversal
Inspector a utility class that traverses an annotated plan and prints out the estimates
SJDB class containing main()
Test an example of the test harnesses used for marking
The SJDB class contains a main() method with skeleton code for reading catalogues and queries.
The system provides basic statistical information about the relations and attributes in the database, as below.
These are stored on the relations and attributes themselves, and not in the catalogue.
• the number of tuples in each relation
• the value count (number of distinct values) for each attribute
A sample serialised catalogue (cat.txt) and queries (q1.txt, etc) are available in sjdb/data.
4
Test Harness Notes
The file Test.java in the SJDB distribution contains an example of the test harness that I will be using to mark
your submissions. This example test harness manually constructs both plans and catalogues as follows:
package sjdb;
import java.io.*;
import java.util.ArrayList;
import sjdb.DatabaseException;
public class Test {
private Catalogue catalogue;
public Test() {
}
public static void main(String[] args) throws Exception {
Catalogue catalogue = createCatalogue();
Inspector inspector = new Inspector();
Estimator estimator = new Estimator();
Operator plan = query(catalogue);
plan.accept(estimator);
plan.accept(inspector);
Optimiser optimiser = new Optimiser(catalogue);
Operator planopt = optimiser.optimise(plan);
planopt.accept(estimator);
planopt.accept(inspector);
}
public static Catalogue createCatalogue() {
Catalogue cat = new Catalogue();
cat.createRelation("A", 100);
cat.createAttribute("A", "a1", 100);
cat.createAttribute("A", "a2", 15);
cat.createRelation("B", 150);
cat.createAttribute("B", "b1", 150);
cat.createAttribute("B", "b2", 100);
cat.createAttribute("B", "b3", 5);
return cat;
}
public static Operator query(Catalogue cat) throws Exception {
Scan a = new Scan(cat.getRelation("A"));
Scan b = new Scan(cat.getRelation("B"));
Product p1 = new Product(a, b);
Select s1 = new Select(p1, new Predicate(new Attribute("a2"), new Attribute("b3")));
ArrayList<Attribute> atts = new ArrayList<Attribute>();
atts.add(new Attribute("a2"));
atts.add(new Attribute("b1"));
Project plan = new Project(s1, atts);
return plan;
}
}
As can be seen in this test harness, I use the Inspector class (provided with the SJDB sources) to print out a
human-readable version of your query plans – your query plans must be able to accept this visitor without
throwing exceptions. Your estimator and optimiser need not (and should not) produce any data on stdout
(you should use the Inspector for this when testing).
Note also that you should manually construct plans that contain joins in order to test your Estimators.
Estimators and Optimisers that do not run without errors will be marked by inspection only, and will
consequently receive a reduced mark.
5
Cost Estimation
As described in lectures, the following parameters are used to estimate the size of intermediate relations:
• T(R), the number of tuples of relation R
• V(R,A), the value count for attribute A of relation R (the number of distinct values of A)
Note that, for any relation R, V(R, A) ≤ T(R) for all attributes A on R.
Scan
T(R) (the same number of tuples as in the NamedRelation being scanned)
Product
T(R × S) = T(R)T(S)
Projection
T(πA(R)) = T(R) (assume that projection does not eliminate duplicate tuples)
Selection
For predicates of the form attr=val:
T(σA=c(R)) = T(R)/V(R,A), V(σA=c(R),A) = 1
For predicates of the form attr=attr:
T(σA=B(R)) = T(R)/max(V(R,A),V(R,B)), V(σA=B(R),A) = V(σA=B(R),B) = min(V(R,A), V(R,B)
Join
T(R⨝A=BS) = T(R)T(S)/max(V(R,A),V(S,B)), V(R⨝A=BS,A) = V(R⨝A=BS,B) = min(V(R,A), V(S,B))
(assume that A is an attribute of R and B is an attribute of S)
Note that, for an attribute C of R that is not a join attribute, V(R⨝A=BS,C) = V(R,C)
(similarly for an attribute of S that is not a join attribute)
Further Reading
For further information on cost estimation, see §16.4 of Database Systems: The Complete Book

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp
















 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:CS 161代做、Java/Python程序代寫
  • 下一篇:CAN202代寫、代做MATLAB編程設計
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    精品深夜AV无码一区二区_伊人久久无码中文字幕_午夜无码伦费影视在线观看_伊人久久无码精品中文字幕
    <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
    <ul id="e4iaa"></ul>
    <blockquote id="e4iaa"><tfoot id="e4iaa"></tfoot></blockquote>
    • <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
      <ul id="e4iaa"></ul>
      <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp><ul id="e4iaa"></ul>
      <ul id="e4iaa"></ul>
      <th id="e4iaa"><menu id="e4iaa"></menu></th>
      久久精品国产一区二区| 蜜桃久久精品一区二区| 国产精品丝袜在线| 国产色产综合色产在线视频| 久久天天做天天爱综合色| 久久久久久久久久久久久女国产乱| 日韩精品一区二区三区中文不卡 | 国内不卡的二区三区中文字幕| 午夜精品在线看| 琪琪一区二区三区| 激情另类小说区图片区视频区| 国产老妇另类xxxxx| 国产福利一区在线| 色先锋久久av资源部| 欧美乱妇23p| 国产亚洲综合性久久久影院| 国产精品二三区| 亚洲成a人v欧美综合天堂下载| 免费亚洲电影在线| 成人久久视频在线观看| 91成人在线免费观看| 日韩一区二区三区免费看| 国产天堂亚洲国产碰碰| 一区二区三区高清| 久久99精品视频| 91热门视频在线观看| 日韩午夜电影av| 国产精品高潮呻吟久久| 日韩精品一二三四| 成人国产精品免费| 欧美一区二区三区的| 国产精品美女一区二区在线观看| 午夜欧美大尺度福利影院在线看 | 亚洲免费av高清| 奇米精品一区二区三区在线观看一| 国产伦精品一区二区三区在线观看| 91免费视频大全| 久久中文娱乐网| 香蕉久久一区二区不卡无毒影院 | 99久久亚洲一区二区三区青草| 欧美高清hd18日本| 国产精品成人在线观看| 蜜桃精品视频在线观看| 色狠狠桃花综合| 国产精品无遮挡| 国产在线一区二区综合免费视频| 欧美丝袜丝交足nylons| 国产精品美女久久久久久| 久草热8精品视频在线观看| 欧美亚洲综合一区| 亚洲三级免费观看| 不卡在线观看av| 久久精品一区二区三区四区| 蜜桃91丨九色丨蝌蚪91桃色| 欧美羞羞免费网站| 一区二区三区在线视频免费| 成人午夜免费av| 国产欧美一区二区三区网站| 激情图片小说一区| 精品91自产拍在线观看一区| 秋霞电影网一区二区| 欧美人伦禁忌dvd放荡欲情| 亚洲免费观看视频| 99久久精品免费看国产| 亚洲欧美综合色| av一区二区三区四区| 国产精品理论在线观看| 东方欧美亚洲色图在线| 久久精品夜夜夜夜久久| 黄色精品一二区| 久久精品夜夜夜夜久久| 国产精品一区二区久久不卡| 久久嫩草精品久久久久| 国产成人亚洲综合色影视| 国产日韩在线不卡| 99久久精品情趣| 一个色综合av| 欧美一级一区二区| 国产在线视视频有精品| 中文字幕 久热精品 视频在线| 成人app在线观看| 亚洲人成网站在线| 欧美三级电影在线看| 三级一区在线视频先锋| 日韩欧美的一区| 国产91丝袜在线播放0| 国产精品国产三级国产aⅴ中文 | 麻豆91在线播放| 国产日产精品1区| 一本大道av一区二区在线播放| 亚洲午夜国产一区99re久久| 欧美一区二区高清| 国产盗摄视频一区二区三区| 综合自拍亚洲综合图不卡区| 欧美天堂一区二区三区| 黑人巨大精品欧美一区| 亚洲婷婷国产精品电影人久久| 欧美性感一区二区三区| 韩日精品视频一区| 一区二区三区日韩欧美| 日韩亚洲欧美一区二区三区| 成人爽a毛片一区二区免费| 亚洲第四色夜色| 久久久国产精华| 欧美伊人久久久久久午夜久久久久| 麻豆精品一区二区av白丝在线| 中文字幕av一区 二区| 4438成人网| av资源网一区| 国产一区欧美日韩| 亚洲国产视频一区| 久久精品免视看| 91精品久久久久久久91蜜桃| 成人小视频在线| 久久 天天综合| 亚洲综合色区另类av| 国产欧美综合在线| 日韩欧美成人一区二区| 色乱码一区二区三区88| 国产精品1区2区3区| 日韩av一区二区三区四区| 伊人开心综合网| 国产精品丝袜一区| 久久久综合激的五月天| 91精品国产综合久久久久久| 色婷婷综合久久久久中文一区二区 | 欧美一级国产精品| 91成人在线精品| 成人av免费观看| 国产成人一区在线| 狠狠狠色丁香婷婷综合激情| 午夜激情综合网| 一区二区三区在线观看欧美| 国产精品高潮呻吟| 中文字幕精品一区二区精品绿巨人 | 亚洲女与黑人做爰| 中文字幕乱码一区二区免费| 久久亚洲影视婷婷| 久久亚区不卡日本| 久久色在线视频| 精品国产3级a| 久久毛片高清国产| 国产日韩欧美精品综合| 久久婷婷综合激情| 久久精品一区八戒影视| 国产午夜精品一区二区三区嫩草 | 在线观看91av| 欧美三级电影在线观看| 欧美三级视频在线播放| 欧美视频中文一区二区三区在线观看 | 欧美日韩国产美女| 欧美日韩国产首页| 91精品国产一区二区三区香蕉| 在线不卡免费av| 日韩一级黄色片| 久久久久久**毛片大全| 日本一区二区三区高清不卡| 中文字幕一区日韩精品欧美| 自拍偷拍国产亚洲| 亚洲在线视频免费观看| 日韩精品成人一区二区在线| 日韩av中文字幕一区二区| 久久av老司机精品网站导航| 国产一区二区调教| 色综合一个色综合| 欧美日韩aaa| 精品对白一区国产伦| 国产精品国产精品国产专区不片| 亚洲女厕所小便bbb| 日本少妇一区二区| 国产精品一区专区| 色婷婷综合久色| 欧美本精品男人aⅴ天堂| 中文在线资源观看网站视频免费不卡| 亚洲欧美另类图片小说| 青青草成人在线观看| 国产91丝袜在线18| 欧美日韩精品欧美日韩精品| 欧美精品一区二区三区很污很色的| 国产欧美在线观看一区| 亚洲一区免费观看| 国产在线不卡一区| 欧美亚洲动漫精品| 国产午夜亚洲精品理论片色戒| 亚洲精品日韩一| 国产精品99久久久久久有的能看| 91成人免费在线| 久久精品综合网| 日韩电影在线免费观看| 成人动漫一区二区| 精品国一区二区三区| 亚洲综合色视频| 成人精品视频一区二区三区| 日韩一区二区高清| 一区二区三区在线不卡| 成人综合婷婷国产精品久久蜜臀 | 久久久精品欧美丰满| 天天影视涩香欲综合网| 色综合久久88色综合天天6| 久久九九国产精品|