ECS 165A: Database Systems

Instructor: Mohammad Sadoghi
E-mail: [email protected]
Office: Remote
Office Hours: Friday 3:00-5:00pm

Teaching Fellow: Junchao Chen
Email: [email protected]
Office: Academic Surge: Room 2392
Office Hours: Friday 11:00am-1:00pm

Teaching Fellow: Dakai Kang
Email: [email protected]
Office: Academic Surge: Room 2392
Office Hours: Monday 3:00-5:00pm

Lecture
            Time: Tue/Thu 3:10-4:30pm
            Location: Giedt 1002

Discussions Sessions
           A1 Thursdays 2:10-3:00pm (Cruess Hall 107)
           A2 Wednesdays 11:00-11:50am (Olson Hall 147)
           A3 Tuesdays 2:10-3:00pm (Olson Hall 205)


Overview

This is an innovative data management course that provides an introduction to the design and development of fundamental concepts in relational database management systems (DBMS). You will learn the theory and design behind database systems, the issues that affect their functionality and performance, and most importantly, what it takes to effectively utilize modern databases in practice.

The course has completely been redesigned, all students are expected to work in a group of five on an exciting, open-ended, data-oriented, quarter-long project, in a sense, operating and simulating startup environments. Needless to say, this rewarding experience is accompanied by a significant development effort (in Python) that spans hands-on experience on concepts such as memory and disk management, synchronization and concurrency, logging and recovery, and query optimization and evaluation, to name a few. To materialize these objectives, together this quarter, we will be building simplified L-Store [Paper, Slides] from scratch, an Hybrid Transactional and Analytical Processing (HTAP) database.

The course work is complementary to the classical well-formed, prescriptive model of assignments/projects that are indeed effective and invaluable in practice. Instead by design, the project is intended to be open-ended, namely, minimal instructions and requirements will be provided, as such it rewards and values research & development, taking risks, above all, it is aimed to foster and tap into the creativity of each individual.

The quarter-long project is broken into a set of three milestones, all milestones will be graded both orally (60% of the grade) and using autograder (the remaining 40% of the grade). The presentation is done by all five group members, and each group member must be ready to answer questions about any aspect of the project; the latter is the utmost importance to ensure comprehensive learning experience and fair division of work among all members. Furthermore, in each milestone, a bonus of up to 10% can be gained to further encourage taking a risk, going the extra mile, and to just be curious & creative. Part of the bonus is reserved for fastest and the most optimized implementation of L-Store in class, e.g., how many read/write operations per second (adjusted based on the number of cores, CPU clock frequency, amount of memory, cache size, and other hardware metrics to ensure comparable results).

A fact of life, when there is group work, whether at school or in society, there are occasional conflicts; and it is crucial to learn how to resolve our differences and be receptive, open, and kind to one another. In kindness and reflection, we shall aim to resolve all conflicts. It is the group responsibility to handle all internal affairs, and only when absolutely necessary involving the instructor. But note, only under very rare exceptional circumstances, a group re-structuring would be granted because once the group is formed, at least for 10 weeks, we must learn how to work with each other in harmony.

For each group, it is recommended that each member lead one aspect of the project while contributing and learning about other parts; roughly, the main components are (1) memory management (e.g., bufferpool), (2) disk management (e.g., persistence and logging), (3) in-memory indexing (e.g., hashing or tree), (4) data access methods (e.g., APIs and query language), (5) multi-threading and synchronization (e.g., data structures latching), (6) transaction and concurrency (e.g., record-level locking), and (7) testing and benchmarking (correctness verification and performance measurements).

As for the lectures, the list of topics covered would include but not limited to:

  • DBMS Concepts and Architecture
  • Storage and Indexing
  • Query Languages (Relational Algebra and SQL)
  • Query Evaluation and Optimization
  • Concurrency Control and Recovery
  • Database Design, the E-R Model, Normalization, and Tuning
  • Database Security, Blockchain

Syllabus

Textbooks:

Required:
  • "Database Management Systems" (referred to as DB), 3rd Edition. Raghu Ramakrishnan and J. Gehrke. McGraw Hill, 2003, ISBN 0-07-246563-8.
  • "Transaction Processing on Modern Hardware" (referred to as TP), Mohammad Sadoghi and Spyros Blanas. Morgan & Claypool Synthesis Lectures on Data Management. 2019. [Free online access when accessed within the UC Davis network].
  • "Fault-tolerant Distributed Transactions on Blockchain". (referred to as BC) Suyash Gupta, Jelle Hellings and Mohammad Sadoghi. Morgan & Claypool Synthesis Lectures on Data Management. 2021. [Free online access when accessed within the UC Davis network].
  • Additionally, a list of research papers will be added later as part of the optional reading for the enthusiastic students.
Optional:

Workload:

The key component of the course is the quarter-long group project that is broken into a set of three main milestones. All milestones will be graded orally (unless specified otherwise), where the progress is presented by all group members, and each group member must be ready to answer questions about any aspect of the project; the latter is the utmost importance to ensure comprehensive learning experience and fair division of work among all members. Therefore, for each milestone, a portion of the grade is devoted to the presented project as a whole on which all members receive the same grade (60% of the grade), but the remaining portion is individualized (40% of the grade), so for each milestone, not all group members may receive the same grade. For each milestone, a bonus of up to 10% can be rewarded.

The presentation for the oral evaluation is limited to at most 15 minutes per team, the time is strictly enforced. The breakdown of 15 minutes is as follows:
  • The milestone overview: the design and solution, what was accomplished and how? (8 minutes)
  • Q/A: Questions about various aspects of the project (4 minutes)
  • Demo: A live demonstration of the code, which includes adding, modifying, and querying the data (3 minutes)
Additionally, there will be a pre-milestone individual assignment, for which each student is expected to think about and explore all aspects of the project. In other words, each student for his/herself, need to think about what it is required to make a HTAP database and to document their finding in a few pages. Of course, it is highly recommended to search the web for tutorials and other useful materials. As for part this pre-milestone phase, (1) the group must be formed, namely, when each student submit their report, the name of their group members and their team name must be submitted; and (2) each student must decide which aspect of the project he/she wishes to lead based on the research. If you need help to form your group and look for partners, kindly contact the TAs. Note any group assignment by TAs will be random. Additionally, an online form will be made available to submit your team details.

All milestone presentations will be done on Zoom.

Grading: (tentative and subject to change due to COVID)

The final grade will be based upon the following components (all submissions are due at midnight):
  • Individual Pre-milestone Assignment: 5% (Due on January 24, 2023)
  • Group Project (three milestones): 60%

    • Milestone 1 (20%): Single-threaded, In-memory L-Store (Due on February 14); Oral Eval on February 17 (8:00am-7:00pm)
    • Milestone 2 (20%): Single-threaded, In-memory & Durable L-Store (Due on February 28); Oral Eval on March 3 (8:00am-7:00pm)
    • Milestone 3 (20%): Multi-threaded, In-memory & Durable L-Store (Due on March 14); Oral Eval on March 17 (8:00am-7:00pm)
  • In-class Midterm: 10% (February 23, 2022)
  • Final Exam: 25% (March 20, 2023 at 3:30pm)

Communication:

For communication with the instructor, please use email ([email protected]) and not Canvas. The instructor will not check/reply to Canvas messages.

For group communication (monitored by TAs) and other students, we will rely on Piazza.

Course Policy:

In this class, we adopt the UC Davis Code of Academic Conduct available here.

In addition, late submission will result in a 10% penalty for each day late; at most an extension of up to two days may be granted. Students are strongly advised that any act of cheating will result in a score of 0 for the entire milestone (or the course) and offenses will be reported to the Office of the Dean of Students. You are encouraged to discuss problems and ideas but the final solution or code must be your own. In the event of a major campus emergency, course requirements, deadlines, and grading percentages are subject to changes that may be necessitated by a revised quarter calendar. If such unusual circumstances arise, students may determine any such changes by contacting the instructor.


Contents

List of Topics (tentative):

  1. Introduction to Database Systems
  2. Storage and Indexing
  3. Transaction Management
  4. Database Query Languages
  5. Schema Design (tentative)
  6. Query Evaluation (tentative)
  7. Secure Transactions & Blockchain (tentative)


Tentative Schedule

[Previous Lecture Recordings: Winter 2020, Winter 2021]
January 10, 2023:
  • Overview
January 12, 2023: [Lecture Recording:] January 17, 2023: [Lecture Recording:] January 19, 2023: [Lecture Recording] January 24, 2023: [Lecture Recording: Part 1, Part 2]
  • L-Store - Lineage-based Storage Architecture (TP.Chapters 3.1.3, 3.4, 5.2.1) [Paper, Slides]
  • (Individual Pre-milestone Assignment is due on January 24)
January 26, 2023: [Lecture Recording: Part 1, Part 2]
  • L-Store - Lineage-based Storage Architecture - Continued (TP.Chapters 3.1.3, 3.4, 5.2.1) [Paper, Slides]
January 31, 2023: [Lecture Recording: Part 1, Part 2]
  • L-Store - Lineage-based Storage Architecture - Continued (TP.Chapters 3.1.3, 3.4, 5.2.1) [Paper, Slides]
February 2, 2023: [Lecture Recording: Part 1, Part 2]
  • L-Store - Lineage-based Storage Architecture - Continued (TP.Chapters 3.1.3, 3.4, 5.2.1) [Paper, Slides]
February 7, 2023: [Lecture Recording] February 9, 2023: [Lecture Recording: Part 1, Part 2] February 14, 2023: [Lecture Recording: Part 1, Part 2]
  • Storing Data: Disks and Files - Continued (DB.Chapter 9)
  • (Milestone 1 is due)
February 16, 2023: [Lecture Recording] February 21, 2023: [Lecture Recording] February 23, 2023:
    In-class Midterm
February 28, 2023: [Lecture Recording: Lecture Recording: Part 1, Part 2]
  • Overview of Concurrency in L-Store: 2VCC - Two-version Concurrency Control (TP.Chapters 3.1.3) [Paper, Slides]
March 2, 2023: [Lecture Recording]
  • L-Store Concurrency Controls: QueCC - A Queue-oriented, Control-free Concurrency Architecture (TP.Chapters 5.1.6) [Paper, Slides]
  • (Milestone 2 is due)
March 7, 2023: [Lecture Recording: CC.Part 1] March 9, 2023: [Lecture Recording: CC.Part 1] March 14, 2023: [Lecture Recording: CC.Part 2] March 16, 2023: [Lecture Recording: CC.Part 3] Optional [Lecture Recording: Part 1, Part 2] Optional [Lecture Recording] Optional [Lecture Recording: Part 1, Part 2]

Announcements

February 28, 2022: Milestone #3 is out. It is due on Tuesday, March 14 through Canvas. There will be no penalty for late submission, but after two late days, the assignment will not be accepted.

February 15, 2022: Milestone #2 is out. It is due on Tuesday, February 28 through Canvas. There will be a 10% penalty for each late day. After two late days, the assignment will not be accepted.

January 24, 2023: Milestone #1 is out. It is due on Tuesday, February 14 through Canvas. There will be a 10% penalty for each late day. After two late days, the assignment will not be accepted.

January 1, 2023: Pre-milestone Homework is out. It is due on Tuesday, January 24 through Canvas. There will be a 10% penalty for each late day. After two late days, the assignment will not be accepted.

January 1, 2023: Welcome to ECS 165A. Kindly note that the lecture starts on January 10, and the discussion starts on the week of January 16. Looking forward to an amazing quarter.

Top Presentations

First Milestone

  • LTeam
    Presenters: Alejandro Torres, Jenny Wang,Ho-Chih Ma, Jamie Wu, Karthik Palanisamy [Slides]
  • BLANK
    Presenters: Alejandro Torres, Jenny Wang,Ho-Chih Ma, Jamie Wu, Karthik Palanisamy [Slides]
  • The Database Group
    Presenters: Dulce Torres, Kyle Pickle, Pranav Kode, Sean Nguyen, Ruqayyah Siddique [Slides]
  • MangoDB
    Presenters: Abhi Sohal, Jared Givens, Noah Krim, Dominic Quintero, Haskell Macaraig [Slides]

Second Milestone

  • LTeam
    Presenters: Alejandro Torres, Jenny Wang, Ho-Chih Ma, Jamie Wu, Karthik Palanisamy [Slides]
  • The Database Group
    Presenters: Dulce Torres, Kyle Pickle, Pranav Kode, Sean Nguyen, Ruqayyah Siddique [Slides]
  • CAN'T-STORE
    Presenters: Naman Sheth, Daniel Medina, Ivan Cvjetinovic, Christopher Phan, Hanson Lau [Slides]

Third Milestone

  • LTeam
    Presenters: Alejandro Torres, Jenny Wang, Ho-Chih Ma, Jamie Wu, Karthik Palanisamy [Slides]
  • BaseDB
    Presenters: Hoai-An Ho, Max Gao, Hammud Haq, Dillon Jackson, Gisselle Petty [Slides]
  • MangoDB
    Presenters: Abhi Sohal, Jared Givens, Noah Krim, Dominic Quintero, Haskell Macaraig [Slides]

Grades

Grades will be made available on your Canvas account.