b ed tree an all purpose index structure for string
play

B ed -Tree: An All-Purpose Index Structure for String Similarity - PowerPoint PPT Presentation

B ed -Tree: An All-Purpose Index Structure for String Similarity Search Based on Edit Distance Zhenjie Zhang, Marios Hadjieleftheriou, Beng Chin Ooi, Divesh Srivastava Outline Motivation and B ed -Tree Framework String Orders


  1. B ed -Tree: An All-Purpose Index Structure for String Similarity Search Based on Edit Distance Zhenjie Zhang, Marios Hadjieleftheriou, Beng Chin Ooi, Divesh Srivastava

  2. Outline � Motivation and B ed -Tree Framework � String Orders � Dictionary order � Gram counting order � Gram location order � Experiments � Conclusion 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 2

  3. Approximate String Search � Information Retrieval � Web search query with string “Posgre SQL” instead of “Postgre SQL” � Data Cleaning � “13 Computing Road” is the same as “#13 Comput’ng Rd”? � Bioinformatics � Find out all protein sequences similar to “ACBCEEACCDECAAB” 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 3

  4. Edit Distance � Edit distance on strings 13 Computing Drive 3 deletions Edit distance: 5 13 Computing Dr 1 replacement 13 Comput’ng Dr 1 insertion #13 Comput’ng Dr � Normalized edit distance ED(s 1, s 2 ) 5 MaxLength(s 1 ,s 2 ) 18 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 4

  5. Existing Solution � Q-Gram Q=3 Postgre ##P #Po Pos ost stg tgr gre re# e## Posgre ##P #Po Pos osg sgr gre re# e## Observation: If ED(s 1 ,s 2 )=d, they agree on at least min(|s 1 |,|s 2 |)+Q-1-d*(Q+1) grams 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 5

  6. Existing Solution � Inverted List Postgre ##P #Po Pos osg sgr gre re$ e$$ Posgre 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 6

  7. Limitations � Inverted List Method � Limited queries supported Range Query Join Query Top-K Query Top-K Join Edit Distance Y Y N N Normalized ED N N N N � Uncontrollable memory consumption � Concurrency protocol 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 7

  8. Our Contributions � B ed -Tree � Wide support on different queries and distances Range Query Join Query Top-K Query Top-K Join Edit Distance Y Y Y Y Normalized ED Y Y Y Y � Adjustable buffer size and low I/O cost � Highly concurrent � Easy to implement � Competitive performance 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 8

  9. Basic Index Framework � B ed -Tree Framework Index Construction follows standard B+ Estimate the minimal tree Query: Posgre distance to query and prune B+ tree nodes Map all strings to a 1D domain Refine the result by Result: Postgre exact edit distance 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 9

  10. Outline � Motivation and B ed -Tree Framework � String Orders � Dictionary order � Gram counting order � Gram location order � Experiments � Conclusion 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 10

  11. String Order Properties � P1: Comparability � Given two string s1 and s2, we know the order of s1 and s2 under the specified string order � P2: Lower Bounding � Given an interval [L,U] on the string order, we know a lower bound on edit distance to the query string Query: Posgre Candidates in the sub-tree? 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 11

  12. String Order Properties � P3: Pairwise Lower Bounding � Given two intervals [L,U] and [L’,U’], we know the lower bound of edit distance between s1 from [L,U] and s2 from [L’,U’] � P4: Length Bounding � Given an interval [L,U] on the string order, we know the minimal length of the strings in the interval Potential join results? 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 12

  13. String Order Properties � Properties v.s. supported queries and distances Range Query Join Query Top-K Query Top-K Join Edit Distance P1, P2 P1, P3 P1, P2 P1, P3 Normalized ED P1, P2, P4 P1, P3, P4 P1, P2, P4 P1, P3, P4 Description P1 Comparability P2 Lower Bounding P3 Pair-wise Lower Bounding P4 Length Bounding 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 13

  14. Dictionary Order � All strings are ordered alphabetically, satisfying P1, P2 and P3 Search: Posgre with ED=1 Insertion: Postgre It’s between “pose” pose powder sit and “powder” 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 14

  15. Dictionary Order � All strings are ordered alphabetically, satisfying P1, P2 and P3 Search: Posgre with ED=1 Not pruning pose powder sit anything! Pruning happens power put sad only when long prefix exists 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 15

  16. Hash all grams to Count the grams 4 buckets in binary Gram Counting Order 1 1 1 Jim Gray 0 0 1 1 2010-6-22 1

  17. Gram Counting Order � Transform the count vector to a bit string with z-order Encode with z- order Order the strings with this signature 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 17

  18. Gram Counting Order � Lower Bounding Query: Jim Gary “ 11011011” to “11011101” Prefix: “11011???” signature: (4,1,2,2) Minimal edit distance: 1 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 18

  19. Gram Location Order � Extension of Gram Counting Order � Include positional information of the grams Jim Gray Grace Hopper � Allow better estimation of mismatch grams � Harder to encode 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 19

  20. Outline � Motivation and Framework � String Orders � Expected properties � Dictionary order � Gram counting order � Gram location order � Experiments � Conclusion 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 20

  21. Experiment Settings � Data � Five Index Schemes � B ed -Tree: BD, BGC, BGL � Inverted List: Flamingo, Mismatch � Default Setting � Q=2, Bucket=4, Page Size=4KB 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 21

  22. Empirical Observations � How good is B ed -Tree? � With small threshold, Inverted Lists are better � When threshold increases, B ed -Tree is not worse

  23. Empirical Observations � Which string order is better? � Gram counting order is generally better � Gram Location order: tradeoff between gram content information and position information

  24. Conclusion � A new B+ tree index scheme � All similarity queries supported � Both edit distance and normalized distance � General transaction and concurrency protocol � competitive efficiencies 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 24

  25. Q&A

  26. Results � Range Query 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 26

  27. Results � Top-K Query 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 27

  28. Results � Normalized Edit Distance & Join Query 2010-6-22 Bed-Tree: An All-Purpose Index Structure for String Similarity Search 28

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend