Short version: Support queries of the following three forms:
INSERT INTO R (A, B, C, ...) VALUES (1, 2, 3, 4, ...); DELETE FROM R WHERE A < 3, ... UPDATE R SET A = A+1, B = 2 WHERE C = 3;
Specifically, your code should support:
Your code will be evaluated in nearly the same way as Projects 1 - 3. Your code will be presented with a 1000MB (SF 1) TPC-H dataset. You will get a cumulative 10 minutes to process all of the CREATE TABLE statements; This time will not count towards your overall time. Taking more than 10 minutes will result in a 0 grade for the submission.
Queries will be interleaved with a sequence of randomly generated update commands. There will be 3 phases:
Total Time for Max (Half) Score | ||
---|---|---|
Phase | Updates | Queries |
1 | 0.5 s (2 s) | 200 s (500 s) |
2 | 0.5 s (2 s) | 300 s (600 s) |
3 | 1500 s (3000 s) | 400 s (800 s) |
This page last updated 2024-09-19 13:18:43 -0400