350 likes | 567 Views
gStore: Answering SPARQL Queries Via Subgraph Matching. Presented by Guan Wang Kent State University October 24, 2011. Outline. RDF & SPARQL Previous Solutions for SPARQL Queries Overview of gStore Encoding Technique VS*-tree & Query Algorithm Experiments Conclusions. Outline.
E N D
gStore: Answering SPARQL Queries Via Subgraph Matching Presented by Guan Wang Kent State University October 24, 2011
Outline RDF & SPARQL Previous Solutions for SPARQL Queries Overview of gStore Encoding Technique VS*-tree & Query Algorithm Experiments Conclusions
Outline RDF & SPARQL Previous Solutions for SPARQL Queries Overview of gStore Encoding Technique VS*-tree & Query Algorithm Experiments Conclusions
Predicate Statement What is RDF • A general-purpose framework provides structured, machine-understandable metadata for the Web • It is based upon the idea of making statements about resources in the form ofsubject-predicate-object expressions. These expressions are known as triples in RDF. Subject Object
RDF Model Example Guan Creator page.html Guan’s Home Page Title Subject Predicate Object page.html Creator Guan page.html Creator Guan's Home Page
What is SPARQL • SPARQL is a query language for RDF. It provides a standard format for writing queries that target RDF data and a set of standard rules for processing those queries and returning the results. • The building blocks of a SPARQL queries are graph patterns that include variables. The result of the query will be the values that these variables must take to match the RDF graph.
Example of SPARQL Select ?name Where { ?m <hasName> ?name. ?m <BornOnDate> “1809-02-12”. ?m <DiedOnDate> “1865-04-15”. } • Names beginning with a ? or a $ are variables. • Graph patterns are given as a list of triple patterns enclosed within braces {} • The variables named after the SELECT keyword are the variables that will be returned as results. (~SQL) • Here each of the conjunctions, denoted by a dot, corresponds to a join.
SPARQL Queries SPARQL Query: Select ?name Where { ?m <hasName> ?name. ?m <BornOnDate> “1809-02-12”. ?m <DiedOnDate> “1865-04-15”. } Query Graph
Outline RDF & SPARQL Previous Solutions for SPARQL Queries Overview of gStore Encoding Technique VS*-tree & Query Algorithm Experiments Conclusions
Existing Solutions-Three Column Table SPARQL Query: Select ?name Where { ?m <hasName> ?name. ?m <BornOnDate> “1809-02-12”. ?m <DiedOnDate> “1865-04-15”. } Shortage: Too Many Self-Joins
Existing Solutions-Property Table Shortage: A Big Waste of Space
Existing Solutions-Vertically Partitioned Shortage: Too Many Merge Joins
Existing Solutions-RDF-3x Utilize the characteristic of RDF, that there are only three elements(subject, object and predicate) in RDF. Construct all six possible indexes and optimalize merge orders. Shortage: Different to Handle Updates
Outline RDF & SPARQL Previous Solutions for SPARQL Queries Overview of gStore Encoding Technique VS*-tree & Query Algorithm Experiments Conclusions
Overview of gStore(Store) • Represent an RDF dataset by an RDF graph G and store it by its adjacency list table.
Overview of gStore(Encoding) • Encode each entity and class vertex into a bitstring, called signature. • Link these vertex signatures to form a data signature graph G according to RDF graph’s structure
Outline RDF & SPARQL Previous Solutions for SPARQL Queries Overview of gStore Encoding Technique VS*-tree & Query Algorithm Experiments Conclusions
Outline RDF & SPARQL Previous Solutions for SPARQL Queries Overview of gStore Encoding Technique VS*-tree & Query Algorithm Experiments Conclusions
VS*-tree • Each leafnode of the tree corresponds to one vertexsignature in G. • Given two leaf nodes d1 and d2 in the tree, we introduce anedge between them, if and only if there is an edgebetween d1 andd2 in G • Given nodes d1and d2in the tree, we introducea super edge from d1to d2, if and only if there is at least oneedge from d1’s children to d2’s children. • Assign an edge label for the edged1→d2 by performingbitwise “OR” over these n edge labels from d1’s children to d2’schildren.
Outline RDF & SPARQL Previous Solutions for SPARQL Queries Overview of gStore Encoding Technique VS*-tree & Query Algorithm Experiments Conclusions
Experiments • Used datasets: Yago, DBLP which are popular semantic datasets with millions of triples. • Data size: approximately 4GB.
Outline RDF & SPARQL Previous Solutions for SPARQL Queries Overview of gStore Encoding Technique VS*-tree & Query Algorithm Experiments Conclusions
Conclusions • Propose to store and query RDF data from graph database perspective. • Using VS*-tree as indexing method for bitstring of vertices, which supports the SPARQL queries in a scalable manner. • False positive.
Reference • [ICDE09]Thanh Tran, Haofen Wang, Sebastian Rudolph, Philipp Cimiano, "Top-k Exploration of Query Candidates for Efficient Keyword Search on Graph-Shaped (RDF) Data", DOI 10.1109/ICDE.2009.119. • [VLDB07]Daniel J. Abadi, Adam Marcus, Samuel R. Madden,Kate Hollenbach, "Scalable Semantic Web Data Management Using Vertical Partitioning", VLDB ‘07, September 2328, 2007, Vienna, Austria. • [PVLDB08]Cathrin Weiss, Panagiotis Karras, Abraham Bernstein, "Hexastore:Sextuple Indexing for Semantic Web Data Management",PVLDB '08, August 23-28, 2008, Auckland, New Zealand • [PVLDB08]Thomas Neumann, Gerhard Weikum, "RDF3X:a RISCstyle Engine for RDF",PVLDB '08, August 23-28, 2008, Auckland, New Zealand • [VLDB11]Lei Zou, Jinghui Mo, Lei Chen, M. Tamer O¨ zsu, Dongyan Zhao, "gStore: Answering SPARQL Queries via Subgraph Matching" VLDB‘11,August 29th - September 3rd 2011, Seattle, Washington. Thank you!