compressed indexes for fast search of semantic data
play

Compressed Indexes for Fast Search of Semantic Data Ra ff aele - PowerPoint PPT Presentation

Compressed Indexes for Fast Search of Semantic Data Ra ff aele Perego Giulio Ermanno Pibiri Rossano Venturini ISTI-CNR ISTI-CNR The University of Pisa Pisa, Italy Pisa, Italy Pisa, Italy The 10-th Italian Information Retrieval


  1. Compressed Indexes for Fast Search 
 of Semantic Data Ra ff aele Perego Giulio Ermanno Pibiri Rossano Venturini ISTI-CNR 
 ISTI-CNR 
 The University of Pisa 
 Pisa, Italy Pisa, Italy Pisa, Italy The 10-th Italian Information Retrieval Workshop (IIR 2019) 17/09/2019

  2. Resource Description Framework (RDF) “RDF is a standard model for data interchange on the Web.” Source: https://www.w3.org/RDF Statements are encoded with triples : 
 Subject ( S ) - Predicate ( P ) - Object ( O )

  3. Resource Description Framework (RDF) “RDF is a standard model for data interchange on the Web.” Source: https://www.w3.org/RDF Statements are encoded with triples : 
 Subject ( S ) - Predicate ( P ) - Object ( O ) “Bob Smith knows John Doe.” <http://example.name#BobSmith12> <http://xmlns.com/foaf/0.1/knows> <http://example.name#JohnDoe34>

  4. The problem Huge datasets: billions of triples. Storage space is an issue: 
 compression is mandatory . How to support triple selection patterns (with wildcards) e ffi ciently ?

  5. The problem Huge datasets: billions of triples. Storage space is an issue: 
 compression is mandatory . How to support triple selection patterns (with wildcards) e ffi ciently ? <Bob Smith> <knows> <???> <???> <???> John Doe <Bob Smith> <???> <Sara Parker>

  6. The problem Huge datasets: billions of triples. Storage space is an issue: 
 compression is mandatory . How to support triple selection patterns (with wildcards) e ffi ciently ? 1 wildcard: 
 2 wildcards: 
 <Bob Smith> <knows> <???> SP? 
 S?? 
 S?O 
 ?P? 
 <???> <???> John Doe ?PO ??O <Bob Smith> <???> <Sara Parker> 3 wildcards: 
 0 wildcard: 
 ??? SPO

  7. State-of-the-art solutions Too costly in terms of space . • Materialize all possible S-P-O permutations (6 separate indexes). 
 • Do not use sophisticated compression techniques. 
 • Expensive additional indexes to support retrieval.

  8. 
 The Permuted Trie Index: preliminaries Map URI strings to integers to reduce space requirements: 
 we deal with datasets of integer triples. Selection patterns S P O 
 S P ? 
 S ? ? 
 ? ? ? 
 ? P O 
 ? P ? S ? O 
 ? ? O 


  9. 
 The Permuted Trie Index: preliminaries Map URI strings to integers to reduce space requirements: 
 we deal with datasets of integer triples. Selection patterns S P O 
 S P ? 
 S-P-O order S ? ? 
 ? ? ? 
 ? P O 
 ? P ? S ? O 
 ? ? O 


  10. 
 The Permuted Trie Index: preliminaries Map URI strings to integers to reduce space requirements: 
 we deal with datasets of integer triples. Selection patterns S P O 
 S P ? 
 S-P-O order S ? ? 
 ? ? ? 
 ? P O 
 P-O-S order ? P ? S ? O 
 ? ? O 


  11. 
 The Permuted Trie Index: preliminaries Map URI strings to integers to reduce space requirements: 
 we deal with datasets of integer triples. Selection patterns S P O 
 S P ? 
 S-P-O order S ? ? 
 ? ? ? 
 ? P O 
 P-O-S order ? P ? S ? O 
 O-S-P order ? ? O 


  12. 
 The Permuted Trie Index: preliminaries Map URI strings to integers to reduce space requirements: 
 we deal with datasets of integer triples. Selection patterns S P O 
 S P ? 
 S-P-O order S ? ? 
 ? ? ? 
 Store an integer trie data structure ? P O 
 P-O-S order ? P ? for each permutation. S ? O 
 O-S-P order ? ? O 


  13. The Permuted Trie Index: organisation 0 1 2 3 4

  14. The Permuted Trie Index: organisation 0 1 2 3 4 • Common prefixes are encoded once. 
 • Two integer sequences per level (nodes and pointers). 
 • Symmetrically support all selection patterns with 1 and 2 wildcards. 
 • Cache-friendly memory layout.

  15. The Permuted Trie Index: organisation 0 1 2 3 4 • Common prefixes are encoded once. 
 Allows e ff ective 
 compression • Two integer sequences per level (nodes and pointers). 
 • Symmetrically support all selection patterns with 1 and 2 wildcards. 
 • Cache-friendly memory layout.

  16. The Permuted Trie Index: organisation 0 1 2 3 4 • Common prefixes are encoded once. 
 Allows e ff ective 
 compression • Two integer sequences per level (nodes and pointers). 
 • Symmetrically support all selection patterns with 1 and 2 wildcards. 
 Fast retrieval • Cache-friendly memory layout.

  17. The Permuted Trie Index: organisation 0 1 2 3 4 (1, 2, ?) • Common prefixes are encoded once. 
 Allows e ff ective 
 compression • Two integer sequences per level (nodes and pointers). 
 • Symmetrically support all selection patterns with 1 and 2 wildcards. 
 Fast retrieval • Cache-friendly memory layout.

  18. The Permuted Trie Index: organisation 0 1 2 3 4 (1, 2, ?) • Common prefixes are encoded once. 
 Allows e ff ective 
 compression • Two integer sequences per level (nodes and pointers). 
 • Symmetrically support all selection patterns with 1 and 2 wildcards. 
 Fast retrieval • Cache-friendly memory layout.

  19. The Permuted Trie Index: organisation 0 1 2 3 4 (1, 2, ?) (1, 2, 0) (1, 2, 1) • Common prefixes are encoded once. 
 Allows e ff ective 
 compression • Two integer sequences per level (nodes and pointers). 
 • Symmetrically support all selection patterns with 1 and 2 wildcards. 
 Fast retrieval • Cache-friendly memory layout.

  20. The Permuted Trie Index: refinements 1 Cross Compression 2 Permutation Elimination

  21. Cross Compression Fact: the same triple appears three times, but in di ff erent permutations.

  22. Cross Compression Fact: the same triple appears three times, but in di ff erent permutations. We can represent the subjects in trie 1 by using the subjects in trie 2 .

  23. Cross Compression Fact: the same triple appears three times, but in di ff erent permutations. We can represent the subjects in trie 1 by using the subjects in trie 2 . P O i O i S 1 … S j … S n S 1 … S j … S n

  24. Cross Compression Fact: the same triple appears three times, but in di ff erent permutations. We can represent the subjects in trie 1 by using the subjects in trie 2 . Represent S j as its position p . P O i O i S 1 … S j … S n p S 1 … S j … S n

  25. Cross Compression Fact: the same triple appears three times, but in di ff erent permutations. We can represent the subjects in trie 1 by using the subjects in trie 2 . Represent S j as its position p . Why? P O i O i S 1 … S j … S n p S 1 … S j … S n Number of children in Dbpedia.

  26. Permutation Elimination Fact: predicates are few , thus S?O returns only few matches.

  27. 
 Permutation Elimination Fact: predicates are few , thus S?O returns only few matches. We can pattern match S?O on the SPO trie , instead of the OSP trie. 
 Given a ( s , o ) pair: for each child p i of s , 
 check is o is a child of p i . If so, then ( s , p i , o ) is a match.

  28. 
 Permutation Elimination Fact: predicates are few , thus S?O returns only few matches. We can pattern match S?O on the SPO trie , instead of the OSP trie. 
 Given a ( s , o ) pair: for each child p i of s , 
 check is o is a child of p i . If so, then ( s , p i , o ) is a match. Less than 6 checks are needed on average! Number of children in Dbpedia.

  29. Permutation Elimination SPO trie S P O 
 S P ? 
 S ? ? S ? O 
 ? ? ? + OR

  30. Permutation Elimination SPO trie S P O 
 S P ? 
 S ? ? S ? O 
 ? ? ? + OR OPS trie ? P O 
 ? ? O ? P ? Object-based retrieval

  31. Permutation Elimination SPO trie S P O 
 S P ? 
 S ? ? S ? O 
 ? ? ? + OR OPS trie POS trie ? P O 
 ? P O 
 ? ? O ? ? O ? P ? ? P ? Object-based retrieval Predicate-based retrieval

  32. Permutation Elimination SPO trie S P O 
 S P ? 
 S ? ? S ? O 
 ? ? ? + OR OPS trie POS trie ? P O 
 ? P O 
 ? ? O ? ? O ? P ? ? P ? Object-based retrieval Predicate-based retrieval We can eliminate a permutation, thus saving 1/3 of the space of the index.

  33. Experiments: setting Datasets Machine i7-7700 CPU (@3.6 GHz), 64 GB of RAM DDR3 (@2.133 GHz) 
 Linux 4.4.0, 64 bits Compiler gcc 7.2.0 (with all optimizations)

  34. Experiments: C++ code C++ code at https://github.com/jermp/rdf_indexes

  35. Experiments: our solutions Overall, 2Tp o ff ers the best space/time tradeo ff .

  36. Experiments: overall comparison Our selected trade-o ff configuration substantially outperforms the tested 
 competitors in both space and time.

  37. Conclusions The triple indexing problem with pattern matching can be solved efficiently in both time and space regards. Our solution — the permuted trie index — achieves substantial performance improvement against the best previous solutions. Cross-compression Permutation-elimination C++ code available at Paper available at https://github.com/jermp/rdf_indexes https://arxiv.org/abs/1904.07619

  38. Thanks for your attention, time, patience! Any questions?

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