Improving Hash Join Performance By Exploiting Intrinsic Data Skew by Bryce Cutt supervised by Dr. Ramon Lawrence
Introduction Databases are part of our lives Hash Join is a core database algorithm o Very I/O intensive for large databases Queries may take hours o Any performance improvement is significant Real datasets contain skew o Skew is when some values occur more frequently o Skew can greatly reduce hash join performance Skew traditionally considered a bad thing for join algorithms o Try to mitigate negative effects of skew Adapt hash join o No longer just mitigate o Use foreknowledge of skew Improve performance
Relational Model Definitions
Example Relations Build Relation Probe Relation Part Purchase
DHJ Algorithm Build Phase Hash Function: modulo 5
DHJ Algorithm Build Phase, cont.
Probe Relation
DHJ Algorithm Probe Phase
DHJ Algorithm Probe Phase, cont.
DHJ Algorithm Cleanup Phase
DHJ Algorithm Cleanup Phase, cont.
Skewed Probe Relation
Statistics and Hash Joins Modern database systems maintain statistics such as histograms for query optimization What if hash join could use the statistics to choose the best build tuples to keep in memory? o Does not have to generate own statistics
Histojoin Algorithm General Idea Same basic form as DHJ Determines best build tuples from histogram o In this case the tuples with partid 2 and 3 Create partitions for the best build tuples o In addition to regular partitions o Freeze regular partitions first Perform a highly optimized multi-stage check o To determine the partition tuples belong in
Histojoin Algorithm Build Phase
Histojoin Algorithm Probe Phase
Implementation Details Avoided in algorithm description o General enough to fit any database system But ultimately important o Core of algorithm implementation specific Implemented in o Stand alone Java app Optimistic implementation o PostgreSQL HHJ Conservative implementation
Inaccurate Statistics Selections Multi-join plans o Sampling o SITs Handling dependent on implementation o PostgreSQL conservative memory usage
Experimental Results TPC-H o Database commonly used to test database system performance o Skewed versions o 1GB dataset used in Java tests o 10GB dataset used in PostgreSQL tests
Experimental Results, cont. Java, Lineitem/Part, skewed, 1GB Approx. 20% faster
Experimental Results, cont. Java, Lineitem/Part,high skew, 1GB Approx. 60% faster
Experimental Results, cont. Java, Various Joins, Percent Improvement, 1GB Approx. 20% for skewed and 60% for high skew
Experimental Results, cont. Java, Lineitem/Part, Inaccurate Histogram, 1GB
Experimental Results, cont. Java, Lineitem/Part/Supplier,high skew, 1GB Approx. 75% faster
Experimental Results, cont. PostgreSQL, Lineitem/Part,skewed, 10GB Approx. 10% faster
Experimental Results, cont. PostgreSQL, Lineitem/Part, high skew, 10GB Approx. 60% faster
Experimental Results, cont. PostgreSQL, Various Joins, Percent Improvement, 10GB 5-10% for skewed and 50-60% for high skew
Conclusion Histojoin o significantly outperforms standard hash joins in the presence of skew Smart implementation mitigates pitfalls Two papers have been published from this work PostgreSQL patch currently in review o Will be used by millions of users
Thank you Thank you Dr. Lawrence