SlideShare uma empresa Scribd logo
1 de 36
Apache Marmotta: 
Introduction 
Sebastian Schaffert
Who Am I 
Dr. Sebastian Schaffert 
Senior Researcher at Salzburg Research 
Chief Technology Officer at Redlink GmbH 
Committer at Apache Software Foundation 
… and starting 12/2014 Software Engineering Manager (SRE) @ Google 
sschaffert@apache.org 
http://linkedin.com/in/sebastianschaffert 
http://www.schaffert.eu
Agenda 
● Introduction to Apache Marmotta (Sebastian) 
– Overview 
– Installation 
– Development 
● Linked Data Platform (Sergio & Jakob) 
– Overview 
– Practical Usage 
● Semantic Media Management (Thomas) 
– Media Use Case 
– SPARQL-MM
Overview
What is Apache Marmotta? 
● Linked Data Server 
(implements Content Negotiation and LDP) 
● SPARQL Server 
(public SPARQL 1.1 query and update endpoint) 
● Linked Data Development Environment 
(collection of modules and libraries for building 
custom Linked Data applications) 
● Community of Open Source Linked Data 
Developers 
… all under business friendly Apache Open Source licence
Linked Data Server 
● easily offer your data as Linked Data on 
the Web 
● human-readable and machine-readable 
read-write data access based on HTTP 
content negotiation 
● reference implementation of the Linked 
Data Platform (see next presentation block)
SPARQL Server 
● full support of SPARQL 1.1 through HTTP 
web services 
● SPARQL 1.1 query and update endpoints 
● implements the SPARQL 1.1 protocol 
( supports any standard SPARQL clients) 
● fast native implementation of SPARQL in 
KiWi triple store 
● lightweight Squebi SPARQL explorer UI
Linked Data Development 
● modular server architecture allows 
combining exactly those functionalities 
needed for a use case 
(no need for reasoning? exclude reasoner ...) 
● collection of independent libraries for 
common Linked Data problems 
– access Linked Data resources (and even 
some that are not Linked Data) 
– simplified Linked Data query language 
(LDPath) 
– use only the triple store without the server
Community of Developers 
● discuss with people interested in getting-things- 
done in the Linked Data world 
● build applications that are useful without 
reimplementing the whole stack 
● thorough software engineering process 
under the roof of the Apache Software 
Foundation
Installation / Setup 
(we help you) 
https://github.com/wikier/apache-marmotta-tutorial-iswc2014
Sample Project 
● Requirements: 
– JDK 7/8 (https://java.com/de/download/) 
– Maven 3.x (http://maven.apache.org) 
– git (http://git-scm.com/) 
– curl (http://curl.haxx.se/) 
https://github.com/wikier/apache-marmotta-tutorial-iswc2014
Sample Project 
$ git clone git@github.com:wikier/apache-marmotta-tutorial-iswc2014.git 
$ cd apache-marmotta-tutorial-iswc2014 
$ mvn clean tomcat7:run 
… then point browser to http://localhost:8080 
https://github.com/wikier/apache-marmotta-tutorial-iswc2014
Apache Marmotta Platform
Apache Marmotta Platform 
● implemented as Java web application 
(deployed as marmotta.war file) 
● service oriented architecture using CDI 
(Java EE 6) 
● REST web services using JAX-RS 
(RestEasy) 
● CDI services found on classpath are 
automatically added to system
Architecture
Marmotta Core (required) 
● core platform functionalities: 
– Linked Data access 
– RDF import and export 
– Admin UI 
● platform glue code: 
– service and dependency injection 
– triple store 
– system configuration 
– logging
Marmotta Backends (one required) 
● choice of different triple store backends 
● KiWi (Marmotta Default) 
– based on relational database (PostgreSQL, MySQL, 
H2) 
– highly scalable 
● Sesame Native 
– based on Sesame Native RDF backend 
● BigData 
– based on BigData clustered triple store 
● Titan 
– based on Titan graph database (backed by HBase, 
Cassandra, or BerkeleyDB)
Marmotta SPARQL (optional) 
● SPARQL HTTP endpoint 
– supports SPARQL 1.1 protocol 
– query: …/sparql/select 
– update: …/sparql/update 
● SPARQL explorer UI (Squebi)
Marmotta LDCache (optional) 
● transparently access Linked Data 
resources from other servers as if they 
were local 
● support for wrapping some legacy data 
sources (e.g. Facebook Graph) 
● local triple cache, honors HTTP expiry and 
cache headers 
Note: 
SPARQL does NOT work well with LDCache, 
use LDPath instead!
Marmotta LDPath (optional) 
● query language specifically designed for 
querying the Linked Data Cloud 
● regular path based navigation starting at a 
resource and then following links 
● limited expressivity (compared to SPARQL) 
but full Linked Data support 
@prefix local: <http://localhost:8080/resource/> ; 
@prefix foaf: <http://xmlns.com/foaf/0.1/>; 
@prefix mao: <http://www.w3.org/ns/ma-ont#>; 
likes = local:likes / 
(foaf:primaryTopic / mao:title | foaf:name) 
:: xsd:string;
Marmotta Reasoner (optional) 
● implementation of rule-based sKWRL 
reasoner 
● Datalog-style rules over RDF triples, 
evaluated in forward-chaining procedure 
@prefix skos: <http://www.w3.org/2004/02/skos/core#> 
($1 skos:broaderTransitive $2) -> ($1 skos:broader $2) 
($1 skos:narrowerTransitive $2) -> ($1 skos:narrower $2) 
($1 skos:broaderTransitive $2), ($2 skos:broaderTransitive $3) 
-> ($1 skos:broaderTransitive $3) 
($1 skos:narrowerTransitive $2), ($2 skos:narrowerTransitive $3) 
-> ($1 skos:narrowerTransitive $3) 
($1 skos:broader $2) -> ($2 skos:narrower $1) 
($1 skos:narrower $2) -> ($2 skos:broader $1) 
($1 skos:broader $2) -> ($1 skos:related $2) 
($1 skos:narrower $2) -> ($1 skos:related $2) 
($1 skos:related $2) -> ($2 skos:related $1)
Marmotta Versioning (optional) 
● transaction-based versioning of all changes 
to the triple store 
● implementation of Memento protocol for 
exploring changes over time 
● snapshot/wayback functionality (i.e. 
possibility to query the state of the triple 
store at a given time in history)
Apache Marmotta Walkthrough 
(Demo)
Apache Marmotta Libraries
Apache Marmotta Libraries 
● provide implementations for common 
Linked Data problems (e.g. accessing 
resources) 
● standalone lightweight Java libraries that 
can be used outside the Marmotta platform
LDClient 
● library for accessing and retrieving Linked 
Data resources 
● includes all the standard code written again 
and again (HTTP retrieval, content 
negotiation, ...) 
● extensible (Java ServiceLoader) with 
custom wrappers for legacy data sources 
(included are RDF, RDFa, Facebook, Youtube, 
Freebase, Wikipedia, as well as base classes for 
mapping other formats like XML and JSON)
LDCache 
● library providing local caching functionality 
for (remote) Linked Data resources 
● builds on top of LDClient, so offers the 
same extensibility 
● Sesame Sail with transparent Linked Data 
access (i.e. Sesame API for Linked Data 
Cloud)
LDPath 
● library offering a standalone 
implementation of the LDPath query 
language 
● large function library for various scenarios 
(e.g. string, math, ...) 
● can be used with LDCache and LDClient 
● can be integrated in your own applications 
● supports different backends (Sesame, 
Jena, Clerezza)
Marmotta Loader 
● command line infrastructure for bulk-loading 
RDF data in various formats to 
different triple stores 
● supports most RDF serializations, directory 
imports, split-file imports, compressed files 
(.gz, .bzip2, .xy), archives (tar, zip) 
● provides progress indicator, statistics
KiWi Triplestore
KiWi Triplestore 
● Sesame SAIL: can be plugged into any 
Sesame application 
● based on relational database (supported: 
PostgreSQL, MySQL, H2) 
● integrates easily in existing enterprise 
infrastructure (database server, backups, 
clustering, …) 
● reliable transaction management (at the 
cost of performance) 
● supports very large datasets (e.g. 
Freebase with more than 2 billion triples)
KiWi Triplestore: SPARQL 
● translation of SPARQL queries into native 
SQL 
● generally very good performance for typical 
queries, even on big datasets 
● query performance can be optimized by 
proper index and memory configuration in 
the database 
● almost complete support for SPARQL 1.1 
(except some constructs exceeding the 
expressivity of SQL and some “bugs”)
KiWi Triplestore: Reasoner 
● rule-based sKWRL reasoner (see demo 
before) 
● fast forward chaining implementation of 
rule evaluation 
● truth maintenance for easy deletes/updates 
● future: might be implemented as stored 
procedures in database
KiWi Triplestore: Clustering 
● cluster-wide caching and synchronization 
based on Hazelcast or Infinispan 
● useful for load balancing of several 
instances of the same application (e.g. 
Marmotta Platform)
KiWi Triplestore: Versioning 
● transaction-based versioning of triple 
updates 
● undo transactions (applied in reverse 
order) 
● get a Sesame repository connection 
visiting any time of the triple store history
Thank You! 
Sebastian Schaffert 
sschaffert@apache.org 
supported by the European 
Commission FP7 project MICO 
(grant no. 610480)

Mais conteúdo relacionado

Mais procurados

Slides semantic web and Drupal 7 NYCCamp 2012
Slides semantic web and Drupal 7 NYCCamp 2012Slides semantic web and Drupal 7 NYCCamp 2012
Slides semantic web and Drupal 7 NYCCamp 2012scorlosquet
 
Geospatial querying in Apache Marmotta - ApacheCon Big Data Europe 2015
Geospatial querying in Apache Marmotta - ApacheCon Big Data Europe 2015Geospatial querying in Apache Marmotta - ApacheCon Big Data Europe 2015
Geospatial querying in Apache Marmotta - ApacheCon Big Data Europe 2015Sergio Fernández
 
The Semantic Web and Drupal 7 - Loja 2013
The Semantic Web and Drupal 7 - Loja 2013The Semantic Web and Drupal 7 - Loja 2013
The Semantic Web and Drupal 7 - Loja 2013scorlosquet
 
Adventures in Linked Data Land (presentation by Richard Light)
Adventures in Linked Data Land (presentation by Richard Light)Adventures in Linked Data Land (presentation by Richard Light)
Adventures in Linked Data Land (presentation by Richard Light)jottevanger
 
Customizing CKAN
Customizing CKANCustomizing CKAN
Customizing CKANOKCon2013
 
Towards a Commons RDF Library - ApacheCon Europe 2014
Towards a Commons RDF Library - ApacheCon Europe 2014Towards a Commons RDF Library - ApacheCon Europe 2014
Towards a Commons RDF Library - ApacheCon Europe 2014Sergio Fernández
 
Eclipse RDF4J - Working with RDF in Java
Eclipse RDF4J - Working with RDF in JavaEclipse RDF4J - Working with RDF in Java
Eclipse RDF4J - Working with RDF in JavaJeen Broekstra
 
Ckan tutorial odw2013 131109
Ckan tutorial odw2013 131109Ckan tutorial odw2013 131109
Ckan tutorial odw2013 131109Chengjen Lee
 
Publishing Linked Data 3/5 Semtech2011
Publishing Linked Data 3/5 Semtech2011Publishing Linked Data 3/5 Semtech2011
Publishing Linked Data 3/5 Semtech2011Juan Sequeda
 
ckan 2.0 Introduction (20140522 updated)
ckan 2.0 Introduction  (20140522 updated)ckan 2.0 Introduction  (20140522 updated)
ckan 2.0 Introduction (20140522 updated)Chengjen Lee
 
ckan 2.0 Introduction (20140618 updated)
ckan 2.0 Introduction (20140618 updated)ckan 2.0 Introduction (20140618 updated)
ckan 2.0 Introduction (20140618 updated)Chengjen Lee
 
Virtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OO
Virtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OOVirtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OO
Virtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OOPaolo Cristofaro
 
Drupal 7 and RDF
Drupal 7 and RDFDrupal 7 and RDF
Drupal 7 and RDFscorlosquet
 
Integrating Drupal with a Triple Store
Integrating Drupal with a Triple StoreIntegrating Drupal with a Triple Store
Integrating Drupal with a Triple StoreBarry Norton
 
Linked Data, Ontologies and Inference
Linked Data, Ontologies and InferenceLinked Data, Ontologies and Inference
Linked Data, Ontologies and InferenceBarry Norton
 
Semantics, rdf and drupal
Semantics, rdf and drupalSemantics, rdf and drupal
Semantics, rdf and drupalGokul Nk
 
EUDAT data architecture and interoperability aspects – Daan Broeder
EUDAT data architecture and interoperability aspects – Daan BroederEUDAT data architecture and interoperability aspects – Daan Broeder
EUDAT data architecture and interoperability aspects – Daan BroederOpenAIRE
 

Mais procurados (20)

Slides semantic web and Drupal 7 NYCCamp 2012
Slides semantic web and Drupal 7 NYCCamp 2012Slides semantic web and Drupal 7 NYCCamp 2012
Slides semantic web and Drupal 7 NYCCamp 2012
 
Geospatial querying in Apache Marmotta - ApacheCon Big Data Europe 2015
Geospatial querying in Apache Marmotta - ApacheCon Big Data Europe 2015Geospatial querying in Apache Marmotta - ApacheCon Big Data Europe 2015
Geospatial querying in Apache Marmotta - ApacheCon Big Data Europe 2015
 
The Semantic Web and Drupal 7 - Loja 2013
The Semantic Web and Drupal 7 - Loja 2013The Semantic Web and Drupal 7 - Loja 2013
The Semantic Web and Drupal 7 - Loja 2013
 
Adventures in Linked Data Land (presentation by Richard Light)
Adventures in Linked Data Land (presentation by Richard Light)Adventures in Linked Data Land (presentation by Richard Light)
Adventures in Linked Data Land (presentation by Richard Light)
 
Customizing CKAN
Customizing CKANCustomizing CKAN
Customizing CKAN
 
Towards a Commons RDF Library - ApacheCon Europe 2014
Towards a Commons RDF Library - ApacheCon Europe 2014Towards a Commons RDF Library - ApacheCon Europe 2014
Towards a Commons RDF Library - ApacheCon Europe 2014
 
D2RQ
D2RQD2RQ
D2RQ
 
Eclipse RDF4J - Working with RDF in Java
Eclipse RDF4J - Working with RDF in JavaEclipse RDF4J - Working with RDF in Java
Eclipse RDF4J - Working with RDF in Java
 
Ckan tutorial odw2013 131109
Ckan tutorial odw2013 131109Ckan tutorial odw2013 131109
Ckan tutorial odw2013 131109
 
Publishing Linked Data 3/5 Semtech2011
Publishing Linked Data 3/5 Semtech2011Publishing Linked Data 3/5 Semtech2011
Publishing Linked Data 3/5 Semtech2011
 
CKAN as an open-source data management solution for open data
CKAN as an open-source data management solution for open data CKAN as an open-source data management solution for open data
CKAN as an open-source data management solution for open data
 
ckan 2.0 Introduction (20140522 updated)
ckan 2.0 Introduction  (20140522 updated)ckan 2.0 Introduction  (20140522 updated)
ckan 2.0 Introduction (20140522 updated)
 
ckan 2.0 Introduction (20140618 updated)
ckan 2.0 Introduction (20140618 updated)ckan 2.0 Introduction (20140618 updated)
ckan 2.0 Introduction (20140618 updated)
 
Virtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OO
Virtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OOVirtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OO
Virtuoso RDF Triple Store Analysis Benchmark & mapping tools RDF / OO
 
Drupal 7 and RDF
Drupal 7 and RDFDrupal 7 and RDF
Drupal 7 and RDF
 
Linked data tooling XML
Linked data tooling XMLLinked data tooling XML
Linked data tooling XML
 
Integrating Drupal with a Triple Store
Integrating Drupal with a Triple StoreIntegrating Drupal with a Triple Store
Integrating Drupal with a Triple Store
 
Linked Data, Ontologies and Inference
Linked Data, Ontologies and InferenceLinked Data, Ontologies and Inference
Linked Data, Ontologies and Inference
 
Semantics, rdf and drupal
Semantics, rdf and drupalSemantics, rdf and drupal
Semantics, rdf and drupal
 
EUDAT data architecture and interoperability aspects – Daan Broeder
EUDAT data architecture and interoperability aspects – Daan BroederEUDAT data architecture and interoperability aspects – Daan Broeder
EUDAT data architecture and interoperability aspects – Daan Broeder
 

Semelhante a Apache Marmotta - Introduction

Real time Analytics with Apache Kafka and Apache Spark
Real time Analytics with Apache Kafka and Apache SparkReal time Analytics with Apache Kafka and Apache Spark
Real time Analytics with Apache Kafka and Apache SparkRahul Jain
 
dotNetRDF - A Semantic Web/RDF Library for .Net Developers
dotNetRDF - A Semantic Web/RDF Library for .Net DevelopersdotNetRDF - A Semantic Web/RDF Library for .Net Developers
dotNetRDF - A Semantic Web/RDF Library for .Net DevelopersRob Vesse
 
Intro to Apache Spark by CTO of Twingo
Intro to Apache Spark by CTO of TwingoIntro to Apache Spark by CTO of Twingo
Intro to Apache Spark by CTO of TwingoMapR Technologies
 
Introduction to Apache Spark :: Lagos Scala Meetup session 2
Introduction to Apache Spark :: Lagos Scala Meetup session 2 Introduction to Apache Spark :: Lagos Scala Meetup session 2
Introduction to Apache Spark :: Lagos Scala Meetup session 2 Olalekan Fuad Elesin
 
Data processing at the speed of 100 Gbps@Apache Crail (Incubating)
Data processing at the speed of 100 Gbps@Apache Crail (Incubating)Data processing at the speed of 100 Gbps@Apache Crail (Incubating)
Data processing at the speed of 100 Gbps@Apache Crail (Incubating)DataWorks Summit
 
Hadoop and object stores can we do it better
Hadoop and object stores  can we do it betterHadoop and object stores  can we do it better
Hadoop and object stores can we do it bettergvernik
 
Hadoop and object stores: Can we do it better?
Hadoop and object stores: Can we do it better?Hadoop and object stores: Can we do it better?
Hadoop and object stores: Can we do it better?gvernik
 
Etu Solution Day 2014 Track-D: 掌握Impala和Spark
Etu Solution Day 2014 Track-D: 掌握Impala和SparkEtu Solution Day 2014 Track-D: 掌握Impala和Spark
Etu Solution Day 2014 Track-D: 掌握Impala和SparkJames Chen
 
Apache Spark Introduction @ University College London
Apache Spark Introduction @ University College LondonApache Spark Introduction @ University College London
Apache Spark Introduction @ University College LondonVitthal Gogate
 
In Memory Analytics with Apache Spark
In Memory Analytics with Apache SparkIn Memory Analytics with Apache Spark
In Memory Analytics with Apache SparkVenkata Naga Ravi
 
Lightening Fast Big Data Analytics using Apache Spark
Lightening Fast Big Data Analytics using Apache SparkLightening Fast Big Data Analytics using Apache Spark
Lightening Fast Big Data Analytics using Apache SparkManish Gupta
 
AWS (Hadoop) Meetup 30.04.09
AWS (Hadoop) Meetup 30.04.09AWS (Hadoop) Meetup 30.04.09
AWS (Hadoop) Meetup 30.04.09Chris Purrington
 
Java One 2017: Open Source Big Data in the Cloud: Hadoop, M/R, Hive, Spark an...
Java One 2017: Open Source Big Data in the Cloud: Hadoop, M/R, Hive, Spark an...Java One 2017: Open Source Big Data in the Cloud: Hadoop, M/R, Hive, Spark an...
Java One 2017: Open Source Big Data in the Cloud: Hadoop, M/R, Hive, Spark an...Frank Munz
 
Apache Spark 101 - Demi Ben-Ari
Apache Spark 101 - Demi Ben-AriApache Spark 101 - Demi Ben-Ari
Apache Spark 101 - Demi Ben-AriDemi Ben-Ari
 
Stream your Operational Data with Apache Spark & Kafka into Hadoop using Couc...
Stream your Operational Data with Apache Spark & Kafka into Hadoop using Couc...Stream your Operational Data with Apache Spark & Kafka into Hadoop using Couc...
Stream your Operational Data with Apache Spark & Kafka into Hadoop using Couc...Data Con LA
 
Near Real Time Indexing Kafka Messages into Apache Blur: Presented by Dibyend...
Near Real Time Indexing Kafka Messages into Apache Blur: Presented by Dibyend...Near Real Time Indexing Kafka Messages into Apache Blur: Presented by Dibyend...
Near Real Time Indexing Kafka Messages into Apache Blur: Presented by Dibyend...Lucidworks
 
Michael stack -the state of apache h base
Michael stack -the state of apache h baseMichael stack -the state of apache h base
Michael stack -the state of apache h basehdhappy001
 
Spark (Structured) Streaming vs. Kafka Streams - two stream processing platfo...
Spark (Structured) Streaming vs. Kafka Streams - two stream processing platfo...Spark (Structured) Streaming vs. Kafka Streams - two stream processing platfo...
Spark (Structured) Streaming vs. Kafka Streams - two stream processing platfo...Guido Schmutz
 
Hoodie - DataEngConf 2017
Hoodie - DataEngConf 2017Hoodie - DataEngConf 2017
Hoodie - DataEngConf 2017Vinoth Chandar
 
DEVNET-1106 Upcoming Services in OpenStack
DEVNET-1106	Upcoming Services in OpenStackDEVNET-1106	Upcoming Services in OpenStack
DEVNET-1106 Upcoming Services in OpenStackCisco DevNet
 

Semelhante a Apache Marmotta - Introduction (20)

Real time Analytics with Apache Kafka and Apache Spark
Real time Analytics with Apache Kafka and Apache SparkReal time Analytics with Apache Kafka and Apache Spark
Real time Analytics with Apache Kafka and Apache Spark
 
dotNetRDF - A Semantic Web/RDF Library for .Net Developers
dotNetRDF - A Semantic Web/RDF Library for .Net DevelopersdotNetRDF - A Semantic Web/RDF Library for .Net Developers
dotNetRDF - A Semantic Web/RDF Library for .Net Developers
 
Intro to Apache Spark by CTO of Twingo
Intro to Apache Spark by CTO of TwingoIntro to Apache Spark by CTO of Twingo
Intro to Apache Spark by CTO of Twingo
 
Introduction to Apache Spark :: Lagos Scala Meetup session 2
Introduction to Apache Spark :: Lagos Scala Meetup session 2 Introduction to Apache Spark :: Lagos Scala Meetup session 2
Introduction to Apache Spark :: Lagos Scala Meetup session 2
 
Data processing at the speed of 100 Gbps@Apache Crail (Incubating)
Data processing at the speed of 100 Gbps@Apache Crail (Incubating)Data processing at the speed of 100 Gbps@Apache Crail (Incubating)
Data processing at the speed of 100 Gbps@Apache Crail (Incubating)
 
Hadoop and object stores can we do it better
Hadoop and object stores  can we do it betterHadoop and object stores  can we do it better
Hadoop and object stores can we do it better
 
Hadoop and object stores: Can we do it better?
Hadoop and object stores: Can we do it better?Hadoop and object stores: Can we do it better?
Hadoop and object stores: Can we do it better?
 
Etu Solution Day 2014 Track-D: 掌握Impala和Spark
Etu Solution Day 2014 Track-D: 掌握Impala和SparkEtu Solution Day 2014 Track-D: 掌握Impala和Spark
Etu Solution Day 2014 Track-D: 掌握Impala和Spark
 
Apache Spark Introduction @ University College London
Apache Spark Introduction @ University College LondonApache Spark Introduction @ University College London
Apache Spark Introduction @ University College London
 
In Memory Analytics with Apache Spark
In Memory Analytics with Apache SparkIn Memory Analytics with Apache Spark
In Memory Analytics with Apache Spark
 
Lightening Fast Big Data Analytics using Apache Spark
Lightening Fast Big Data Analytics using Apache SparkLightening Fast Big Data Analytics using Apache Spark
Lightening Fast Big Data Analytics using Apache Spark
 
AWS (Hadoop) Meetup 30.04.09
AWS (Hadoop) Meetup 30.04.09AWS (Hadoop) Meetup 30.04.09
AWS (Hadoop) Meetup 30.04.09
 
Java One 2017: Open Source Big Data in the Cloud: Hadoop, M/R, Hive, Spark an...
Java One 2017: Open Source Big Data in the Cloud: Hadoop, M/R, Hive, Spark an...Java One 2017: Open Source Big Data in the Cloud: Hadoop, M/R, Hive, Spark an...
Java One 2017: Open Source Big Data in the Cloud: Hadoop, M/R, Hive, Spark an...
 
Apache Spark 101 - Demi Ben-Ari
Apache Spark 101 - Demi Ben-AriApache Spark 101 - Demi Ben-Ari
Apache Spark 101 - Demi Ben-Ari
 
Stream your Operational Data with Apache Spark & Kafka into Hadoop using Couc...
Stream your Operational Data with Apache Spark & Kafka into Hadoop using Couc...Stream your Operational Data with Apache Spark & Kafka into Hadoop using Couc...
Stream your Operational Data with Apache Spark & Kafka into Hadoop using Couc...
 
Near Real Time Indexing Kafka Messages into Apache Blur: Presented by Dibyend...
Near Real Time Indexing Kafka Messages into Apache Blur: Presented by Dibyend...Near Real Time Indexing Kafka Messages into Apache Blur: Presented by Dibyend...
Near Real Time Indexing Kafka Messages into Apache Blur: Presented by Dibyend...
 
Michael stack -the state of apache h base
Michael stack -the state of apache h baseMichael stack -the state of apache h base
Michael stack -the state of apache h base
 
Spark (Structured) Streaming vs. Kafka Streams - two stream processing platfo...
Spark (Structured) Streaming vs. Kafka Streams - two stream processing platfo...Spark (Structured) Streaming vs. Kafka Streams - two stream processing platfo...
Spark (Structured) Streaming vs. Kafka Streams - two stream processing platfo...
 
Hoodie - DataEngConf 2017
Hoodie - DataEngConf 2017Hoodie - DataEngConf 2017
Hoodie - DataEngConf 2017
 
DEVNET-1106 Upcoming Services in OpenStack
DEVNET-1106	Upcoming Services in OpenStackDEVNET-1106	Upcoming Services in OpenStack
DEVNET-1106 Upcoming Services in OpenStack
 

Mais de Sebastian Schaffert

Knowledge and Media Technologies at Salzburg Research
Knowledge and Media Technologies at Salzburg ResearchKnowledge and Media Technologies at Salzburg Research
Knowledge and Media Technologies at Salzburg ResearchSebastian Schaffert
 
KiWi - a platform for Semantic Social Software
KiWi - a platform for Semantic Social SoftwareKiWi - a platform for Semantic Social Software
KiWi - a platform for Semantic Social SoftwareSebastian Schaffert
 
Semantic Search for Media Portals
Semantic Search for Media PortalsSemantic Search for Media Portals
Semantic Search for Media PortalsSebastian Schaffert
 
Social Software und Web 2.0: Semantic Wikis, Social Tagging und eLearning 2.0
Social Software und Web 2.0: Semantic Wikis, Social Tagging und eLearning 2.0Social Software und Web 2.0: Semantic Wikis, Social Tagging und eLearning 2.0
Social Software und Web 2.0: Semantic Wikis, Social Tagging und eLearning 2.0Sebastian Schaffert
 

Mais de Sebastian Schaffert (7)

Knowledge and Media Technologies at Salzburg Research
Knowledge and Media Technologies at Salzburg ResearchKnowledge and Media Technologies at Salzburg Research
Knowledge and Media Technologies at Salzburg Research
 
KiWi - a platform for Semantic Social Software
KiWi - a platform for Semantic Social SoftwareKiWi - a platform for Semantic Social Software
KiWi - a platform for Semantic Social Software
 
Semantic Search for Media Portals
Semantic Search for Media PortalsSemantic Search for Media Portals
Semantic Search for Media Portals
 
KiWi - Knowledge in a Wiki
KiWi - Knowledge in a WikiKiWi - Knowledge in a Wiki
KiWi - Knowledge in a Wiki
 
IkeWiki Tutorial
IkeWiki TutorialIkeWiki Tutorial
IkeWiki Tutorial
 
The KiWi Vision
The KiWi VisionThe KiWi Vision
The KiWi Vision
 
Social Software und Web 2.0: Semantic Wikis, Social Tagging und eLearning 2.0
Social Software und Web 2.0: Semantic Wikis, Social Tagging und eLearning 2.0Social Software und Web 2.0: Semantic Wikis, Social Tagging und eLearning 2.0
Social Software und Web 2.0: Semantic Wikis, Social Tagging und eLearning 2.0
 

Último

WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...SofiyaSharma5
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girladitipandeya
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableSeo
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.soniya singh
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.soniya singh
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...singhpriety023
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445ruhi
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Delhi Call girls
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...Escorts Call Girls
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 

Último (20)

WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 

Apache Marmotta - Introduction

  • 1. Apache Marmotta: Introduction Sebastian Schaffert
  • 2. Who Am I Dr. Sebastian Schaffert Senior Researcher at Salzburg Research Chief Technology Officer at Redlink GmbH Committer at Apache Software Foundation … and starting 12/2014 Software Engineering Manager (SRE) @ Google sschaffert@apache.org http://linkedin.com/in/sebastianschaffert http://www.schaffert.eu
  • 3. Agenda ● Introduction to Apache Marmotta (Sebastian) – Overview – Installation – Development ● Linked Data Platform (Sergio & Jakob) – Overview – Practical Usage ● Semantic Media Management (Thomas) – Media Use Case – SPARQL-MM
  • 5. What is Apache Marmotta? ● Linked Data Server (implements Content Negotiation and LDP) ● SPARQL Server (public SPARQL 1.1 query and update endpoint) ● Linked Data Development Environment (collection of modules and libraries for building custom Linked Data applications) ● Community of Open Source Linked Data Developers … all under business friendly Apache Open Source licence
  • 6. Linked Data Server ● easily offer your data as Linked Data on the Web ● human-readable and machine-readable read-write data access based on HTTP content negotiation ● reference implementation of the Linked Data Platform (see next presentation block)
  • 7. SPARQL Server ● full support of SPARQL 1.1 through HTTP web services ● SPARQL 1.1 query and update endpoints ● implements the SPARQL 1.1 protocol ( supports any standard SPARQL clients) ● fast native implementation of SPARQL in KiWi triple store ● lightweight Squebi SPARQL explorer UI
  • 8. Linked Data Development ● modular server architecture allows combining exactly those functionalities needed for a use case (no need for reasoning? exclude reasoner ...) ● collection of independent libraries for common Linked Data problems – access Linked Data resources (and even some that are not Linked Data) – simplified Linked Data query language (LDPath) – use only the triple store without the server
  • 9. Community of Developers ● discuss with people interested in getting-things- done in the Linked Data world ● build applications that are useful without reimplementing the whole stack ● thorough software engineering process under the roof of the Apache Software Foundation
  • 10. Installation / Setup (we help you) https://github.com/wikier/apache-marmotta-tutorial-iswc2014
  • 11. Sample Project ● Requirements: – JDK 7/8 (https://java.com/de/download/) – Maven 3.x (http://maven.apache.org) – git (http://git-scm.com/) – curl (http://curl.haxx.se/) https://github.com/wikier/apache-marmotta-tutorial-iswc2014
  • 12. Sample Project $ git clone git@github.com:wikier/apache-marmotta-tutorial-iswc2014.git $ cd apache-marmotta-tutorial-iswc2014 $ mvn clean tomcat7:run … then point browser to http://localhost:8080 https://github.com/wikier/apache-marmotta-tutorial-iswc2014
  • 14. Apache Marmotta Platform ● implemented as Java web application (deployed as marmotta.war file) ● service oriented architecture using CDI (Java EE 6) ● REST web services using JAX-RS (RestEasy) ● CDI services found on classpath are automatically added to system
  • 16. Marmotta Core (required) ● core platform functionalities: – Linked Data access – RDF import and export – Admin UI ● platform glue code: – service and dependency injection – triple store – system configuration – logging
  • 17. Marmotta Backends (one required) ● choice of different triple store backends ● KiWi (Marmotta Default) – based on relational database (PostgreSQL, MySQL, H2) – highly scalable ● Sesame Native – based on Sesame Native RDF backend ● BigData – based on BigData clustered triple store ● Titan – based on Titan graph database (backed by HBase, Cassandra, or BerkeleyDB)
  • 18. Marmotta SPARQL (optional) ● SPARQL HTTP endpoint – supports SPARQL 1.1 protocol – query: …/sparql/select – update: …/sparql/update ● SPARQL explorer UI (Squebi)
  • 19. Marmotta LDCache (optional) ● transparently access Linked Data resources from other servers as if they were local ● support for wrapping some legacy data sources (e.g. Facebook Graph) ● local triple cache, honors HTTP expiry and cache headers Note: SPARQL does NOT work well with LDCache, use LDPath instead!
  • 20. Marmotta LDPath (optional) ● query language specifically designed for querying the Linked Data Cloud ● regular path based navigation starting at a resource and then following links ● limited expressivity (compared to SPARQL) but full Linked Data support @prefix local: <http://localhost:8080/resource/> ; @prefix foaf: <http://xmlns.com/foaf/0.1/>; @prefix mao: <http://www.w3.org/ns/ma-ont#>; likes = local:likes / (foaf:primaryTopic / mao:title | foaf:name) :: xsd:string;
  • 21. Marmotta Reasoner (optional) ● implementation of rule-based sKWRL reasoner ● Datalog-style rules over RDF triples, evaluated in forward-chaining procedure @prefix skos: <http://www.w3.org/2004/02/skos/core#> ($1 skos:broaderTransitive $2) -> ($1 skos:broader $2) ($1 skos:narrowerTransitive $2) -> ($1 skos:narrower $2) ($1 skos:broaderTransitive $2), ($2 skos:broaderTransitive $3) -> ($1 skos:broaderTransitive $3) ($1 skos:narrowerTransitive $2), ($2 skos:narrowerTransitive $3) -> ($1 skos:narrowerTransitive $3) ($1 skos:broader $2) -> ($2 skos:narrower $1) ($1 skos:narrower $2) -> ($2 skos:broader $1) ($1 skos:broader $2) -> ($1 skos:related $2) ($1 skos:narrower $2) -> ($1 skos:related $2) ($1 skos:related $2) -> ($2 skos:related $1)
  • 22. Marmotta Versioning (optional) ● transaction-based versioning of all changes to the triple store ● implementation of Memento protocol for exploring changes over time ● snapshot/wayback functionality (i.e. possibility to query the state of the triple store at a given time in history)
  • 25. Apache Marmotta Libraries ● provide implementations for common Linked Data problems (e.g. accessing resources) ● standalone lightweight Java libraries that can be used outside the Marmotta platform
  • 26. LDClient ● library for accessing and retrieving Linked Data resources ● includes all the standard code written again and again (HTTP retrieval, content negotiation, ...) ● extensible (Java ServiceLoader) with custom wrappers for legacy data sources (included are RDF, RDFa, Facebook, Youtube, Freebase, Wikipedia, as well as base classes for mapping other formats like XML and JSON)
  • 27. LDCache ● library providing local caching functionality for (remote) Linked Data resources ● builds on top of LDClient, so offers the same extensibility ● Sesame Sail with transparent Linked Data access (i.e. Sesame API for Linked Data Cloud)
  • 28. LDPath ● library offering a standalone implementation of the LDPath query language ● large function library for various scenarios (e.g. string, math, ...) ● can be used with LDCache and LDClient ● can be integrated in your own applications ● supports different backends (Sesame, Jena, Clerezza)
  • 29. Marmotta Loader ● command line infrastructure for bulk-loading RDF data in various formats to different triple stores ● supports most RDF serializations, directory imports, split-file imports, compressed files (.gz, .bzip2, .xy), archives (tar, zip) ● provides progress indicator, statistics
  • 31. KiWi Triplestore ● Sesame SAIL: can be plugged into any Sesame application ● based on relational database (supported: PostgreSQL, MySQL, H2) ● integrates easily in existing enterprise infrastructure (database server, backups, clustering, …) ● reliable transaction management (at the cost of performance) ● supports very large datasets (e.g. Freebase with more than 2 billion triples)
  • 32. KiWi Triplestore: SPARQL ● translation of SPARQL queries into native SQL ● generally very good performance for typical queries, even on big datasets ● query performance can be optimized by proper index and memory configuration in the database ● almost complete support for SPARQL 1.1 (except some constructs exceeding the expressivity of SQL and some “bugs”)
  • 33. KiWi Triplestore: Reasoner ● rule-based sKWRL reasoner (see demo before) ● fast forward chaining implementation of rule evaluation ● truth maintenance for easy deletes/updates ● future: might be implemented as stored procedures in database
  • 34. KiWi Triplestore: Clustering ● cluster-wide caching and synchronization based on Hazelcast or Infinispan ● useful for load balancing of several instances of the same application (e.g. Marmotta Platform)
  • 35. KiWi Triplestore: Versioning ● transaction-based versioning of triple updates ● undo transactions (applied in reverse order) ● get a Sesame repository connection visiting any time of the triple store history
  • 36. Thank You! Sebastian Schaffert sschaffert@apache.org supported by the European Commission FP7 project MICO (grant no. 610480)