1 / 59

Structural Join Algorithms

Structural Join Algorithms. Tree Pattern Query – Structural Relationships. Query Evaluation Methods. Iterator model of execution Navigation Streaming Set-based execution model Structural join. Why Start With Labeling Schemes ? . Idea: assign labels to XML elements unique identifiers +

donoma
Download Presentation

Structural Join Algorithms

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. Structural Join Algorithms

  2. Tree Pattern Query – Structural Relationships

  3. Query Evaluation Methods • Iterator model of execution • Navigation • Streaming • Set-based execution model • Structural join

  4. Why Start With Labeling Schemes ? Idea: assign labels to XML elements unique identifiers + useful information for query processing Source of big performance improvements over relational storage + traditional joins Many labeling schemes trade-off between space occupancy, information contents, and suitability to updates most frequent one: region-based (“pre-post") shortcomings and alternatives new ones still being produced 4

  5. (1,10) references (2,6) (8,9) book book title author author author title year author (3,1) (4,2) (5,3) (6,4) (7,5) (9,7) (10,8) Node Labeling Scheme (1) • (preorder, postorder) [Dietz82] • x is an ancestor of y iff x occurs before y in the preorder traversal and after y in the postorder traversal.

  6. Node Labeling Scheme (2) • (begin, end) [Zhang01] • The begin and end positions can be generated by doing a depth-first traversal of the tree and sequentially assigned a number at each visit. (1,20) references (2,13) (14,19) book book title author author author title year author (3,4) (5,6) (7,8) (9,10) (11,12) (15,16) (17,18)

  7. Node Labeling Scheme (3) • (order, size) [Li01] • order(x)<order(y) & order(y)+size(y)<=order(x)+size(x) • order(x)+size(x) < order(y) (1,100) references (2,60) (80,30) book book title author author author title year author (3,5) (10,6) (15,3) (26,7) (30,5) (85,7) (90,8)

  8. Node Labeling Scheme (4) • Dewey Decimal Coding [Tatarinov02] 1 references 1.1 1.2 book book title author author title year author 1.1.1 1.1.2 1.1.3 1.1.4 1.2.1 1.2.2

  9. Node Labeling and Updates • Inserting new elements Possible solutions: • Leave empty intervals [Li01] • Use real numbers [JKC+02] • Multi-versioning [CTZ+02] • Append another "discriminating" label references 1 1.1 1.2 book book title author author author title year author 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.1 1.2.2 new element nodes that require renumbering

  10. ORDPATHs [Neil04] Label each node by a sequence of integer numbers Initial loading: all odd numbers This scheme records: order; depth; parent;ancestor-descendent relationships. 1.3.-1 1.3.5 1.3. 2.1 1.3. 2.3 1 1.1 1.3 1.5 1.3.1 1.3.3 Insert first sibling: decrease leftmost code by 2 Insert last sibling: increase rightmost code by 2 Insert between siblings: use even numbers (does not affect node depth) 10

  11. Internal Representation of ORDPATHs L0 O0 L1 O1 ... Li Oi ... where: Oi is the i-th number Li encodes Oi's length Li's must satisfy prefix property Partition [-max, max] in intervals of length 2i Build prefix tree on the partitioning 1.3.-3 1.3.-1 1.3.5 1.3. 2.1 1.3. 2.3 1.3.-1.1 1 1.1 1.3 1.5 1.3.1 1.3.3 0 [-21,-6] [-5,-2] [-1,0] [1,1] [2,3] [4,7] [8,23] If Oi[-21,-6], Li=000, -21 is 0000, ..., -6 is 1111 If Oi[-5,-2], Li=001, -5 is 00, ..., -2 is 11 If Oi[-1,0], Li=01, -1 is 0, 0 is 1 If Oi[1,1], Li=10, Oi is not represented If Oi[2,3], Li=110, 2 is 0, 3 is 1 If Oi[4,7], Li=1110, 4 is 00, 7 is 11 If Oi[8,23], Li=1111, 8 is 0000, 23 is 1111 0 1 0 1 0 1 0 1 0 Moderate length on real-life documents [MBV03] 1 1 11

  12. DDE: Dynamic DEwey • Liang Xu, Tok Wang Ling, et. al., DDE: From Dewey to a Fully Dynamic XML Labeling Scheme, SIGMOD 2009 • Support efficient query processing on both static and dynamic documents • Completely avoid relabeling while updating

  13. DDE Example

  14. DDE • labels A: a1.a2… am and B: b1.b2...bn • AD relationship A is an ancestorofB ifm<n and • PC relationship A is the parentofB if m=n-1 and A is an ancestorofB • Document order A precedes B if • Sibling relationship A is the sibling of B if m=n and

  15. References • [Dietz82] P.F. Dietz, “Maintaining order in a linked list”, ACM Symposium on Theory of Computing, May 1982. • [Zhang01] C. Zhang et al., “On supporting containment queries in relational database management systems”, SIGMOD 2001. • [Li01] Q. Li and B. Moon, “Indexing and querying XML data for regular path expressions”, VLDB 2001. • [Tatarinov02] I. Tatarinov et al., “Storing and querying ordered XML using a relational database system”, SIGMOD 2002. • [ONeil04] P. O’Neil et al., “ORDPATHs: insert-friendly XML node labels”, SIGMOD 2004. • [JKC+02] H.V.Jagadish, S.Al-Khalifa, A.Chapman, et al. "TIMBER: a Native XML database", VLDB Journal 2002. • [CTZ+02] S.Chien, V.Tsotras, C.Zaniolo, et al. "Efficient complex query support for multiversion XML documents", EDBT 2002. • [MBV03] L.Mignet and D.Barbosa and P.Veltri. "The XML Web: a First Study", WWW 2003. • [XLW09] Liang Xu, Tok Wang Ling, et. al., DDE: From Dewey to a Fully Dynamic XML Labeling Scheme, SIGMOD 2009

  16. Structural Joins Relationship established through simple comparisons:

  17. Structural Joins: A Primitive for Efficient XML Query Pattern Matching S. Al-Khalifa et al., ICDE 2002

  18. Structural Join Algorithms • Two input lists • Ancestor (or parent) and descendant (or child) • Both sorted by start position • One output list • Pairs of ancestor/descendant or parent/child • Sorted by first or second element • Two families of algorithms presented • With and without stacks • Output ordered by ancestor and by descendant

  19. Tree Merge Join Algorithms • Natural extension of traditional relational merge joins to deal with multiple inequality conditions • E.g. MPMGJN [Zhang01] • Time complexity may be quadratic in the worst cases

  20. Worst Case for Tree-Merge-Anc

  21. Worst Case for Tree-Merge-Desc

  22. Stack Tree Join Algorithms • Basic idea: depth first traversal of XML tree • Linear time with stack size = depth of tree • All ancestor-descendant relationships appear on stack during traversal • Traverse the lists only once • Main problem: do not want to traverse the whole database, just nodes in AList/DList

  23. Stack-Tree-Desc a1 d1 a2 d2 a3 d3 d4 d5 d6 d7 d7 a1 d1 a2 d6 d2 a3 d5 d3 d4 a3 a2 Stack: a1 (a1,d3),(a2,d3),(a3,d3) (a1,d1) (a1,d2),(a2,d2) Output: (a1,d4),(a2,d4),(a3,d4) (a1,d5),(a2,d5) (a1,d6)

  24. Stack-Tree-Anc • Goal: Return pairs sorted by (anc, desc) • Basic Idea: Instead of printing output immediately, store output of each level. • When node is popped, append its output to the node below it • Each node has 2 lists: • Pairs that it is part of • Pairs that it “inherited”

  25. (a3,d3) (a2,d2),(a2,d3) (a3,d3),(a3,d4) (a2,d2),(a2,d3),(a2,d4) (a1,d1),(a1,d2),(a1,d3) (a1,d1),(a1,d2),(a1,d3),(a1,d4) (a3,d3),(a3,d4) (a2,d2) (a1,d1),(a1,d2) Stack-Tree-Anc d7 a1 a1 d1 a2 d2 a3 d3 d4 d5 d6 d7 d1 a2 d6 d2 a3 d5 d3 d4 a3 a2 a1 (a1,d1)

  26. (a3,d3),(a3,d4) Stack-Tree-Anc What happens next? d7 a1 a1 d1 a2 d2 a3 d3 d4 d5 d6 d7 d1 a2 d6 d2 a3 d5 d3 d4 (a2,d2),(a2,d3),(a2,d4),(a2,a5) a2 (a1,d1),(a1,d2),(a1,d3),(a1,d4),(a1,a5) a1

  27. Indexed Structural Join • Utilizing the existing indices (e.g. B+ tree, R*-Tree) to skip elements that do not participate in the join. • Shu-Yao Chien, et al., Efficient Structural Joins on Indexed XML Documents, VLDB 2002 • XR-tree (XML Region Tree) • Haifeng Jiang, et al., XR-Tree: Indexing XML Data for Efficient Structural Joins, ICDE 2003. • supports efficient retrieval of elements by structure relationship.

  28. a2 a1 a1 Ancestor a2 a9 d1 d2 d7 a3 a4 d6 a8 d1 d2 Descendant waste waste Case A Case B • Case A • (1) Push a1, a2 and a3 into the stack and join them with d1; • (2) Pop a3,a2 from stack • (3) examine (push into and pop from the stack) elements a4 ~ a8 from Ancestor-List • (4) Push a9 into the stack and then join a1 and a9 with d2 • Case B • Same the Case A • After a is joined with d1, the algorithm will sequentially scan the descendant elements d2~d6.

  29. Structural Join using B+-tree • Cluster elements from the same tag. • Multiple elements can be combined into a single index.

  30. a2 a1 a1 Ancestor a2 a9 d1 d2 d7 a3 a4 d6 a8 d1 d2 Descendant Jump utilize B+-Tree Jump utilize B+-Tree Case A Case B If ( a is an ancestor of d) then Push into stack all elements in A that are ancestors of d, a point to the last pushed; Output d as a descendant of all elements in stack, d point next; Else if (a.end < d.start )then Pop all stack elements which are before d; (Let l be the last element popped) Let a be the element in A having the smallest start that is larger than l.end; Else Output d as a descendant of all elements in stack; If (ancestor stack is empty) then Let d be the element in D having the smallest start that is larger than a.start; Else Let d be the next element in D;

  31. XR-Tree • Based on B+-tree • Given an element E and an element set R, all E’sancestors (or descendants) in R can be efficientlyidentified • Used to skip ancestors and descendants effectively in astructural join • Stab List • Given a key k and an element E(s,e), k stabs E if s ≤ k ≤ e;k primarily stabs E, if k is the smallest key that stabs E.

  32. Stab list SL(n) (s, e ) for all keys in n, contain their PSLs Internal node ( ki, psi, pei ) Leaf nodes contain element entries (s, e, InStabList? ) An Example XR-Tree first element in the PSL of ki

  33. Searching for Descendants • Given an element Ea (sa, ea), find all its descendants. • Search like B+-tree If search(37,68)

  34. If search(52,53) Searching for Ancestors • During the navigation from the root to the leaf page, we search the stab lists of internal nodes to collect elements stabbed by sd. • If ki ≤ sd < ki+1, for c = i+1 to 0 do if psc <sd < pec , then scan the PSLc • Find the largest key ki such thatki ≤ sd, traverse ki.rightChild • If can't find in PSL then find in leaf page

  35. Stack-based SJ with XR-trees • Assume that input lists A and D. • Both sets are indexed by XR-tree. • The algorithm proceeds like Merge-Join but it effectively skips elements that do not participate in the join

  36. Tree Pattern Query • Binary join approach: If a query is complex and contains many binary relationships, intermediate results can be very large. • Join ordering: • Y.Wu, J.Patel and H.V.Jagadish. "Structural Join Order Selection for XML Query Optimization", ICDE 2003 • Holistic twig join: • N.Bruno, N.Koudas and D.Srivastava. "Holistic Twig Joins: Optimal XML Pattern Matching", SIGMOD 2002

  37. Holistic Twig Joins • Solve the entire twig query in two phases • Produce “guaranteed” partial results using one pass. • Merge join partial results. • Contributions • PathStack and TwigStack algorithms • Exploiting XB-tree index

  38. XML fragment Query Matches Stacks Data Structures • Each node q in query has associated: • A stream Tq, with the labels of the elements corresponding to node q, in increasing “begin” order. • A stack Sq, with a compact encoding of partial solutions (stacks are chained).

  39. PathStack • Handles twigs with no branches q1//q2//…//qn • Input lists Tq1, Tq2, …, Tqnand stacks Sq1, Sq2, …, Sqn • While Tqnis not empty: • Let Tqminbe the list whose head has smallest begin; • Clean all stacks: pop while top’s end < head(Tqmin).begin; • Push head(Tqmin) on Sqmin, with pointer to top(Sparent(qmin)); • If qmin is the leaf (qn), output results and pop Sqmin; • Check properties • Elements in a stack form a containment chain • Each stack element points to the top one in the parent stack that contains it

  40. PathStack Example (1)

  41. PathStack Example (2)

  42. PathStack Example (3)

  43. PathStack Example (4)

  44. PathStack Example (5)

  45. PathStack Example (6)

  46. PathStack Example (7)

  47. PathStack Example (8)

  48. PathStack Example (9)

  49. PathStack Example (10)

  50. Twig Queries • Naïve adaptation of PathStack. • Solve each root-to-leaf path independently. • Merge-join each intermediate result. • Problem: Many intermediate results might not be part of the final answer.

More Related