1 / 90

Database Management Systems Session 9

Database Management Systems Session 9. Instructor: Vinnie Costa vcosta@optonline.net. The $100 Laptop Moves Closer to Reality.

Download Presentation

Database Management Systems Session 9

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Database Management SystemsSession 9 Instructor: Vinnie Costavcosta@optonline.net

  2. The $100 Laptop Moves Closer to Reality [CNET News.com, 9/28]Nicholas Negroponte, the co-founder of the Media Lab at the Massachusetts Institute of Technology, detailed specifications for a $100 windup-powered laptop targeted at children in developing nations."This is the most important thing I have ever done in my life," Negroponte said during a presentation at Technology Review's Emerging Technologies Conference at MIT. "Reception has been incredible. The idea is simple. It's an education project, not a laptop project. If we can make education better--particularly primary and secondary schools--it will be a better world.“The laptops would save on software costs by running the open-source Linux operating system rather than Windows, and reduce the need for costly base stations by participating in "mesh" networks and connecting to Wi-Fi wireless networks. MIT’s Laptop Per Child initiative, which seeks to produce between 5 million and 15 million $100 laptops within a year. The MIT team plans to continually push the cost of the laptops down by incorporating low-power enhancements such as "electronic ink" displays. CNET News.com, 9/28

  3. The Rest Of DBMS In A Nutshell Session 9

  4. Good Side Of Technology Nicholas Negroponte (born 1943) is a Greek-American computer scientist best known as founder and director of Massachusetts Institute of Technology's Media Lab. Born the son of a Greek ship owner on New York City's Upper East Side, Nicholas Negroponte studied at MIT, where as a graduate student he specialized in the field of computer-aided design. He joined the faculty of MIT in 1966. He is the brother of United States Director of National Intelligence, John Negroponte. He was a founder of WiReDmagazine and has been an "angel investor" for over 40 start-ups, including three in China. Professor Negroponte helped to establish, and serves as chairman of, the 2B1 Foundation, an organization dedicated to bringing computer access to children in the most remote and poorest parts of the world

  5. Lecture Overview • Overview Of Storage and Indexing (Chap 8) • Overview Of Query Evaluation (Chap 12) • Schema Refinement and Normal Forms (Chap 19) • Physical Database Design (Chap 20) • Security and Authorization (Chap 21)

  6. Overview of Storage and Indexing Chapter 8

  7. Data on External Storage • Disks: Can retrieve random page at fixed cost • But reading several consecutive pages is much cheaper than reading them in random order • Tapes: Can only read pages in sequence • Cheaper than disks; used for archival storage • File organization: Method of arranging a file of records on external storage. • Record id (rid) is sufficient to physically locate record • Indexes are data structures that allow us to find the record ids of records with given values in index search key fields • Architecture:Buffer manager stages pages from external storage to main memory buffer pool. File and index layers make calls to the buffer manager.

  8. Alternative File Organizations Many alternatives exist, each ideal for some situations, and not so good in others: • Heap (random order) files - Suitable when typical access is a file scan retrieving all records. • Sorted Files- Best if records must be retrieved in some order, or only a `range’ of records is needed. • Indexes - Data structures to organize records via trees or hashing. • Like sorted files, they speed up searches for a subset of records, based on values in certain (“search key”) fields • Updates are much faster than in sorted files.

  9. Indexes • An indexon a file speeds up selections on the search key fieldsfor the index • Any subset of the fields of a relation can be the search key for an index on the relation • Search keyis not the same as key(minimal set of fields that uniquely identify a record in a relation) • An index contains a collection of data entries, and supports efficient retrieval of all data entries k*with a given key value k • Given data entry k*, we can find record with key k in at most one disk I/O

  10. B+ Tree Indexes Non-leaf Pages Leaf Pages (Sorted by search key) • Leaf pages containdata entries, and are chained (prev & next) • Non-leaf pages have index entries; only used to direct searches index entry P K P K P P K m 0 1 2 1 m 2

  11. Example B+ Tree Note how data entries in leaf level are sorted Root 17 • Find 28*? 29*? All > 15* and < 30* • Insert/delete: Find data entry in leaf, then change it. Need to adjust parent sometimes. • And change sometimes bubbles up the tree Entries <= 17 Entries > 17 27 5 13 30 39* 2* 3* 5* 7* 8* 22* 24* 27* 29* 38* 33* 34* 14* 16*

  12. Hash-Based Indexes • Good for equality selections. • Index is a collection of buckets • Bucket = primary page plus zero or moreoverflow pages • Buckets contain data entries. • Hashing functionh -h(r) = bucket in which (data entry for) record r belongs. h looks at the search key fields of r.

  13. Index Classification • Primary vs secondary- If search key contains primary key, then called primary index. • Unique index: Search key contains a candidate key. • Clustered vs unclustered- If order of data records is the same as, or `close to’, order of data entries, then called clustered index. • A file can be clustered on at most one search key. • Cost of retrieving data records through index varies greatly based on whether index is clustered or not!

  14. Clustered vs. Unclustered Index • Suppose that the data records are stored in a Heap file • To build clustered index, first sort the Heap file (with some free space on each page for future inserts). • Overflow pages may be needed for inserts. (Thus, order of data recs is `close to’, but not identical to, the sort order.) Index entries CLUSTERED direct search for UNCLUSTERED data entries Data entries Data entries (Index File) (Data file) Data Records Data Records

  15. Cost Model for Our Analysis We ignore CPU costs, for simplicity: • B: The number of data pages • R: Number of records per page • D: (Average) time to read or write disk page • Measuring number of page I/O’s ignores gains of pre-fetching a sequence of pages; thus, even I/O cost is only approximated. • Average-case analysis; based on several simplistic assumptions. • Good enough to show the overall trends!

  16. Comparing File Organizations • Heap files (random order; insert at eof) • Sorted files, sorted on <age, sal> • Clustered B+ tree file, search key <age, sal> • Heap file with unclustered B + tree index on search key <age, sal> • Heap file with unclustered hash index on search key <age, sal>

  17. Operations to Compare • Scan: Fetch all records from disk • Equality search • Range selection • Insert a record • Delete a record

  18. Understanding the Workload • For each query in the workload: • Which relations does it access? • Which attributes are retrieved? • Which attributes are involved in selection/join conditions? How selective are these conditions likely to be? • For each update in the workload: • Which attributes are involved in selection/join conditions? How selective are these conditions likely to be? • The type of update (INSERT/DELETE/UPDATE), and the attributes that are affected.

  19. Choice of Indexes • What indexes should we create? • Which relations should have indexes? What field(s) should be the search key? Should we build several indexes? • For each index, what kind of an index should it be? • Clustered? Hash/tree?

  20. Choice of Indexes (Contd.) • One approach: Consider the most important queries in turn. Consider the best plan using the current indexes, and see if a better plan is possible with an additional index. If so, create it. • Obviously, this implies that we must understand how a DBMS evaluates queries and creates query evaluation plans! • For now, we discuss simple 1-table queries. • Before creating an index, must also consider the impact on updates in the workload! • Trade-off: Indexes can make queries go faster, updates slower. Require disk space, too.

  21. Index Selection Guidelines • Attributes in WHERE clause are candidates for index keys. • Exact match condition suggests hash index. • Range query suggests tree index. • Clustering is especially useful for range queries; can also help on equality queries if there are many duplicates. • Multi-attribute search keys should be considered when a WHERE clause contains several conditions. • Order of attributes is important for range queries. • Such indexes can sometimes enable index-only strategies for important queries. • For index-only strategies, clustering is not important! • Try to choose indexes that benefit as many queries as possible. Since only one index can be clustered per relation, choose it based on important queries that would benefit the most from clustering.

  22. Examples of Clustered Indexes SELECT E.dno FROM Emp E WHERE E.age>40 • B+ tree index on E.age can be used to get qualifying rows • How selective is the condition? • Is the index clustered? • Consider the GROUP BY query • If many tuples have E.age > 10, using E.age index and sorting the retrieved rows may be costly • Clustered E.dno index may be better! • Equality queries and duplicates: • Clustering on E.hobby helps! SELECT E.dno, COUNT (*) FROM Emp E WHERE E.age>10 GROUP BY E.dno SELECT E.dno FROM Emp E WHERE E.hobby=Stamps

  23. Indexes with Composite Search Keys Examples of composite key indexes using lexicographic order. • Composite Search Keys- Search on a combination of fields. • Equality query - Every field value is equal to a constant value. E.g. wrt <sal,age> index: • age=20 and sal =75 • Range query- Some field value is not a constant. E.g.: • age=20 and sal > 10 • Data entries in index sorted by search key to support range queries. • Lexicographic order, or • Spatial order. 11,80 11 12 12,10 name age sal 12,20 12 13,75 bob 12 10 13 <age, sal> cal 11 80 <age> joe 12 20 10,12 sue 13 75 10 20 20,12 Data records sorted by name 75,13 75 80,11 80 <sal, age> <sal> Data entries in index sorted by <sal,age> Data entries sorted by <sal>

  24. Composite Search Keys • To retrieve Emp records with age=30 AND sal=4000, an index on <age,sal> would be better than an index on age or an index on sal • Choice of index key orthogonal to clustering etc. • If condition is: 20<age<30AND 3000<sal<5000 • Clustered tree index on <age,sal> or <sal,age> is best • If condition is: age=30 AND 3000<sal<5000 • Clustered <age,sal> index much better than <sal,age> index!

  25. Summary • Many alternative file organizations exist, each appropriate in some situation. • If selection queries are frequent, sorting the file or building an index is important. • Hash-based indexes only good for equality search • Sorted files and tree-based indexes best for range search; also good for equality search. (Files rarely kept sorted in practice; B+ tree index is better.) • Index is a collection of data entries plus a way to quickly find entries with given key values.

  26. Summary (Contd.) • Data entries can be actual data records, <key, rid> pairs, or <key, rid-list> pairs. • Can have several indexes on a given file of data records, each with a different search key • Indexes can be classified as clustered vs. unclustered, primary vs. secondary. Differences have important consequences for utility/performance.

  27. Summary (Contd.) • Understanding the nature of the workload for the application, and the performance goals, is essential to developing a good design. • What are the important queries and updates? What attributes/relations are involved? • Indexes must be chosen to speed up important queries (and perhaps some updates!). • Index maintenance overhead on updates to key fields. • Choose indexes that can help many queries, if possible. • Build indexes to support index-only strategies. • Clustering is an important decision; only one index on a given relation can be clustered! • Order of fields in composite index key can be important.

  28. Lecture Overview • Overview Of Storage and Indexing (Chap 8) • Overview Of Query Evaluation(Chap 12) • Schema Refinement and Normal Forms (Chap 19) • Physical Database Design (Chap 20) • Security and Authorization (Chap 21)

  29. Overview of Query Evaluation Chapter 12

  30. Some Common Techniques • Algorithms for evaluating relational operators use some simple ideas extensively: • Indexing: Can use WHERE conditions to retrieve small set of tuples (selections, joins) • Iteration: Sometimes, faster to scan all tuples even if there is an index. (And sometimes, we can scan the data entries in an index instead of the table itself.) • Partitioning: By using sorting or hashing, we can partition the input tuples and replace an expensive operation by similar operations on smaller inputs. * Watch for these techniques as we discuss query evaluation!

  31. Statistics and Catalogs • Need information about the relations and indexes involved. Catalogstypically contain at least: • # tuples (NTuples) and # pages (NPages) for each relation • # distinct key values (NKeys) and NPages for each index • Index height, low/high key values (Low/High) for each tree index • Catalogs updated periodically • Updating whenever data changes is too expensive; lots of approximation anyway, so slight inconsistency ok. • More detailed information (e.g., histograms of the values in some field) are sometimes stored.

  32. Highlights of System R Optimizer • Impact: • Most widely used currently; works well for < 10 joins. • Cost estimation- Approximate art at best • Statistics, maintained in system catalogs, used to estimate cost of operations and result sizes. • Considers combination of CPU and I/O costs. • Plan Space- Too large, must be pruned. • Only the space of left-deep plansis considered • Left-deep plans allow output of each operator to be pipelinedinto the next operator without storing it in a temporary relation.

  33. Cost Estimation • For each plan considered, must estimate cost: • Must estimate costof each operation in plan tree. • Depends on input cardinalities. • We’ve already discussed how to estimate the cost of operations (sequential scan, index scan, joins, etc.) • Must also estimate size of resultfor each operation in tree! • Use information about the input relations. • For selections and joins, assume independence of predicates.

  34. Schema for Examples Sailors (sid: integer, sname: string, rating: integer, age: real) Reserves (sid: integer, bid: integer, day: dates, rname: string) • Similar to old schema; rname added for variations. • Reserves: • Each tuple is 40 bytes long, 100 tuples per page, 1000 pages. • Sailors: • Each tuple is 50 bytes long, 80 tuples per page, 500 pages.

  35. sname rating > 5 bid=100 sid=sid Sailors Reserves (On-the-fly) sname (On-the-fly) rating > 5 bid=100 (Simple Nested Loops) sid=sid Sailors Reserves RA Tree: Motivating Example SELECT S.sname FROM Reserves R, Sailors S WHERE R.sid=S.sid AND R.bid=100 AND S.rating>5 • Cost: 500+500*1000 I/Os • By no means the worst plan! • Misses several opportunities: selections could have been `pushed’ earlier, no use is made of any available indexes, etc. • Goal of optimization: To find more efficient plans that compute the same answer. Plan:

  36. (On-the-fly) sname (Sort-Merge Join) sid=sid (Scan; (Scan; write to write to rating > 5 bid=100 temp T2) temp T1) Reserves Sailors Alternative Plans 1 (No Indexes) • Main difference: push selects. • With 5 buffers, cost of plan: • Scan Reserves (1000) + write temp T1 (10 pages, if we have 100 boats, uniform distribution). • Scan Sailors (500) + write temp T2 (250 pages, if we have 10 ratings). • Sort T1 (2*2*10), sort T2 (2*3*250), merge (10+250) • Total: 3560 page I/Os. • If we used BNL join, join cost = 10+4*250, total cost = 2770. • If we `push’ projections, T1 has only sid, T2 only sid and sname: • T1 fits in 3 pages, cost of BNL drops to under 250 pages, total < 2000.

  37. (On-the-fly) sname Alternative Plans 2With Indexes (On-the-fly) rating > 5 (Index Nested Loops, with pipelining ) sid=sid • With clustered index on bid of Reserves, we get 100,000/100 = 1000 tuples on 1000/100 = 10 pages. • INL with pipelining (outer is not materialized). (Use hash Sailors bid=100 index; do not write result to temp) Reserves • Projecting out unnecessary fields from outer doesn’t help. • Join column sid is a key for Sailors. • At most one matching tuple, unclustered index on sid OK. • Decision not to push rating>5 before the join is based on • availability of sid index on Sailors. • Cost: Selection of Reserves tuples (10 I/Os); for each, • must get matching Sailors tuple (1000*1.2); total 1210 I/Os.

  38. Summary • There are several alternative evaluation algorithms for each relational operator • A query is evaluated by converting it to a tree of operators and evaluating the operators in the tree • Must understand query optimization in order to fully understand the performance impact of a given database design (relations, indexes) on a workload (set of queries) • Two parts to optimizing a query: • Consider a set of alternative plans. • Must prune search space; typically, left-deep plans only. • Must estimate cost of each plan that is considered. • Must estimate size of result and cost for each plan node. • Key issues: Statistics, indexes, operator implementations.

  39. Lecture Overview • Overview Of Storage and Indexing (Chap 8) • Overview Of Query Evaluation (Chap 12) • Schema Refinement and Normal Forms (Chap 19) • Physical Database Design (Chap 20) • Security and Authorization (Chap 21)

  40. Schema Refinement and Normal Forms Chapter 19

  41. The Evils of Redundancy • Redundancyis at the root of several problems associated with relational schemas: • redundant storage, insert/delete/update anomalies • Integrity constraints, in particularfunctionaldependencies, can be used to identify schemas with such problems and to suggest refinements • Main refinement technique: decomposition (replacing ABCD with, say, AB and BCD, or ACD and ABD) • Decomposition should be used judiciously: • Is there reason to decompose a relation? • What problems (if any) does the decomposition cause?

  42. Functional Dependencies (FDs) • A functional dependencyX Y holds over relation R if, for every allowable instance r of R: • t1 r, t2 r, (t1) = (t2) implies (t1) = (t2) • i.e., given two tuples in r, if the X values agree, then the Y values must also agree. (X and Y are sets of attributes.) • An FD is a statement about all allowable relations. • Must be identified based on semantics of application. • Given some allowable instance r1 of R, we can check if it violates some FD f, but we cannot tell if f holds over R! • K is a candidate key for R means that K R • However, K R does not require K to be minimal!

  43. Example: Constraints on Entity Set • Consider relation obtained from Hourly_Emps: • Hourly_Emps (ssn, name, lot, rating, hrly_wages, hrs_worked) • Notation: We will denote this relation schema by listing the attributes: SNLRWH • This is really the set of attributes {S,N,L,R,W,H}. • Sometimes, we will refer to all attributes of a relation by using the relation name. (e.g., Hourly_Emps for SNLRWH) • Some FDs on Hourly_Emps: • ssn is the key: S SNLRWH • rating determines hrly_wages: R W

  44. Example (Contd.) lot name rating ssn hourly_wages hours_worked

  45. Wages Example (Contd.) Hourly_Emps2 • Problems due to R W : • Update anomaly: Can we change W in just the 1st tuple of SNLRWH? • Insertion anomaly: What if we want to insert an employee and don’t know the hourly wage for his rating? • Deletion anomaly: If we delete all employees with rating 5, we lose the information about the wage for rating 5! Will 2 smaller tables be better?

  46. Normal Forms • Returning to the issue of schema refinement, the first question to ask, “Is any refinement needed?” • If a relation is in a certain normal form(BCNF, 3NF etc.), it is known that certain kinds of problems are avoided/minimized. This can be used to help us decide whether decomposing the relation will help. • Role of FDs in detecting redundancy: • Consider a relation R with 3 attributes, ABC. • No FDs hold: There is no redundancy here. • Given A B: Several tuples could have the same A value, and if so, they’ll all have the same B value!

  47. Boyce-Codd Normal Form (BCNF) • In other words, a relation, R, is in BCNF if the only non-trivial FDs that hold over R are key constraints • No dependency in R that can be predicted using FDs alone • If we are shown two tuples that agree upon the X value, we cannot infer the A value in one tuple from the A value in the other • If example relation is in BCNF, the 2 tuples must be identical (since X is a key) Nonkey attrk Nonkey attr2 KEY Nonkey attr1 BNCF ensures that no redundancy can be detected using FD information alone. It is the most desirable normal form!

  48. Third Normal Form (3NF) • If R is in BCNF, it’s obviously in 3NF. • If R is in 3NF, some redundancy is possible. It is a compromise, used when BCNF not achievable (e.g., no ``good’’ decomp, or performance considerations). • Lossless-join, dependency-preserving decomposition of R into a collection of 3NF relations is always possible • Thus, 3NF is indeed a compromise relative to BCNF.

  49. Decomposition of a Relation Scheme • Suppose that relation R contains attributes A1 ... An. A decompositionof R consists of replacing R by two or more relations such that: • Each new relation scheme contains a subset of the attributes of R (and no attributes that do not appear in R), and • Every attribute of R appears as an attribute of one of the new relations. • Intuitively, decomposing R means we will store instances of the relation schemes produced by the decomposition, instead of instances of R. • E.g., Can decompose SNLRWH into SNLRH and RW.

  50. Example Decomposition • Decompositions should be used only when needed. • SNLRWH has FDs S SNLRWH and R W • Second FD causes violation of 3NF; W values repeatedly associated with R values. Easiest way to fix this is to create a relation RW to store these associations, and to remove W from the main schema: • i.e., we decompose SNLRWH into SNLRH and RW • The information to be stored consists of SNLRWH tuples. If we just store the projections of these tuples onto SNLRH and RW, are there any potential problems that we should be aware of?

More Related