1 / 10

Efficient Hashing-Based Algorithms for Query Optimization in Database Systems

Understand the fundamentals of hashing-based algorithms for query execution and optimization in database systems. Learn about hash basics, partitioning relations, grouping, aggregation, union, intersection, difference, and the hash-join algorithm. Explore the process of executing queries and optimizing logical and physical query plans. Gain insights into the operation of database management system components and how user queries are translated into database operations. Discover techniques to reduce I/O operations and improve the efficiency of handling large data sets using hashing-based approaches.

Télécharger la présentation

Efficient Hashing-Based Algorithms for Query Optimization in Database Systems

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. Query executionhashing based Two pass algorithms —Gaurang Patel— (205)

  2. Agenda • Terminology • Hash Basics • Partitioning relation by hashing • Hash-based Grouping and Aggregation • Union, Intersection and Difference • Hash-Join Algorithm • Conclusion

  3. Terminology • Query optimization -- Logical Query plan -- Physical plan • Query execution: -- Query processor- group of DBMS components -- Converts user queries into database operations • Operation • Relation- arguments of operation

  4. Basics of Hash • Large data • Hash functions to store large relations Memory buffers • Gain factor of M in the size of relations

  5. Partitioning Relations by Hashing Algorithm:

  6. Hash-based Grouping and Aggregation • Tuples from same block foes to same bucket • Hash key depends on grouping attributes • First pass: Process each bucket in turn. • Second pass: Only one record per group.

  7. Union, Intersection and Difference • Binary operation- same hash function for both arguments • Union: R U S • First Pass -- 2(M-1) buckets -- Avoid duplicates • Same for R ∩ S, R – S..

  8. Union, Intersection and Difference • I/O operations needed: -- B(R) + B(S) -- 2 more for hashing -- Total: 3(B(R) + B(S)) • For, two pass algorithm: -- min(B(R),B(S)) ≤ M2

  9. Hash-Join Algorithm • R(X,Y) ►◄ S(Y,Z) • Same as other binary operations • Only difference in hash key, Y • I/O operations: -- 3(B(R)+B(S)) -- Two pass require min(B(R),B(S)) ≤ M2 -- Further techniques to reduce number of I/O operations

  10. Thank you !

More Related