Search
(10 points)
Examples (guidance)
If your query is already optimal, prove it with DBMS tools (MongoDB explain(“executionStats”), Neo4j PROFILE, Cassandra TRACING ON) and show the plan/read metrics. Then apply a small measurable optimization (e.g., projection/covered query, refine an index/constraint, reduce touched partitions/columns) and compare before vs. after (time + read volume/DB hits). If improvement is tiny, that’s OK - explain why the original was already near-optimal and what changed.
Comparative Analysis
| DBMS | Query / task | Optimization technique | Median_before | Median_after | Read volume before | Read volume after |
Scaling, schema changes, and “what if it doesn’t fit?”
Submission Instructions
Deadline