Presentation is loading. Please wait.

Presentation is loading. Please wait.

Tree-Pattern Queries on a Lightweight XML Processor MIRELLA M. MORO Zografoula Vagena Vassilis J. Tsotras Research partially supported by CAPES, NSF grant.

Similar presentations


Presentation on theme: "Tree-Pattern Queries on a Lightweight XML Processor MIRELLA M. MORO Zografoula Vagena Vassilis J. Tsotras Research partially supported by CAPES, NSF grant."— Presentation transcript:

1 Tree-Pattern Queries on a Lightweight XML Processor MIRELLA M. MORO Zografoula Vagena Vassilis J. Tsotras Research partially supported by CAPES, NSF grant IIS 0339032, UC Micro, and Lotus Interworks

2 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 2 Outline Motivation and Contributions Background Method Categorization Experimental Evaluation Conclusions

3 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 3 Motivation XML query languages: selection on both value and structure  “Tree-pattern” queries (TPQ) very common in XML Many promising holistic solutions None in lightweight XML engines  Without optimization module (e.g. eXist, Galax)   Effective, robust processing method Reasons:  No systematic comparison of query methods under a common storage model  No integration of all methods under such storage model Context: XPath semantics, stored data (indexed at will)

4 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 4 Contributions TPQ methods over unified environment Method Categorization: data access patterns and matching algorithm Common storage model + integration of all methods  Capture the access features  Permit clustering data with off-the-shelf access methods (e.g. B + tree) Novel variations of methods using index structures + Handle TPQ Extensive comparative study  Synthetic, benchmark and real datasets  Decision in the applicability, robustness and efficiency

5 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 5 article author last procs conf Background article (2,19) last (7,9) 2<7<9<19 Bib (1,20) article (2,19) title (3,5) procs (14,18) author (6,13) last (7,9) first (10,12) David J. (11) DeWitt (8) conf (15,17) t1 (4) VLDB (16) XML database = forest of unranked, ordered, node-labeled trees, one tree per document TPQ

6 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 6 Common Storage Model B + Tree on ( tag, initial ) bib (1,16) book (2,9) (10,17) author (3,8) (11,16) (19,24) name (4,5) (12,13) (20,21) paper (18,25) address (6,7) (14,15) (22,23) bib (1,26) book (2,9)paper (18,25) author (3,8)author (19,24) name (4,5) address (6,7) name (20,21) address (22,23) book (10,17) author(11,16) name (12,13) address (14,15) Input = sequence (list) of elements One list per document tag = element list  Node clustering by index structures Numbering scheme

7 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 7 Method Categorization Parameters: access pattern and matching algorithm (1) set based techniques (2) query driven (3) input driven (4) structural summaries

8 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 8 Cat 1: Set-based Techniques Access PatternMatching Process Sorted/indexed Join sets, merge individual paths Input: sequences of elements, one list per query node element, possibly indexed (set-based) Major representative: TwigStack  Optimal XML pattern matching algorithm (ancestor/descendant) Stack-based processing  Set of stacks = compact encoding of partial and total results in linear space (possibly exponential number of answers)

9 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 9 TwigStack + Indexes B + tree, built on the left attribute  From ancestor: probe descendants: skip initial nodes  Ancestor skipping not effective (up to 1st element that follows) XB-tree: on (left,right) bounding segment XR-tree: on (left,right), B+tree with complex index key + stab lists A comparative study* shows that  Skipping ancestors: XBTree better (XBTree size is smaller)  Recursive level of ancestors: XBTree better again Searching on stab lists of XR-tree is less efficient  Plain B+tree: skips descendants, BUT not ancestors  XBTwigStack is our choice * H.Li et al. “An Evaluation of XML Indexes for Structural Joins”. Sigmod Record, 33(3), Sept 04

10 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 10 Cat 2: Query Driven Techniques Processing: the query defines the way input is probed Major representatives: ViST and PRIX Specific details: significantly different Same strategy  Convert both document and query to sequences  Processing query = subsequence matching Access PatternMatching Process Indexed/randomIncremental construction of each result instance

11 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 11 ViST and PRIX Recursively identify matches = quadratic time Optimize the naïve solution:  Identify candidate nodes for each matching step  Index structures to cluster those candidates Subsequence matching process = a plan consisting of INLJ among relations, each of which groups document nodes with the same label For a given query, joins sequence statically defined by the sequencing of the query INLJ plans are a superset of the static plans that PRIX and VIST use

12 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 12 ViST x PRIX x INLJ Percentage of nodes processed by each algorithm INLJ: best plan Dataset #nodesVISTPRIXINLJ 100%100 LEAVES: 80%10084.2384.20 LEAVES: 1%1001.331.32 ROOT: 80%84.2210084.18 ROOT: 1%1.331001.33 INTERNAL: 80%89.4889.4984.20 INTERNAL: 1%34.2434.221.64

13 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 13 INLJ : improved B + tree TPQ  evaluation of relational plan Independence of the ordered XML model Total avoidance of false positives a 1,52 b 32,41 b 34,37 a 33,40 c 38,39 c 35,36 b 2,31 b 42,51 b elem. list 33 34,41 42,51 2,31 32,41 Consider b//c Starting from c

14 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 14 Cat 3: Input Driven Techniques Processing: at each point, the flow of computation is guided entirely by the input through a Finite State Machine (DFA/NFA) Advantages  Each node processed only once  Simplicity, sequential access pattern Problem: skipping elements Access PatternMatching Process SequentialInput drives computation, merge individual paths

15 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 15 SingleDFA and IdxDFA SingleDFA  triggers the DFA, choosing next state  : execution backtracks to when start processed  TPQ matching: intermediate results compacted on stacks Experiments show reading whole input = not enough Speeding up navigation: IdxDFA  Instead of reading sequentially: use indexes and skip descendants

16 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 16 IdxDFA: example c1c1 b2b2 a3a3 c4c4 d6d6 c5c5 d7d7 b9b9 d9d9 c 10 d 11 a 12 c 16 d6d6 b 13 d 14 c 15 b 21 c 22 a b cd

17 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 17 IdxDFA: example c1c1 b2b2 a3a3 c4c4 d6d6 c5c5 d7d7 b9b9 d9d9 c 10 d 11 a 12 c 16 d6d6 b 13 d 14 c 15 b 21 c 22 b9b9 c4c4 d6d6 c5c5 d7d7 a b cd d9d9 c 10 d 11 a 12 b 13 d 14 c 15 c 16 d6d6 b 21 c 22

18 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 18 Cat 4: Graph Summary Evaluation Structural summary: index node identifies a group of nodes in the document Processing: identify index nodes that satisfy the query + post processing filtering Beneficial: when there is a reasonable structural index, much smaller than document Problem: graph size comparable/larger than original document Access PatternMatching Process Indexed/RandomMerge-join partitioned input, merge individual paths

19 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 19 Categories Summary Access Pattern Matching ProcessMethods Set BasedSorted/ Indexed Join sets, merge individual paths Twigstack /XB, B + tree, XR-tree Query Driven Indexed/ random Incremental construction of each result instance (ViST, PRIX) INLJ Input Driven Sequential Input drives computation, merge individual paths SingleDFA, IdxDFA Structural Summary Indexed/ random Merge-join partitioned input, merge individual paths Structural indexes

20 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 20 Experimental Evaluation 1. Experiments with real datasets 2. Experiments with synthetic datasets  Further analyze each method  Characterize the methods according to specific features available in each custom dataset 3. More sets of experiments  Closely verify XBTWIGSTACK versus INLJ

21 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 21 Algorithms using the same API Analysis varying structure and selectivity Performance measure = total time required to compute a query  Number of nodes as secondary information Intel Pentium 4 2.6GHz, 1Gb ram Berkeley DB: 100 buffers, page size 8Kb, B + tree Real/benchmark datasets  XMark (Internet auction, 1.4 GB raw data, ± 17 million nodes), Protein Sequence Database Setup

22 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 22 XMark

23 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 23 Custom Data Goal: isolate important features Query //a//b[.//c]//d  Simple enough for detailed investigation  Complex enough to provide large number of different data access possibilities Vary selectivity of each element separately Add recursion to key elements (root, leaf) a b cd

24 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 24 Custom Data a b cd

25 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 25 Custom Data a b cd

26 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 26 XBTwigStack x INLJ On large dataset, 40mi nodes, 1Gb, 1% selectivity Difference of 40s between XBTwig and INLJ best plan

27 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 27 XBTwigStack x INLJ

28 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 28 Conclusions Categorization of TPQ processing algorithms Adaptations for processing TPQ  DFA + accessing nodes from B + tree  INLJ + ancestor skipping DFA-based improved, IdxDFA, not enough Structural summary available and smaller than document: StrIdx XBTwigStack: most robust and predictable  INLJ when high selectivity: no guarantee about chosen plan without optimizer module

29 Questions?

30 EXTRA SLIDES

31 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 31 Bib (1,36) article (2,19) title (3,5) procs (14,18) author (6,13) last (7,9) first (10,12) David J. (11) DeWitt (8) conf (15,17) t1 (4) article (20,35) title (21,23) author (24,31) last (25,27) first (28,30) procs (32,34) Hongjun (29) Lu (26) conf (33) t2 (22) article author last procs conf Background Region numbering scheme : (left, right) VLDB (16)

32 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 32 TwigStack a 1 b 1 b 2 a 2 c 2 c 1 a b c a1a1 SaSa SbSb ScSc a2a2 b1b1 b2b2 c1c1 c2c2 a 2 b 2 c 1 a 1 b 1 c 1 a 1 b 1 c 2 a 1 b 2 c 1 1) solutions individual root-to-leaf paths 2) merge-join those partial solutions → before adding element to stack: (i) the node has a descendant on each of the query children streams (ii) each of those descendant nodes recursively satisfies this property → optimized by indexes docquery results

33 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 33 TwigStack + Indexes B + -tree: built on the left attribute  Access ancestor then probe descendant stream to skip unmatchable initial nodes  Ancestor skipping not effective: Skip only up to the first element following a given one XB-tree: index on (left,right) bounding segment  Pointer to children (region completely included in parent)  Leaves sorted on left  Region: ancestor access effective XR-tree: index on (left,right) = B + tree with complex index key + stab lists  Ancestor skipping: elements stabbed by left b 1 b 2 b 3 a 1 c 2 c 1

34 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 34 ViST, Virtual Suffix Tree Input: sequence of (symbol, path) pairs (a 1,  )(b 1,a 1 )(a 2,a 1 b 1 )(b 2,a 1 b 1 a 2 )(c 1,a 1 b 1 a 2 b 2 )(c 2, a 1 b 1 a 2 )  Document and query translated  Virtual suffix tree (B + -tree) indexed left Processing  Structural query = find (non-contiguous) subsequence matches → suffix tree Benefit: query as a whole instead of merging parts  One query path per time  Efficient when query top defines the results a 1 b 1 b 2 a 2 c 2 c 1

35 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 35 ViST, index Virtual suffix tree  B + tree, nodes indexed on the left position  D- ancestor and S-ancestor aa bc b a c c 1,13 2,4 3 5,7 69,11 10 8,12 D-Ancestor (c,bac) B+B+ (b,  ) (a,b) (b,ba) (c,ba) S-Ancestor 1,13 6 9,11 2,4 5,7 8,12 3 10

36 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 36 A 18 B 11 B 4 B 14 B 17 C 6 C 1 F 10 C 13 D 3 D 8 D 16 Document v 5 v 0 v 9 v 12 v 2 v 7 v 15 A B C D NN Query (A, ε ) (B,A)(C,B)(D,B) Query Sequence ViST ViST Subsequence Matching Final Filtering

37 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 37 ViST, algorithm Q = q 1, … q k, query sequence D-tree B + index of (symbol, prefix) S-tree B + index of region labels function Search (region, i) if i < |Q| T = retrieve q i S-tree from D-tree N = retrieve from S-tree all nodes in the range region for each node c(left,right)  N Search ( (left,right), i+1) else return result Search ( (1,13), (a,b) ) Search ( (1,13), (b,  ) ) Search ( (2,4), (c,ba) ) (c,bac) B+B+ (b,  ) (a,b) (b,ba) (c,ba) 1,13 6 9,11 2,4 5,7 8,12 3 10 Search ( (5,7), (c,ba) ) Search ( (8,12), (c,ba) ) b a c Q = (b,  ) (a,b) (c,ba) aa bc b a c c 1,13 2,4 3 5,7 69,11 10 8,12

38 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 38 ViST, access order Search ( (1,13), (a,b) ) Search ( (1,13), (b,  ) ) Search ( (2,4), (c,ba) ) (c,bac) B+B+ (b,  ) (a,b) (b,ba) (c,ba) 1,13 6 9,11 2,4 5,7 8,12 3 10 Search ( (5,7), (c,ba) ) Search ( (8,12), (c,ba) ) Q = (b,  ) (a,b) (c,ba) aa bc b a c c 1 2 X 4 57 6

39 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 39 ViST, discussion Worst-case storage requirement for D-Ancestor is > linear in #elements  E.g. unary tree with n nodes, sequence O(n 2 ) False alarms  Our implementation: no false alarms //a[//b]//c unordered  Vist: (a,  )(b,a)(c,a) & (a,  )(c,a)(b,a)  Our implementation: run the twig query only once a b c de fd a bb de a b de D 1 = (a,  ) (b,a) (d,ab) (e,ab) (c,a) (f,ac) (d,ac) D 2 = (a,  ) (b,a) (d,ab) (b,a) (e,ab) Q = (a,  ) (b,a) (d,ab) (e,ab)    a bc a cb

40 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 40 PRIX, PRüfer seqs. for Indexing XML Input: sequence of labels  Document & query mapped by Prüfer’s method  Tree → sequence: remove one node at a time Processing  Sequence matching against indexed db: filter non-matches  Refinement phases: filter twig-matches, the results: Form a tree, satisfy the twig query, include the leaf nodes LPS = A C B C C B A C A E E E D A NPS = 15 3 7 6 6 7 15 9 15 13 13 13 14 15 (Any numbering scheme, here is post-order) Bottom-up approach 

41 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 41 PRIX, Processing Problems  Complex solution  //a[//b]//c unordered: same problem as ViST What we do  Region based numbering scheme and XB-tree  Bottom-up traversal of the query + subtwig merging Access nodes in the same order Efficient when query bottom defines results

42 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 42 A(k) index A(k) → k is the degree of similarity, “size of common path”  k k-bisimilarity 1) for any two nodes u and v, u  0 v iff u and v have same label 2) u  k v iff u  k-1 v and for every parent u’ of v’, there is a parent v’ of v s.t. u’  k-1 v’ and vice-versa 23 45 67 1 A D D C E B E 23 4,5 6,7 1 A D C B E A(0)A(1) 23 45 1 A D D C B 6,7 E 23 45 67 1 A D D C E B E A(2) Original document

43 UC Riverside Tree-Pattern Queries on a Lightweight XML Processor 43 Protein


Download ppt "Tree-Pattern Queries on a Lightweight XML Processor MIRELLA M. MORO Zografoula Vagena Vassilis J. Tsotras Research partially supported by CAPES, NSF grant."

Similar presentations


Ads by Google