SlideShare a Scribd company logo
DESWeb 2014
ICDE 2014, Chicago IL, USA, March 3
balloon Fusion
SPARQL Rewriting Based on
Unified Co-Reference Information
Kai Schlegel (kai.schlegel@googlemail.com)
Florian Stegmaier, Sebastian Bayerl, Michael Granitzer, Harald Kosch
2
Motivation
SPARQL Rewriting & Federation
Intermediate Results
Outline
supported by the European Commission
under the Seventh Framework Program
3
Linked Data is
the heart of Semantic Web
“
- W3C Semantic Web Group
4
5
• Easy access to Linked Data
• Query Linked Open Data with SPARQL
• Plethora of tools available
• Problems:
• Business oriented
• Complex setup
• Maintenance
• „Paper-only“
• Not developer friendly
•  Simple and „instant“ SPARQL Query Federation (-as-a-Service)
6
Motivation
Nothing-as-a-Service
• How to get information about the German City „Passau“?
• Problem: LOD is not a single database!
7
Querying LOD
SPARQL SPARQL
RDF
RDFRDF
SELECT ?p ?o WHERE {
<http://de.dbpedia.org/resource/Passau> ?p ?o.
}
de.dbpedia.org
Relations, Coordinates, Leader, etc.
What about the population?
SPARQL
• Problem: Selection of appropriate endpoints
• Send query to some endpoints and aggregate the results?
8
Distributed Querying!
SPARQL SPARQL
RDF
RDFRDF
SELECT ?p ?o WHERE {
<http://de.dbpedia.org/resource/Passau> ?p ?o.
}
de.dbpedia.org
SPARQL
linkedgeodata.org
• Problem: Different identifier for the same semantic concept
9
Misunderstanding: Co-Referencing
SPARQL SPARQL
RDF
RDFRDF
SELECT ?p ?o WHERE {
<http://de.dbpedia.org/resource/Passau> ?p ?o.
}
de.dbpedia.org
SPARQL
linkedgeodata.org
Known problem in linguistic:
It’s a spud!“
What?“
I mean potato!“
Co-Referencing: Multiple expressions
refer to the same thing.
10
Problem = Solution?
SPARQL-based crawling of co-reference information
Exploit co-reference information for
• accomplishing immediate SPARQL rewriting
• performing endpoint selection
• execute automatic query federation
Basic idea: Focusing distributed co-reference information
Main principle: Semantic entites over
identifier!
11
Components
balloon toolsuite
12
balloon Overflight
• SPARQL based crawling of LOD endpoints
• Query: Ask for subjects and objects which are
related with special predicate
• Simplified global view on
• Equivalence: owl:SameAs, skos:exactMatch,
coref:coreferenceData, ...
• Graph-Database Neo4j
• Equivalence Cluster:
Multiple synonym URIs representing the same
semantic entity including Provenance
13
balloon Fusion
SPARQL Federation setup using co-reference information
SPARQL Transformation for each BGP
1. Determine synonym URIs
2. Select suitable endpoints
3. Adapt sub-queries to endpoints
4. Federated querying
SELECT ?p ?o WHERE {
<http://de.dbpedia.org/resource/Passau> ?p ?o.
}
SPARQL
14
1. Determine synonym URIs
SELECT ?p ?o WHERE {
<http://de.dbpedia.org/resource/Passau> ?p ?o.
}
SPARQL
15
2. Select suitable endpoints
• Provenance based selection (PBS)
• Endpoints which are involved in cluster composition
• Namespace based selection (NBS)
• Prefix and Namespace matching of synonym URLs
Summarized: origin of co-reference
information and origin of synonym URIs
16
2. Select suitable endpoints (2)
Assumption:
• Provenance information only contains „linkedgeodata.org“
as co-reference origin
• Namespaces for freebase and dbpedia available (datahub.io)
PBS:
Linked-Geo-Data
Endpoint
NBS:
DBPedia
endpoint
NBS:
Freebase
endpoint
17
3. Adapt sub-queries to endpoints
PBS:
Linked-Geo-Data
Endpoint
NBS:
DBPedia
endpoint
NBS:
Freebase
endpoint
SELECT ?p ?o WHERE {
<http://rdf.freebase.com/
ns/m.01h5td> ?p ?o.
}
SPARQL
SELECT ?p ?o WHERE {
<http://de.dbpedia.org/resource/Passau> ?p ?o.
}
SPARQL
SELECT ?p ?o WHERE {
{ <http://rdf.freebase.com/ns/m.01h5td> ?p ?o. }
UNION
{ <http://linkedgeodata.org/triplify/node240057351> ?p ?o. }
UNION
{ <http://de.dbpedia.org/resource/Passau> ?p ?o. }
}
SPARQL
SELECT ?p ?o WHERE {
<http://de.dbpedia.org/resource/Passau> ?p ?o.
}
SPARQL
• W3C SPARQL 1.1 Federated Query Extension (SERVICE)
• (Partial) Query can be executed against a remote SPARQL
endpoint
• Distributed sub-queries don‘t contain SPARQL 1.1 features
18
4. Federated Querying
SPARQL
SELECT ?p ?o WHERE {
SERVICE <http://dbpedia.org/sparql> {
<http://de.dbpedia.org/resource/Passau> ?p ?o.
} UNION {
SERVICE <http://www.freebase.com/base/sparql> {
<http://rdf.freebase.com/ns/m.01h5td> ?p ? }
} UNION {
SERVICE <http://linkedgeodata.org/sparql/> {
{ <http://rdf.freebase.com/ns/m.01h5td> ?p ?o. }
UNION
{ <http://linkedgeodata.org/triplify/node240057351> ?p ?o. }
UNION
{ <http://de.dbpedia.org/resource/Passau> ?p ?o. }
}}}
• Endpoint status check
• Check routine in terms of availability and latency
• Minimize sub-queries
• Group sub-queries with common endpoint
• Push join to endpoint
• SPARQL Features
• Condense PBS UNION-construct of synonym URIs
• SPARQL 1.1 VALUES or FILTER with IN operator
• Not well implemented in Linked Data endpoints
19
Optimizations (ongoing)
balloon Overflight
Results
20
21
Results from a sounding
balloon
22
balloon toolsuite
23
Statistics
• Datahub.io: Linked Open Data Cloud catalog
• 337 datasets in total
• 237 expose a SPARQL endpoint
• 112 successfully queried for co-reference information
• Balloon Dataset (first run)
• 17.6M co-reference statements
• 22.4M distinct URLs
• 8.4M equivalence cluster (~ 2.68 identifier per cluster)
• Pending Analysis
• Distribution of cluster sizes, Number of different Hosts per cluster
• Main representative per cluster & False-Friends
Open Source:
• Demo, information and sources available (MIT License)
• X as a Service
• SPARQL Rewriting (HTTP API)
• Query Federation (SPARQL)
24
http://schlegel.github.io/balloon
Summary:
• SPARQL-based crawling of distributed co-reference information
• Exploit co-reference information for SPARQL federation
25
Single Point of Access
Any questions?
“
26
Research is formalized curiosity.
It is poking and prying with a
purpose. - Zora Neale Hurston

More Related Content

What's hot (20)

PDF
Mining a Large Web Corpus
Robert Meusel
 
PPTX
grlc Makes GitHub Taste Like Linked Data APIs
Albert Meroño-Peñuela
 
PDF
Health Sciences Research Informatics, Powered by Globus
Globus
 
PPTX
Sept 24 NISO Virtual Conference: Library Data in the Cloud
National Information Standards Organization (NISO)
 
PPTX
Visualizing Co-authorship Networks for Actionable Insights: Action Design Res...
Jukka Huhtamäki
 
PPTX
2016 urisa track: nhd hydro linked data registery by michael tinker
GIS in the Rockies
 
PDF
Data Sharing via Globus in the NIH Intramural Program
Globus
 
PPTX
Search Joins with the Web - ICDT2014 Invited Lecture
Chris Bizer
 
PPTX
London HUG
Boudicca
 
PDF
20170501 Distributed Network of Digital Heritage Information
Enno Meijers
 
PPTX
Neo4j_allHands_04112013
Arka Pattanayak
 
PPTX
A Web-scale Study of the Adoption and Evolution of the schema.org Vocabulary ...
Robert Meusel
 
PDF
An Ontology-Driven Integration Framework for Smart Communities
Steve Ray
 
PPTX
Jisc Research Data Shared Service Open Repositories 2018 Paper
Jisc RDM
 
PDF
2016 05-20-clariah-wp4
CLARIAH
 
PDF
2013 open analytics-meetup-mortar
Open Analytics
 
PPTX
NoSQL: what does it mean, how did we get here, and why should I care? - Hugo ...
South London Geek Nights
 
PDF
ResourceSync - Overview and Real-World Use Cases for Discovery, Harvesting, a...
Martin Klein
 
PPTX
Seamless access to the world’s open access research papers via ResourceSync
petrknoth
 
Mining a Large Web Corpus
Robert Meusel
 
grlc Makes GitHub Taste Like Linked Data APIs
Albert Meroño-Peñuela
 
Health Sciences Research Informatics, Powered by Globus
Globus
 
Sept 24 NISO Virtual Conference: Library Data in the Cloud
National Information Standards Organization (NISO)
 
Visualizing Co-authorship Networks for Actionable Insights: Action Design Res...
Jukka Huhtamäki
 
2016 urisa track: nhd hydro linked data registery by michael tinker
GIS in the Rockies
 
Data Sharing via Globus in the NIH Intramural Program
Globus
 
Search Joins with the Web - ICDT2014 Invited Lecture
Chris Bizer
 
London HUG
Boudicca
 
20170501 Distributed Network of Digital Heritage Information
Enno Meijers
 
Neo4j_allHands_04112013
Arka Pattanayak
 
A Web-scale Study of the Adoption and Evolution of the schema.org Vocabulary ...
Robert Meusel
 
An Ontology-Driven Integration Framework for Smart Communities
Steve Ray
 
Jisc Research Data Shared Service Open Repositories 2018 Paper
Jisc RDM
 
2016 05-20-clariah-wp4
CLARIAH
 
2013 open analytics-meetup-mortar
Open Analytics
 
NoSQL: what does it mean, how did we get here, and why should I care? - Hugo ...
South London Geek Nights
 
ResourceSync - Overview and Real-World Use Cases for Discovery, Harvesting, a...
Martin Klein
 
Seamless access to the world’s open access research papers via ResourceSync
petrknoth
 

Similar to balloon Fusion: SPARQL Rewriting Based on Unified Co-Reference Information (20)

ODP
Data Integration And Visualization
Ivan Ermilov
 
PPTX
The Semantic Web #10 - SPARQL
Myungjin Lee
 
PPTX
Consuming Linked Data 4/5 Semtech2011
Juan Sequeda
 
PDF
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...
Olaf Hartig
 
PDF
Querying Linked Data with SPARQL (2010)
Olaf Hartig
 
PPTX
SPARQL-DL - Theory & Practice
Adriel Café
 
PDF
Querying Linked Data with SPARQL
Olaf Hartig
 
PPTX
Querying Linked Data
EUCLID project
 
PPTX
Linked Open Data - Masaryk University in Brno 8.11.2016
Martin Necasky
 
PDF
Bio2RDF @ W3C HCLS2009
François Belleau
 
PDF
Producing, publishing and consuming linked data - CSHALS 2013
François Belleau
 
PDF
Sparql a simple knowledge query
Stanley Wang
 
PDF
Mon norton tut_queryinglinkeddata02
eswcsummerschool
 
PPTX
Why I don't use Semantic Web technologies anymore, event if they still influe...
Gautier Poupeau
 
PPT
Sparql
Serge Garlatti
 
PDF
SFScon 2020 - Peter Hopfgartner - Open Data de luxe
South Tyrol Free Software Conference
 
ODP
2009 0807 Lod Gmod
Jun Zhao
 
PDF
Ephedra: efficiently combining RDF data and services using SPARQL federation
Peter Haase
 
PPTX
Why do they call it Linked Data when they want to say...?
Oscar Corcho
 
PPSX
The Web of data and web data commons
Jesse Wang
 
Data Integration And Visualization
Ivan Ermilov
 
The Semantic Web #10 - SPARQL
Myungjin Lee
 
Consuming Linked Data 4/5 Semtech2011
Juan Sequeda
 
Tutorial "An Introduction to SPARQL and Queries over Linked Data" Chapter 3 (...
Olaf Hartig
 
Querying Linked Data with SPARQL (2010)
Olaf Hartig
 
SPARQL-DL - Theory & Practice
Adriel Café
 
Querying Linked Data with SPARQL
Olaf Hartig
 
Querying Linked Data
EUCLID project
 
Linked Open Data - Masaryk University in Brno 8.11.2016
Martin Necasky
 
Bio2RDF @ W3C HCLS2009
François Belleau
 
Producing, publishing and consuming linked data - CSHALS 2013
François Belleau
 
Sparql a simple knowledge query
Stanley Wang
 
Mon norton tut_queryinglinkeddata02
eswcsummerschool
 
Why I don't use Semantic Web technologies anymore, event if they still influe...
Gautier Poupeau
 
SFScon 2020 - Peter Hopfgartner - Open Data de luxe
South Tyrol Free Software Conference
 
2009 0807 Lod Gmod
Jun Zhao
 
Ephedra: efficiently combining RDF data and services using SPARQL federation
Peter Haase
 
Why do they call it Linked Data when they want to say...?
Oscar Corcho
 
The Web of data and web data commons
Jesse Wang
 
Ad

Recently uploaded (20)

PDF
Loading Data into Snowflake (Bulk & Stream)
Accentfuture
 
PPT
Reliability Monitoring of Aircrfat commerce
Rizk2
 
PPTX
Feb 2021 Ransomware Recovery presentation.pptx
enginsayin1
 
PDF
Kafka Use Cases Real-World Applications
Accentfuture
 
PDF
Exploiting the Low Volatility Anomaly: A Low Beta Model Portfolio for Risk-Ad...
Bradley Norbom, CFA
 
PDF
CT-2-Ancient ancient accept-Criticism.pdf
DepartmentofEnglishC1
 
PDF
GOOGLE ADS (1).pdf THE ULTIMATE GUIDE TO
kushalkeshwanisou
 
PDF
5991-5857_Agilent_MS_Theory_EN (1).pdf. pdf
NohaSalah45
 
PPTX
Data Analytics using sparkabcdefghi.pptx
KarkuzhaliS3
 
PPTX
microservices-with-container-apps-dapr.pptx
vjay22
 
PDF
Group 5_RMB Final Project on circular economy
pgban24anmola
 
PPTX
RESEARCH-FINAL-GROUP-3, about the final .pptx
gwapokoha1
 
PPTX
Comparative Study of ML Techniques for RealTime Fraud Detection System.pptx
Debolina Ghosh
 
PDF
Unlocking Insights: Introducing i-Metrics Asia-Pacific Corporation and Strate...
Janette Toral
 
PPTX
Krezentios memories in college data.pptx
notknown9
 
DOCX
COT Feb 19, 2025 DLLgvbbnnjjjjjj_Digestive System and its Functions_PISA_CBA....
kayemorales1105
 
PDF
SQL for Accountants and Finance Managers
ysmaelreyes
 
PPTX
big data eco system fundamentals of data science
arivukarasi
 
PPTX
办理学历认证InformaticsLetter新加坡英华美学院毕业证书,Informatics成绩单
Taqyea
 
PPTX
Artificial intelligence Presentation1.pptx
SaritaMahajan5
 
Loading Data into Snowflake (Bulk & Stream)
Accentfuture
 
Reliability Monitoring of Aircrfat commerce
Rizk2
 
Feb 2021 Ransomware Recovery presentation.pptx
enginsayin1
 
Kafka Use Cases Real-World Applications
Accentfuture
 
Exploiting the Low Volatility Anomaly: A Low Beta Model Portfolio for Risk-Ad...
Bradley Norbom, CFA
 
CT-2-Ancient ancient accept-Criticism.pdf
DepartmentofEnglishC1
 
GOOGLE ADS (1).pdf THE ULTIMATE GUIDE TO
kushalkeshwanisou
 
5991-5857_Agilent_MS_Theory_EN (1).pdf. pdf
NohaSalah45
 
Data Analytics using sparkabcdefghi.pptx
KarkuzhaliS3
 
microservices-with-container-apps-dapr.pptx
vjay22
 
Group 5_RMB Final Project on circular economy
pgban24anmola
 
RESEARCH-FINAL-GROUP-3, about the final .pptx
gwapokoha1
 
Comparative Study of ML Techniques for RealTime Fraud Detection System.pptx
Debolina Ghosh
 
Unlocking Insights: Introducing i-Metrics Asia-Pacific Corporation and Strate...
Janette Toral
 
Krezentios memories in college data.pptx
notknown9
 
COT Feb 19, 2025 DLLgvbbnnjjjjjj_Digestive System and its Functions_PISA_CBA....
kayemorales1105
 
SQL for Accountants and Finance Managers
ysmaelreyes
 
big data eco system fundamentals of data science
arivukarasi
 
办理学历认证InformaticsLetter新加坡英华美学院毕业证书,Informatics成绩单
Taqyea
 
Artificial intelligence Presentation1.pptx
SaritaMahajan5
 
Ad

balloon Fusion: SPARQL Rewriting Based on Unified Co-Reference Information

  • 1. DESWeb 2014 ICDE 2014, Chicago IL, USA, March 3 balloon Fusion SPARQL Rewriting Based on Unified Co-Reference Information Kai Schlegel ([email protected]) Florian Stegmaier, Sebastian Bayerl, Michael Granitzer, Harald Kosch
  • 2. 2 Motivation SPARQL Rewriting & Federation Intermediate Results Outline supported by the European Commission under the Seventh Framework Program
  • 3. 3 Linked Data is the heart of Semantic Web “ - W3C Semantic Web Group
  • 4. 4
  • 5. 5
  • 6. • Easy access to Linked Data • Query Linked Open Data with SPARQL • Plethora of tools available • Problems: • Business oriented • Complex setup • Maintenance • „Paper-only“ • Not developer friendly •  Simple and „instant“ SPARQL Query Federation (-as-a-Service) 6 Motivation Nothing-as-a-Service
  • 7. • How to get information about the German City „Passau“? • Problem: LOD is not a single database! 7 Querying LOD SPARQL SPARQL RDF RDFRDF SELECT ?p ?o WHERE { <http://de.dbpedia.org/resource/Passau> ?p ?o. } de.dbpedia.org Relations, Coordinates, Leader, etc. What about the population? SPARQL
  • 8. • Problem: Selection of appropriate endpoints • Send query to some endpoints and aggregate the results? 8 Distributed Querying! SPARQL SPARQL RDF RDFRDF SELECT ?p ?o WHERE { <http://de.dbpedia.org/resource/Passau> ?p ?o. } de.dbpedia.org SPARQL linkedgeodata.org
  • 9. • Problem: Different identifier for the same semantic concept 9 Misunderstanding: Co-Referencing SPARQL SPARQL RDF RDFRDF SELECT ?p ?o WHERE { <http://de.dbpedia.org/resource/Passau> ?p ?o. } de.dbpedia.org SPARQL linkedgeodata.org Known problem in linguistic: It’s a spud!“ What?“ I mean potato!“ Co-Referencing: Multiple expressions refer to the same thing.
  • 10. 10 Problem = Solution? SPARQL-based crawling of co-reference information Exploit co-reference information for • accomplishing immediate SPARQL rewriting • performing endpoint selection • execute automatic query federation Basic idea: Focusing distributed co-reference information Main principle: Semantic entites over identifier!
  • 12. 12 balloon Overflight • SPARQL based crawling of LOD endpoints • Query: Ask for subjects and objects which are related with special predicate • Simplified global view on • Equivalence: owl:SameAs, skos:exactMatch, coref:coreferenceData, ... • Graph-Database Neo4j • Equivalence Cluster: Multiple synonym URIs representing the same semantic entity including Provenance
  • 13. 13 balloon Fusion SPARQL Federation setup using co-reference information SPARQL Transformation for each BGP 1. Determine synonym URIs 2. Select suitable endpoints 3. Adapt sub-queries to endpoints 4. Federated querying SELECT ?p ?o WHERE { <http://de.dbpedia.org/resource/Passau> ?p ?o. } SPARQL
  • 14. 14 1. Determine synonym URIs SELECT ?p ?o WHERE { <http://de.dbpedia.org/resource/Passau> ?p ?o. } SPARQL
  • 15. 15 2. Select suitable endpoints • Provenance based selection (PBS) • Endpoints which are involved in cluster composition • Namespace based selection (NBS) • Prefix and Namespace matching of synonym URLs Summarized: origin of co-reference information and origin of synonym URIs
  • 16. 16 2. Select suitable endpoints (2) Assumption: • Provenance information only contains „linkedgeodata.org“ as co-reference origin • Namespaces for freebase and dbpedia available (datahub.io) PBS: Linked-Geo-Data Endpoint NBS: DBPedia endpoint NBS: Freebase endpoint
  • 17. 17 3. Adapt sub-queries to endpoints PBS: Linked-Geo-Data Endpoint NBS: DBPedia endpoint NBS: Freebase endpoint SELECT ?p ?o WHERE { <http://rdf.freebase.com/ ns/m.01h5td> ?p ?o. } SPARQL SELECT ?p ?o WHERE { <http://de.dbpedia.org/resource/Passau> ?p ?o. } SPARQL SELECT ?p ?o WHERE { { <http://rdf.freebase.com/ns/m.01h5td> ?p ?o. } UNION { <http://linkedgeodata.org/triplify/node240057351> ?p ?o. } UNION { <http://de.dbpedia.org/resource/Passau> ?p ?o. } } SPARQL SELECT ?p ?o WHERE { <http://de.dbpedia.org/resource/Passau> ?p ?o. } SPARQL
  • 18. • W3C SPARQL 1.1 Federated Query Extension (SERVICE) • (Partial) Query can be executed against a remote SPARQL endpoint • Distributed sub-queries don‘t contain SPARQL 1.1 features 18 4. Federated Querying SPARQL SELECT ?p ?o WHERE { SERVICE <http://dbpedia.org/sparql> { <http://de.dbpedia.org/resource/Passau> ?p ?o. } UNION { SERVICE <http://www.freebase.com/base/sparql> { <http://rdf.freebase.com/ns/m.01h5td> ?p ? } } UNION { SERVICE <http://linkedgeodata.org/sparql/> { { <http://rdf.freebase.com/ns/m.01h5td> ?p ?o. } UNION { <http://linkedgeodata.org/triplify/node240057351> ?p ?o. } UNION { <http://de.dbpedia.org/resource/Passau> ?p ?o. } }}}
  • 19. • Endpoint status check • Check routine in terms of availability and latency • Minimize sub-queries • Group sub-queries with common endpoint • Push join to endpoint • SPARQL Features • Condense PBS UNION-construct of synonym URIs • SPARQL 1.1 VALUES or FILTER with IN operator • Not well implemented in Linked Data endpoints 19 Optimizations (ongoing)
  • 21. 21 Results from a sounding balloon
  • 23. 23 Statistics • Datahub.io: Linked Open Data Cloud catalog • 337 datasets in total • 237 expose a SPARQL endpoint • 112 successfully queried for co-reference information • Balloon Dataset (first run) • 17.6M co-reference statements • 22.4M distinct URLs • 8.4M equivalence cluster (~ 2.68 identifier per cluster) • Pending Analysis • Distribution of cluster sizes, Number of different Hosts per cluster • Main representative per cluster & False-Friends
  • 24. Open Source: • Demo, information and sources available (MIT License) • X as a Service • SPARQL Rewriting (HTTP API) • Query Federation (SPARQL) 24 http://schlegel.github.io/balloon
  • 25. Summary: • SPARQL-based crawling of distributed co-reference information • Exploit co-reference information for SPARQL federation 25 Single Point of Access
  • 26. Any questions? “ 26 Research is formalized curiosity. It is poking and prying with a purpose. - Zora Neale Hurston