Open Semantic Revision Control with R43ples Extending SPARQL to access revisions of Named Graphs

Size: px
Start display at page:

Download "Open Semantic Revision Control with R43ples Extending SPARQL to access revisions of Named Graphs"

Transcription

1 Elektrotechnik & Informationstechnik, Institut für Automatisierungstechnik, Professur für Prozessleittechnik / AG Systemverfahrenstechnik Open Semantic Revision Control with R43ples Extending SPARQL to access revisions of Named Graphs SEMANTICS 2016 Markus Graube Stephan Hensel Leon Urbas

2 Agenda Introduction Concept SPARQL Interface Approaches to retrieve old revisions Implementation and Evaluation Conclusion and Discussion SEMANTICS 2016 Open Semantic Revision Control with R43ples 2

3 ComVantage - Motivation Project-based collaborations enable extended services require flexible, interlinked information models and trustful and convenient access to the information ComVantage Finished EU FP7 Project product-centric collaboration space for dynamic and flexible information exchange build on top of best practices from the Semantic Web for providing productcentric and workflow-based mobile apps SEMANTICS 2016 Open Semantic Revision Control with R43ples 3

4 Revision Control System - Motivation Revision Control (Wiesner, 2010) Record Changes and revise old version Track quality Branching / Merging Top requirement for industrial use (Schmidt, 2014) Challenges for Linked Data Open nature of LD as challenge Complete checkout not possible Approaches Temporal RDF Reified Statements (Auer and Herre, 2007) Aggregated Deltas (Im et. Al., 2012) File based (partly with Git, SVN, ) Problems No extensive use of open semantics No standardized and uniform access SEMANTICS 2016 Open Semantic Revision Control with R43ples 4

5 Concept of R43ples (Revision for Triples) Concept Revision Control on Graph level Based on (Vander Sande et. al., 2013) R43ples as proxy SPARQL Endpoint Generation of old revisions on demand Information space on external triplestore Delta compression in Named Graphs Add sets Delete sets Revision Information in additional graph Revision Management Ontology (RMO) Some revisions as fully materialized graphs Tag, Branch, Master SEMANTICS 2016 Open Semantic Revision Control with R43ples Folie 5

6 Information model Overview about revision graphs stored in eatld:r43ples-revisions Revision history for revisioned graph in named graph Use of PROV-O as base Extension to Revision Management Ontology (RMO) Change sets as deltas between revisions stored in additional named graphs Add-Sets Delete-Sets Terminal revision in a branch is fully materialized Tag, Branch, Master SEMANTICS 2016 Open Semantic Revision Control with R43ples 6

7 Revision Graph SEMANTICS 2016 Open Semantic Revision Control with R43ples Folie 7

8 Example revision graph (according to Van der Sande et. al., 2013) SEMANTICS 2016 Open Semantic Revision Control with R43ples Folie 8

9 Access to revisions Support of SPARQL as popular access mechanism Revision information as part of the query Extension necessary to R43ples queries Specification of revisions for used graphs Transparent for standard SPARQL Queries Compatible to SPARQL 1.1 No specification of Revision => MASTER SEMANTICS 2016 Open Semantic Revision Control with R43ples 9

10 Approaches for SPARQL interface (Revision 2 in Graph Virtual Graph SELECT?s?o WHERE { GRAPH < {?s foaf:knows?o. Virtual Service SELECT?s?o WHERE { GRAPH?graph_rev2 {?s foaf:knows?o. SERVICE <r43ples:revision> {?graph_rev2 a rmo:revision; rmo:revisionof < rmo:revisionnumber "2". Additional Keywords SELECT?s?o WHERE { GRAPH < REVISION "2" {?s foaf:knows?o. Graph URI Function SELECT?s?o WHERE { GRAPH r43ples:revision(< 2) {?s foaf:knows?o. SEMANTICS 2016 Open Semantic Revision Control with R43ples 10

11 SPARQL Interface Decision for Additional Keyword Transformation between approaches possible Multiple Graphs SELECT * WHERE { GRAPH <graph> REVISION 23 {?s?p?o. GRAPH <graph> REVISION branch-new-feature {?s?p?o. SEMANTICS 2016 Open Semantic Revision Control with R43ples Folie 11

12 Querying Revisions Query on a fully materialized graph can be directly performed Leaf revision of a branch, master, tag Otherwise reconstruction of old revision for every used graph Generation of a temporary graph Query Rewriting SEMANTICS 2016 Open Semantic Revision Control with R43ples 12

13 Retrieve old revision via generation of a temporary graph 1. Extract revision information and find shortest path to a materialized graph 2. Semantic description allows simple reconstruction of old revisions Generation from newest revision to older ones Use of SPARQL COPY GRAPH <delete_set> TO <temp> DELETE { GRAPH <temp>{?s?p?o WHERE { GRAPH <add_set {?s?p?o 3. Perform query on this temporary graph SEMANTICS 2016 Open Semantic Revision Control with R43ples 13

14 Rewriting of SPARQL query for joining changesets 1. Extract revision information and find shortest path to a materialized graph 2. Rewrite Query 3. Let SPARQL engine let join all the changesets for us SEMANTICS 2016 Open Semantic Revision Control with R43ples 14

15 Joining Changesets q a f R i : Set of triples in revision i q: Revision to be queried f: Revision with fully materialized graph a: Revision in between (q<a<f) A: Union of all add sets between f and q D: Union of all delete sets between f and q R * f: Non-changed triples between f and q D * : Set of triples from D, which are not in earlier add sets R q = R f D R q = R f \ A i D f+1 R f f i=q+1 f j=q+1 D j \ j A k k=q+1 R q = D j \ j=q+1 k=q+1 SEMANTICS 2016 Open Semantic Revision Control with R43ples 15 f+1 j A k

16 Application of Query Rewriting For each TriplePattern in query Example Graph: < Master Revision: 5 Query on Revision 2: SELECT DISTINCT?s?p?o WHERE { GRAPH < REVISION 2 { # only one TriplePattern?s foaf:knows?o. SEMANTICS 2016 Open Semantic Revision Control with R43ples 16

17 Query Rewriting SELECT?s?o WHERE { R q GRAPH < REVISION "2" { = R f D R q = R f \ D f+1 R f?s foaf:knows?o. f i=q+1 A i f j=q+1 D j \ j k=q+1 A k PREFIX rev: < SELECT?s?o WHERE{ GRAPH?g_st1 {?s foaf:knows?o. GRAPH r43ples:revisions { { BIND(rev:5 AS?r_st1) [] rmo:references?r_st1; UNION { MINUS { rmo:fullgraph?g_st1.?r_st1 rmo:deltaremoved?g_st1. FILTER(?r_st1 IN (rev:5,rev:4,rev:3)) GRAPH?g_st1_add {?s foaf:knows?o. GRAPH r43ples:revisions {?r_st1 prov:wasderivedfrom*?r_st1_add. f = rev:5?r_st1_add rmo:deltaadded?g_st1_add. f+1 j q = rev:2 FILTER(?r_st1_add IN A ->rmo:deltaadded R q = D j \ A (rev:5,rev:4,rev:3)) k D ->rmo:deltaremoved f+1 j=q+1 k=q+1? g del D i SEMANTICS 2016 i=q Open Semantic Revision Control with R43ples 17

18 Updating revisions 1. Extract revision information Only branches can be updated Updates on other branches are rejected 2. INSERT and DELETE parts Inserted into new changesets graphs Applied on materialized graph 3. Updating revision graph Insert rmo:commit and rmo:revision Moving branch reference MESSAGE change dc:title to rdfs:label DELETE{ GRAPH<graph> REVISION master {?s dc:title?title. INSERT { GRAPH<graph> REVISION master {?s rdfs:label?title. WHERE { GRAPH <graph> REVISION v0.1 {?s dc:title?title SEMANTICS 2016 Open Semantic Revision Control with R43ples 18

19 SPARQL Interface Further commands follow same schema TAG GRAPH <graph> REVISION 23 TO v1.4 BRANCH GRAPH <graph> REVISION 23 TO branch-b2 MERGE GRAPH <graph> BRANCH branch-b2 TO master SEMANTICS 2016 Open Semantic Revision Control with R43ples Folie 19

20 Revision informationen for the client Direct access to revision graph via SPARQL Parts of revision graph in response header as RDF [] rdf:type rmo:master, rmo:branch ; rdfs:label "master" ; rmo:references [ rmo:revisionof test:r43ples-dataset-merging ; rmo:revisionnumber "1". ]. [] rdf:type rmo:branch ; rdfs:label "B1" ; rmo:references [ rmo:revisionof test:r43ples-dataset-merging ; rmo:revisionnumber "1.0-1". ]. [] rdf:type rmo:branch ; rdfs:label "B2" ; rmo:references [ rmo:revisionof test:r43ples-dataset-merging ; rmo:revisionnumber "1.1-2" SEMANTICS 2016 Open Semantic Revision Control with R43ples 20 ].

21 SPARQL 1.1. Service Description How do clients know that an endpoint support revision control? SPARQL 1.1. Service Description Extension of sd:feature with sd:r43ples Extension of sd:supportedlanguage with ns3: sd: rdf: < < a sd:service ; sd:endpoint < ; sd:feature sd:r43ples ; sd:resultformat ns3:rdfa, ns3:n3, ns3:turtle, ns3:sparql_results_xml, ns3:sparql_results_csv, ns3:rdf_xml, ns3:n-triples, ns3:sparql_results_json ; sd:supportedlanguage sd:sparql11update, sd:r43plesquery, sd:sparql10query, sd:sparql11query ; sd:url < SEMANTICS 2016 Open Semantic Revision Control with R43ples 21

22 Implementation Java Prototyp Jersey (REST) Grizzly aswebserver Jena ARQ for SPARQL Open Source EUPL licence GitHub: Test System SEMANTICS 2016 Open Semantic Revision Control with R43ples 22

23 Evaluation Response time dependant on dataset size revision path length size of changes Additional Storage overhead 12 triples + changes for update Full graph for tag and branches SEMANTICS 2016 Open Semantic Revision Control with R43ples 23

24 Conclusion Revision Control on Triple level Change sets in named graphs Blank Nodes problem Semantic Description No implicit knowledge necessary SPARQL interface Extendend keywords Two approaches Generation of temporary graph JOIN via Query Rewriting R43ples Endpoint transparent for SPARQL clients Default revision = MASTER Current and Future Work Semantic Merging Interface Concept of semantical diffs Extended evaluation SEMANTICS 2016 Open Semantic Revision Control with R43ples 24

25 Thank you for your attention! Prof. Dr.-Ing. habil. Leon Urbas Contact me: Technische Universität Dresden Fakultät Elektrotechnik und Informationstechnik Institut für Automatisierungstechnik Tel.: Fax: Besucheradresse: Barkhausen-Bau Georg-Schumann-Str Dresden Postanschrift (Briefe): Technische Universität Dresden Fakultät Elektrotechnik und Informationstechnik Institut für Automatisierungstechnik Dresden SEMANTICS 2016 Open Semantic Revision Control with R43ples 25

Integrating Industrial Middleware in Linked Data Collaboration Networks

Integrating Industrial Middleware in Linked Data Collaboration Networks Elektrotechnik & Informationstechnik, Institut für Automatisierungstechnik, Professur Prozessleittechnik Linked Data Adapter for OPC UA Integrating Industrial Middleware in Linked Data Collaboration Networks

More information

Semantic Web Information Management

Semantic Web Information Management Semantic Web Information Management Norberto Fernández ndez Telematics Engineering Department berto@ it.uc3m.es.es 1 Motivation n Module 1: An ontology models a domain of knowledge n Module 2: using the

More information

FedX: Optimization Techniques for Federated Query Processing on Linked Data. ISWC 2011 October 26 th. Presented by: Ziv Dayan

FedX: Optimization Techniques for Federated Query Processing on Linked Data. ISWC 2011 October 26 th. Presented by: Ziv Dayan FedX: Optimization Techniques for Federated Query Processing on Linked Data ISWC 2011 October 26 th Presented by: Ziv Dayan Andreas Schwarte 1, Peter Haase 1, Katja Hose 2, Ralf Schenkel 2, and Michael

More information

Interacting with Linked Data Part I: General Introduction

Interacting with Linked Data Part I: General Introduction Interacting with Linked Data Part I: General Introduction Agenda Part 0: Welcome Part I: General Introduction to Semantic Technologies Part II: Advanced Concepts Part III: OWLIM Part IV: Information Workbench-

More information

Querying the Semantic Web

Querying the Semantic Web Querying the Semantic Web CSE 595 Semantic Web Instructor: Dr. Paul Fodor Stony Brook University http://www3.cs.stonybrook.edu/~pfodor/courses/cse595.html Lecture Outline SPARQL Infrastructure Basics:

More information

Fuseki Server Installation

Fuseki Server Installation Fuseki Server Installation Related task of the project (Task # and full name): Author: Prepared by: Approved by: Task 43 Ontology standard and Metadata Sachin Deshmukh Sachin Deshmukh Richard Kaye Page:

More information

3. Queries Applied Artificial Intelligence Prof. Dr. Bernhard Humm Faculty of Computer Science Hochschule Darmstadt University of Applied Sciences

3. Queries Applied Artificial Intelligence Prof. Dr. Bernhard Humm Faculty of Computer Science Hochschule Darmstadt University of Applied Sciences 3. Queries Applied Artificial Intelligence Prof. Dr. Bernhard Humm Faculty of Computer Science Hochschule Darmstadt University of Applied Sciences 1 Retrospective Knowledge Representation (1/2) What is

More information

An Archiving System for Managing Evolution in the Data Web

An Archiving System for Managing Evolution in the Data Web An Archiving System for Managing Evolution in the Web Marios Meimaris *, George Papastefanatos and Christos Pateritsas * Institute for the Management of Information Systems, Research Center Athena, Greece

More information

Representing Linked Data as Virtual File Systems

Representing Linked Data as Virtual File Systems Representing Linked Data as Virtual File Systems Bernhard Schandl University of Vienna Department of Distributed and Multimedia Systems http://events.linkeddata.org/ldow2009#ldow2009 Madrid, Spain, April

More information

BUILDING THE SEMANTIC WEB

BUILDING THE SEMANTIC WEB BUILDING THE SEMANTIC WEB You might have come across the term Semantic Web Applications often, during talks about the future of Web apps. Check out what this is all about There are two aspects to the possible

More information

Day 2. RISIS Linked Data Course

Day 2. RISIS Linked Data Course Day 2 RISIS Linked Data Course Overview of the Course: Friday 9:00-9:15 Coffee 9:15-9:45 Introduction & Reflection 10:30-11:30 SPARQL Query Language 11:30-11:45 Coffee 11:45-12:30 SPARQL Hands-on 12:30-13:30

More information

SPARQL BGP Optimization For native RDF graph implementations

SPARQL BGP Optimization For native RDF graph implementations SPARQL BGP Optimization For native RDF graph implementations Markus Stocker, HP Laboratories Bristol Manchester, 23. October 2007 About me Markus Stocker Born in Switzerland, 1979, Ascona Languages: De,

More information

Schema-Agnostic Query Rewriting in SPARQL 1.1

Schema-Agnostic Query Rewriting in SPARQL 1.1 Fakultät Informatik, Institut Künstliche Intelligenz, Professur Computational Logic Schema-Agnostic Query Rewriting in SPARQL 1.1 Stefan Bischof, Markus Krötzsch, Axel Polleres and Sebastian Rudolph Plain

More information

Development of guidelines for publishing statistical data as linked open data

Development of guidelines for publishing statistical data as linked open data Development of guidelines for publishing statistical data as linked open data MERGING STATISTICS A ND GEOSPATIAL INFORMATION IN M E M B E R S TATE S POLAND Mirosław Migacz INSPIRE Conference 2016 Barcelona,

More information

Serving Ireland s Geospatial as Linked Data on the Web

Serving Ireland s Geospatial as Linked Data on the Web Serving Ireland s Geospatial as Linked Data on the Web Dr. Atul Nautiyal ADAPT @ Trinity College Dublin The ADAPT Centre is funded under the SFI Research Centres Programme (Grant 13/RC/2106) and is co-funded

More information

COMPUTER AND INFORMATION SCIENCE JENA DB. Group Abhishek Kumar Harshvardhan Singh Abhisek Mohanty Suhas Tumkur Chandrashekhara

COMPUTER AND INFORMATION SCIENCE JENA DB. Group Abhishek Kumar Harshvardhan Singh Abhisek Mohanty Suhas Tumkur Chandrashekhara JENA DB Group - 10 Abhishek Kumar Harshvardhan Singh Abhisek Mohanty Suhas Tumkur Chandrashekhara OUTLINE Introduction Data Model Query Language Implementation Features Applications Introduction Open Source

More information

SPARQL QUERY LANGUAGE WEB:

SPARQL QUERY LANGUAGE   WEB: SPARQL QUERY LANGUAGE JELENA JOVANOVIC EMAIL: JELJOV@GMAIL.COM WEB: HTTP://JELENAJOVANOVIC.NET SPARQL query language W3C standard for querying RDF graphs Can be used to query not only native RDF data,

More information

RKB, sameas and dotac

RKB, sameas and dotac RKB, sameas and dotac at 2009: Beyond the Repository Fringe Edinburgh 30-31 July 2009 Hugh Glaser & Ian Millard Linked Data Tim Berners-Lee http://www.w3.org/2009/talks/0204-ted-tbl/ the Semantic Web done

More information

Knowledge Representation RDF Turtle Namespace

Knowledge Representation RDF Turtle Namespace Knowledge Representation RDF Turtle Namespace Jan Pettersen Nytun, UiA 1 URIs Identify Web Resources Web addresses are the most common URIs, i.e., uniform Resource Locators (URLs). RDF resources are usually

More information

Programming Technologies for Web Resource Mining

Programming Technologies for Web Resource Mining Programming Technologies for Web Resource Mining SoftLang Team, University of Koblenz-Landau Prof. Dr. Ralf Lämmel Msc. Johannes Härtel Msc. Marcel Heinz Motivation What are interesting web resources??

More information

OLAP over Federated RDF Sources

OLAP over Federated RDF Sources OLAP over Federated RDF Sources DILSHOD IBRAGIMOV, KATJA HOSE, TORBEN BACH PEDERSEN, ESTEBAN ZIMÁNYI. Outline o Intro and Objectives o Brief Intro to Technologies o Our Approach and Progress o Future Work

More information

INFO216: Advanced Modelling

INFO216: Advanced Modelling INFO216: Advanced Modelling Theme, spring 2018: Modelling and Programming the Web of Data Andreas L. Opdahl Session 3: SPARQL Themes: introducing SPARQL Update SPARQL 1.1 Update

More information

recommendations: flexible scientific publication retrieval on the Semantic Web

recommendations: flexible scientific publication retrieval on the Semantic Web : flexible scientific publication retrieval on the Semantic Web Chair of Business Information Systems, Friedrich-Schiller-University of Jena LIS-Workshop, Leipzig 16.03.2016 Agenda : Publication Retrieval

More information

BASI DI DATI II 2 modulo Parte VIII: SPARQL

BASI DI DATI II 2 modulo Parte VIII: SPARQL BASI DI DATI II 2 modulo Parte VIII: SPARQL Prof. Riccardo Torlone Università Roma Tre Outline Querying RDF SPARQL Query Languages: SQL A language for querying collections of tuples: SELECT SALARY, HIRE_DATE

More information

SPARQL. Fausto Giunchiglia and Mattia Fumagallli. University of Trento

SPARQL. Fausto Giunchiglia and Mattia Fumagallli. University of Trento SPARQL Fausto Giunchiglia and Mattia Fumagallli University of Trento Roadmap Introduction Basic query forms SELECT CONSTRUCT ASK DESCRIBE Other clauses and modifiers SPARQL Federated Query Exercises 2

More information

Version Control Systems

Version Control Systems Nothing to see here. Everything is under control! September 16, 2015 Change tracking File moving Teamwork Undo! Undo! UNDO!!! What strategies do you use for tracking changes to files? Change tracking File

More information

Apache Marmotta. Multimedia Management

Apache Marmotta. Multimedia Management for Multimedia Management Jakob Frank, Thomas Kurz http://marmotta.apache.org/ Who are we? Jakob Frank Researcher at Salzburg Research Solution Architect at Redlink GmbH ASF Committer of Marmotta Thomas

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2017/18 Vedran Sabol with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz December 11 th 2017 Overview What is Semantic

More information

Semantic Web and Python Concepts to Application development

Semantic Web and Python Concepts to Application development PyCon 2009 IISc, Bangalore, India Semantic Web and Python Concepts to Application development Vinay Modi Voice Pitara Technologies Private Limited Outline Web Need better web for the future Knowledge Representation

More information

Jena.

Jena. Jena http://openjena.org/ The Beginning... From: McBride, Brian Date: Mon, 28 Aug 2000 13:40:03 +0100 To: "RDF Interest (E-mail)" A few weeks ago I posted

More information

Multi-agent and Semantic Web Systems: Querying

Multi-agent and Semantic Web Systems: Querying Multi-agent and Semantic Web Systems: Querying Fiona McNeill School of Informatics 11th February 2013 Fiona McNeill Multi-agent Semantic Web Systems: Querying 11th February 2013 0/30 Contents This lecture

More information

Lars Schmidt-Thieme, Information Systems and Machine Learning Lab (ISMLL), University of Hildesheim, Germany, Course on XML and Semantic Web

Lars Schmidt-Thieme, Information Systems and Machine Learning Lab (ISMLL), University of Hildesheim, Germany, Course on XML and Semantic Web Course on XML and Semantic Web Technologies, summer term 2012 0/45 XML and Semantic Web Technologies XML and Semantic Web Technologies II. Semantic Web / 3. SPARQL Query Language for RDF Lars Schmidt-Thieme

More information

Select all persons who belong to the class Father. SPARQL query PREFIX g: <

Select all persons who belong to the class Father. SPARQL query PREFIX g: < TASK 2 Mistakes: In general, tasks were done well Just to avoid unnecessary information overloading I provide possible right answers (some other solutions might also exist): Task 2-1: Select all persons

More information

Enabling suggestions in tabular data cleaning and RDF mapping validation

Enabling suggestions in tabular data cleaning and RDF mapping validation Enabling suggestions in tabular data cleaning and RDF mapping validation Xianglin Ye Master s Thesis Spring 2016 Abstract Linked open data provides a powerful way to publish data on the Web. However,

More information

2. RDF Semantic Web Basics Semantic Web

2. RDF Semantic Web Basics Semantic Web 2. RDF Semantic Web Basics Semantic Web Prof. Dr. Bernhard Humm Faculty of Computer Science Hochschule Darmstadt University of Applied Sciences Summer semester 2011 1 Agenda Semantic Web Basics Literature

More information

Version control CSE 403

Version control CSE 403 Version control CSE 403 Goals of a version control system Keep a history of your work Explain the purpose of each change Checkpoint specific versions (known good state) Recover specific state (fix bugs,

More information

Version control CSE 403

Version control CSE 403 Version control CSE 403 Goals of a version control system Keep a history of your work Explain the purpose of each change Checkpoint specific versions (known good state) Recover specific state (fix bugs,

More information

Multi-agent and Semantic Web Systems: Linked Open Data

Multi-agent and Semantic Web Systems: Linked Open Data Multi-agent and Semantic Web Systems: Linked Open Data Fiona McNeill School of Informatics 14th February 2013 Fiona McNeill Multi-agent Semantic Web Systems: *lecture* Date 0/27 Jena Vcard 1: Triples Fiona

More information

Interlinking the web of data: challenges and solutions

Interlinking the web of data: challenges and solutions Interlinking the web of data: challenges and solutions Work in collaboration with François Scharffe and others Jérôme Euzenat June 8, 2011 Outline ing Jérôme Euzenat Interlinking the web of data: challenges

More information

Is Linked Data the future of data integration in the enterprise?

Is Linked Data the future of data integration in the enterprise? Is Linked Data the future of data integration in the enterprise? John Walker Email: john.walker@nxp.com Twitter: @NXPdata Pilot Linked Open Data NXP is a semiconductor (microchip) manufacturer Established:

More information

Leveraging Linked Data to Discover Semantic Relations within Data Sources. Mohsen Taheriyan Craig A. Knoblock Pedro Szekely Jose Luis Ambite

Leveraging Linked Data to Discover Semantic Relations within Data Sources. Mohsen Taheriyan Craig A. Knoblock Pedro Szekely Jose Luis Ambite Leveraging Linked Data to Discover Semantic Relations within Data Sources Mohsen Taheriyan Craig A. Knoblock Pedro Szekely Jose Luis Ambite Domain Ontology CIDOC-CRM Source Map Structured Data to Ontologies

More information

XML and Semantic Web Technologies. III. Semantic Web / 3. SPARQL Query Language for RDF

XML and Semantic Web Technologies. III. Semantic Web / 3. SPARQL Query Language for RDF XML and Semantic Web Technologies XML and Semantic Web Technologies III. Semantic Web / 3. SPARQL Query Language for RDF Lars Schmidt-Thieme Information Systems and Machine Learning Lab (ISMLL) Institute

More information

Data management and integration

Data management and integration Development of Predictive Toxicology Applications An OpenTox Workshop 19 Sep 2010, Rhodes, Greece Data management and integration presented by Nina Jeliazkova (Ideaconsult Ltd., Bulgaria) Outline Ontology

More information

SPAR-QL. Mario Arrigoni Neri

SPAR-QL. Mario Arrigoni Neri SPAR-QL Mario Arrigoni Neri 1 Introduction 2 SPARQL = SPARQL Protocol and RDF Query Language SPARQL - query language to manipulate information in RDF graphs. It provides support to: extract information

More information

Foundations of SPARQL Query Optimization

Foundations of SPARQL Query Optimization Foundations of SPARQL Query Optimization Michael Schmidt, Michael Meier, Georg Lausen Albert-Ludwigs-Universität Freiburg Database and Information Systems Group 13 th International Conference on Database

More information

Introduction to RDF and the Semantic Web for the life sciences

Introduction to RDF and the Semantic Web for the life sciences Introduction to RDF and the Semantic Web for the life sciences Simon Jupp Sample Phenotypes and Ontologies Team European Bioinformatics Institute jupp@ebi.ac.uk Practical sessions Converting data to RDF

More information

Package rrdf. R topics documented: February 15, Type Package

Package rrdf. R topics documented: February 15, Type Package Type Package Package rrdf February 15, 2013 Title rrdf - support for the Resource Framework Version 1.9.2 Date 2012-11-30 Author Maintainer Depends

More information

Linked data and its role in the semantic web. Dave Reynolds, Epimorphics

Linked data and its role in the semantic web. Dave Reynolds, Epimorphics Linked data and its role in the semantic web Dave Reynolds, Epimorphics Ltd @der42 Roadmap What is linked data? Modelling Strengths and weaknesses Examples Access other topics image: Leo Oosterloo @ flickr.com

More information

Profiles Research Networking Software API Guide

Profiles Research Networking Software API Guide Profiles Research Networking Software API Guide Documentation Version: March 13, 2013 Software Version: ProfilesRNS_1.0.3 Table of Contents Overview... 2 PersonID, URI, and Aliases... 3 1) Profiles RNS

More information

Optimising a Semantic IoT Data Hub

Optimising a Semantic IoT Data Hub Optimising a Semantic IoT Data Hub Ilias Tachmazidis, Sotiris Batsakis, John Davies, Alistair Duke, Grigoris Antoniou and Sandra Stincic Clarke John Davies, BT Overview Motivation de-siloization and data

More information

A Deductive System for Annotated RDFS

A Deductive System for Annotated RDFS A Deductive System for Annotated RDFS DERI Institute Meeting Umberto Straccia Nuno Lopes Gergely Lukácsy Antoine Zimmermann Axel Polleres Presented by: Nuno Lopes May 28, 2010 Annotated RDFS Example Annotated

More information

Enterprise Information Integration using Semantic Web Technologies:

Enterprise Information Integration using Semantic Web Technologies: Enterprise Information Integration using Semantic Web Technologies: RDF as the Lingua Franca David Booth, Ph.D. HP Software Semantic Technology Conference 20-May-2008 In collaboration with Steve Battle,

More information

COMBINING X3D WITH SEMANTIC WEB TECHNOLOGIES FOR INTERIOR DESIGN

COMBINING X3D WITH SEMANTIC WEB TECHNOLOGIES FOR INTERIOR DESIGN COMBINING X3D WITH SEMANTIC WEB TECHNOLOGIES FOR INTERIOR DESIGN Konstantinos Kontakis, Malvina Steiakaki, Michael Kalochristianakis, Kostas Kapetanakis and Athanasios G. Malamos Acknowledgements This

More information

Publishing Statistical Data and Geospatial Data as Linked Data Creating a Semantic Data Platform

Publishing Statistical Data and Geospatial Data as Linked Data Creating a Semantic Data Platform Publishing Statistical Data and Geospatial Data as Linked Data Creating a Semantic Data Platform Hans Viehmann Product Manager EMEA ORACLE Corporation January 22, 2017 @SpatialHannes Safe Harbor Statement

More information

Git & Github Fundamental by Rajesh Kumar.

Git & Github Fundamental by Rajesh Kumar. Git & Github Fundamental by Rajesh Kumar About me Rajesh Kumar DevOps Architect @RajeshKumarIN www.rajeshkumar.xyz www.scmgalaxy.com 2 What is git Manage your source code versions Who should use Git Anyone

More information

RDF AND SPARQL. Part IV: Syntax of SPARQL. Dresden, August Sebastian Rudolph ICCL Summer School

RDF AND SPARQL. Part IV: Syntax of SPARQL. Dresden, August Sebastian Rudolph ICCL Summer School RDF AND SPARQL Part IV: Syntax of SPARQL Sebastian Rudolph ICCL Summer School Dresden, August 2013 Agenda 1 Introduction and Motivation 2 Simple SPARQL Queries 3 Complex Graph Pattern 4 Filters 5 Solution

More information

Ontology-Based Configuration of Construction Processes Using Process Patterns

Ontology-Based Configuration of Construction Processes Using Process Patterns Ontology-Based Configuration of Construction Processes Using Process Patterns A. Benevolenskiy, P. Katranuschkov & R.J. Scherer Dresden University of Technology, Germany Alexander.Benevolenskiy@tu-dresden.de

More information

Semantic Integration with Apache Jena and Apache Stanbol

Semantic Integration with Apache Jena and Apache Stanbol Semantic Integration with Apache Jena and Apache Stanbol All Things Open Raleigh, NC Oct. 22, 2014 Overview Theory (~10 mins) Application Examples (~10 mins) Technical Details (~25 mins) What do we mean

More information

infoh509 xml & web technologies lecture 9: sparql Stijn Vansummeren February 14, 2017

infoh509 xml & web technologies lecture 9: sparql Stijn Vansummeren February 14, 2017 infoh509 xml & web technologies lecture 9: sparql Stijn Vansummeren February 14, 2017 what have we gained? Current no structure Future structured by RDF (subject, predicate, object) b:genome b:field b:molecular-bio

More information

Interoperability: Advantages, Problems and Solutions

Interoperability: Advantages, Problems and Solutions Fakultät Informatik Institut für Angewandte Informatik, Professur Technische Informationssysteme Interoperability: Advantages, Problems and Solutions Prof. Dr.-Ing. habil. Klaus Kabitzsch Dresden, 2018-05-29

More information

Efficient, Scalable, and Provenance-Aware Management of Linked Data

Efficient, Scalable, and Provenance-Aware Management of Linked Data Efficient, Scalable, and Provenance-Aware Management of Linked Data Marcin Wylot 1 Motivation and objectives of the research The proliferation of heterogeneous Linked Data on the Web requires data management

More information

Implementing and extending SPARQL queries over DLVHEX

Implementing and extending SPARQL queries over DLVHEX Implementing and extending SPARQL queries over DLVHEX Gennaro Frazzingaro Bachelor Thesis Presentation - October 5, 2007 From a work performed in Madrid, Spain Galway, Ireland Rende, Italy How to solve

More information

SPARQL. Dr Nicholas Gibbins

SPARQL. Dr Nicholas Gibbins SPARQL Dr Nicholas Gibbins nmg@ecs.soton.ac.uk Semantic Web Applications Technologies considered so far allow us to create representation schemes (RDFS, OWL) and to represent data (RDF) We can put data

More information

Grid Resources Search Engine based on Ontology

Grid Resources Search Engine based on Ontology based on Ontology 12 E-mail: emiao_beyond@163.com Yang Li 3 E-mail: miipl606@163.com Weiguang Xu E-mail: miipl606@163.com Jiabao Wang E-mail: miipl606@163.com Lei Song E-mail: songlei@nudt.edu.cn Jiang

More information

Licenses and Waivers in Practice

Licenses and Waivers in Practice shared innovation Licenses and Waivers in Practice Tom Heath Platform Division Talis Information Ltd tom.heath@talis.com http://tomheath.com/id/me ISWC2009 Tutorial on Legal and Social Frameworks for Sharing

More information

Semantic Web Systems Sample Solution for Assignment 2 part 1. SPARQL Queries

Semantic Web Systems Sample Solution for Assignment 2 part 1. SPARQL Queries Semantic Web Systems 2015 2016 Sample Solution for Assignment 2 part 1 SPARQL Queries (1) I have installed Virtuoso Open Link following these instructions: http://virtuoso.openlinksw.com/dataspace/doc/dav/wiki/main/vosusagewindows

More information

Flexible querying for SPARQL

Flexible querying for SPARQL Flexible querying for SPARQL A. Calì, R. Frosini, A. Poulovassilis, P. T. Wood Department of Computer Science and Information Systems, Birkbeck, University of London London Knowledge Lab Overview of the

More information

Energy-related data integration using Semantic data models for energy efficient retrofitting projects

Energy-related data integration using Semantic data models for energy efficient retrofitting projects Sustainable Places 2017 28 June 2017, Middlesbrough, UK Energy-related data integration using for energy efficient retrofitting projects Álvaro Sicilia ascilia@salleurl.edu FUNITEC, La Salle Architecture

More information

Linking Distributed Data across the Web

Linking Distributed Data across the Web Linking Distributed Data across the Web Dr Tom Heath Researcher, Platform Division Talis Information Ltd tom.heath@talis.com http://tomheath.com/ Overview Background From a Web of Documents to a Web of

More information

Intelligent Information Request and Delivery Standard

Intelligent Information Request and Delivery Standard Intelligent Information Request and Delivery Standard The Information 4.0 Working Group presents Presentation at tcworld 2016. Download the German-language original. English translation by Kristen James

More information

KNOWLEDGE GRAPHS. Lecture 3: Modelling in RDF/Introduction to SPARQL. TU Dresden, 30th Oct Markus Krötzsch Knowledge-Based Systems

KNOWLEDGE GRAPHS. Lecture 3: Modelling in RDF/Introduction to SPARQL. TU Dresden, 30th Oct Markus Krötzsch Knowledge-Based Systems KNOWLEDGE GRAPHS Lecture 3: Modelling in RDF/Introduction to SPARQL Markus Krötzsch Knowledge-Based Systems TU Dresden, 30th Oct 2018 Review: RDF Graphs The W3C Resource Description Framework considers

More information

Transformational Design with

Transformational Design with Fakultät Informatik, Institut für Software- und Multimediatechnik, Lehrstuhl für Softwaretechnologie Transformational Design with Model-Driven Architecture () Prof. Dr. U. Aßmann Technische Universität

More information

Management of Complex Product Ontologies Using a Web-Based Natural Language Processing Interface

Management of Complex Product Ontologies Using a Web-Based Natural Language Processing Interface Management of Complex Product Ontologies Using a Web-Based Natural Language Processing Interface Master Thesis Final Presentation A B M Junaed, 11.07.2016 Software Engineering for Business Information

More information

Semantic Web Systems Linked Open Data Jacques Fleuriot School of Informatics

Semantic Web Systems Linked Open Data Jacques Fleuriot School of Informatics Semantic Web Systems Linked Open Data Jacques Fleuriot School of Informatics 9 th February 2015 In the previous lecture l Querying with XML Basic idea: search along paths in an XML tree e.g. path expression:

More information

The P2 Registry

The P2 Registry The P2 Registry -------------------------------------- Where the Semantic Web and Web 2.0 meet Digital Preservation David Tarrant, Steve Hitchcock & Les Carr davetaz / sh94r / lac @ecs.soton.ac.uk School

More information

SPBv: Benchmarking Linked Data Archiving Systems

SPBv: Benchmarking Linked Data Archiving Systems SPBv: Benchmarking Linked Data Archiving Systems Vassilis Papakonstantinou 1, Giorgos Flouris 1, Irini Fundulaki 1, Kostas Stefanidis 2, and Giannis Roussakis 1 1 Institute of Computer Science-FORTH, Greece

More information

Semantic Web Systems Querying Jacques Fleuriot School of Informatics

Semantic Web Systems Querying Jacques Fleuriot School of Informatics Semantic Web Systems Querying Jacques Fleuriot School of Informatics 5 th February 2015 In the previous lecture l Serialising RDF in XML RDF Triples with literal Object edstaff:9888 foaf:name Ewan Klein.

More information

Introduction to Semantic Web Databases. Version 1 Prepared By: Amgad Madkour Ph.D. Candidate Purdue University April 2018

Introduction to Semantic Web Databases. Version 1 Prepared By: Amgad Madkour Ph.D. Candidate Purdue University April 2018 Introduction to Semantic Web Databases Version 1 Prepared By: Amgad Madkour Ph.D. Candidate Purdue University April 2018 Semantic Web Motivation Represents the next generation of the the world wide web

More information

raceability Support in OpenModelica Using Open Services for Lifecycle Collaboration (OSLC)

raceability Support in OpenModelica Using Open Services for Lifecycle Collaboration (OSLC) raceability Support in OpenModelica Using Open Services for Lifecycle Collaboration (OSLC) Alachew Mengist, Adrian Pop, Adeel Asghar, Peter Fritzson MODPROD 2017, Linköping 2017-02-02 1 Agenda Problem

More information

Chapter 3 Querying RDF stores with SPARQL

Chapter 3 Querying RDF stores with SPARQL Chapter 3 Querying RDF stores with SPARQL Why an RDF Query Language? l Why not use an XML query language? l XML at a lower level of abstraction than RDF l There are various ways of syntactically representing

More information

Database of historical places, persons, and lemmas

Database of historical places, persons, and lemmas Database of historical places, persons, and lemmas Natalia Korchagina Outline 1. Introduction 1.1 Swiss Law Sources Foundation as a Digital Humanities project 1.2 Data to be stored 1.3 Final goal: how

More information

Semantic Web. Lecture 12: SW Programming Dr. Knarig Arabshian

Semantic Web. Lecture 12: SW Programming Dr. Knarig Arabshian Semantic Web Lecture 12: SW Programming Dr. Knarig Arabshian Knarig.arabshian@hofstra.edu Hello Semantic Web World Example Say hello to the Semantic Web Say hello to some friends of the Semantic Web Expand

More information

A General Approach to Query the Web of Data

A General Approach to Query the Web of Data A General Approach to Query the Web of Data Xin Liu 1 Department of Information Science and Engineering, University of Trento, Trento, Italy liu@disi.unitn.it Abstract. With the development of the Semantic

More information

Big Data 14. Graph Databases

Big Data 14. Graph Databases Ghislain Fourny ig Data 14. Graph Databases pinkyone / 123RF Stock Photo tovovan / 123RF Stock Photo 1 Why graph databases? 2 The NoSQL paradigms foo Triple stores bar foobar Key-value stores Column stores

More information

Creating provenance supergraphs using pingbacks The Provenance Sharing Network

Creating provenance supergraphs using pingbacks The Provenance Sharing Network Creating provenance supergraphs using pingbacks The Provenance Sharing Network Nicholas J Car MODSIM 2015, 4 th December 2015 LAND & WATER Outline Supergraphs PROV-AQ Overview Pingback messages PROMS extensions

More information

Assisting IoT Projects and Developers in Designing Interoperable Semantic Web of Things Applications

Assisting IoT Projects and Developers in Designing Interoperable Semantic Web of Things Applications Assisting IoT Projects and Developers in Designing Interoperable Semantic Web of Things Applications 8th IEEE International Conference on Internet of Things (ithings 2015) 11-13 December 2015, Sydney,

More information

SWoTSuite: A Toolkit for Prototyping End-to-End Semantic Web of Things Applications

SWoTSuite: A Toolkit for Prototyping End-to-End Semantic Web of Things Applications SWoTSuite: A Toolkit for Prototyping End-to-End Semantic Web of Things Applications Pankesh Patel*, Amelie Gyrard**, Soumya Kanti Datta and Muhammad Intizar Ali *ABB Corporate Research, India; **University

More information

Disruptive Changes of the Technical IT Infrastructure through Engineering 4.0

Disruptive Changes of the Technical IT Infrastructure through Engineering 4.0 Disruptive Changes of the Technical IT Infrastructure through Engineering 4.0 All rights reserved to Schaeffler AG, in particular in case of grant of an IP right. 17. 18.05.2017 Dr. Fabrice Mogo Nem, Schaeffler

More information

PERFORMANCE OF RDF QUERY PROCESSING ON THE INTEL SCC

PERFORMANCE OF RDF QUERY PROCESSING ON THE INTEL SCC MARC Symposium at ONERA'2012 1 PERFORMANCE OF RDF QUERY PROCESSING ON THE INTEL SCC Vasil Slavov, Praveen Rao, Dinesh Barenkala, Srivenu Paturi Department of Computer Science & Electrical Engineering University

More information

Anytime Query Answering in RDF through Evolutionary Algorithms

Anytime Query Answering in RDF through Evolutionary Algorithms Anytime Query Answering in RDF through Evolutionary Algorithms Eyal Oren Christophe Guéret Stefan Schlobach Vrije Universiteit Amsterdam ISWC 2008 Overview Problem: query answering over large RDF graphs

More information

Version Control. Second level Third level Fourth level Fifth level. - Software Development Project. January 17, 2018

Version Control. Second level Third level Fourth level Fifth level. - Software Development Project. January 17, 2018 Version Control Click to edit Master EECS text 2311 styles - Software Development Project Second level Third level Fourth level Fifth level January 17, 2018 1 But first, Screen Readers The software you

More information

Chapter 11 - Data Replication Middleware

Chapter 11 - Data Replication Middleware Prof. Dr.-Ing. Stefan Deßloch AG Heterogene Informationssysteme Geb. 36, Raum 329 Tel. 0631/205 3275 dessloch@informatik.uni-kl.de Chapter 11 - Data Replication Middleware Motivation Replication: controlled

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2018/19 with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz January 7 th 2019 Overview What is Semantic Web? Technology

More information

SPARQL: An RDF Query Language

SPARQL: An RDF Query Language SPARQL: An RDF Query Language Wiltrud Kessler Institut für Maschinelle Sprachverarbeitung Universität Stuttgart Semantic Web Winter 2015/16 This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike

More information

Answering Aggregate Queries Over Large RDF Graphs

Answering Aggregate Queries Over Large RDF Graphs 1 Answering Aggregate Queries Over Large RDF Graphs Lei Zou, Peking University Ruizhe Huang, Peking University Lei Chen, Hong Kong University of Science and Technology M. Tamer Özsu, University of Waterloo

More information

VISO: A Shared, Formal Knowledge Base as a Foundation for Semi-automatic InfoVis Systems

VISO: A Shared, Formal Knowledge Base as a Foundation for Semi-automatic InfoVis Systems VISO: A Shared, Formal Knowledge Base as a Foundation for Semi-automatic InfoVis Systems Jan Polowinski Martin Voigt Technische Universität DresdenTechnische Universität Dresden 01062 Dresden, Germany

More information

FedX: A Federation Layer for Distributed Query Processing on Linked Open Data

FedX: A Federation Layer for Distributed Query Processing on Linked Open Data FedX: A Federation Layer for Distributed Query Processing on Linked Open Data Andreas Schwarte 1, Peter Haase 1,KatjaHose 2, Ralf Schenkel 2, and Michael Schmidt 1 1 fluid Operations AG, Walldorf, Germany

More information

Rajashree Deka Tetherless World Constellation Rensselaer Polytechnic Institute

Rajashree Deka Tetherless World Constellation Rensselaer Polytechnic Institute Rajashree Deka Tetherless World Constellation Rensselaer Polytechnic Institute Ø The majority of data underpinning the Web are stored in Relational Databases (RDB). Ø Advantages: Secure and scalable architecture.

More information

Version control CSE 403

Version control CSE 403 Version control CSE 403 Goals of a version control system Keep a history of your work Explain the purpose of each change Checkpoint specific versions (known good state) Recover specific state (fix bugs,

More information

Enabling fine-grained HTTP caching of SPARQL query results

Enabling fine-grained HTTP caching of SPARQL query results Enabling fine-grained HTTP caching of SPARQL query results Gregory Todd Williams willig4@cs.rpi.edu @kasei 1 Jesse Weaver weavej3@cs.rpi.edu @jrweave 1 Overview Motivation for (HTTP) caching SPARQL Related

More information