SlideShare a Scribd company logo
1 of 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)

More Related Content

What's hot

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
ย 
Linked data tooling XML
Linked data tooling XMLLinked data tooling XML
Linked data tooling XMLFREMEProjectH2020
ย 
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
ย 

What's hot (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
ย 

Similar to 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
ย 

Similar to 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
ย 

More from 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
ย 
KiWi - Knowledge in a Wiki
KiWi - Knowledge in a WikiKiWi - Knowledge in a Wiki
KiWi - Knowledge in a WikiSebastian 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
ย 

More from 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
ย 

Recently uploaded

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
ย 
Call Girls In Ashram Chowk Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Ashram Chowk Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”Call Girls In Ashram Chowk Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Ashram Chowk Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”soniya singh
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...SUHANI PANDEY
ย 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
ย 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls DubaiEscorts Call Girls
ย 
Call Girls In Pratap Nagar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Pratap Nagar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”Call Girls In Pratap Nagar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Pratap Nagar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”soniya singh
ย 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...SUHANI PANDEY
ย 
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
ย 
VVVIP Call Girls In Connaught Place โžก๏ธ Delhi โžก๏ธ 9999965857 ๐Ÿš€ No Advance 24HRS...
VVVIP Call Girls In Connaught Place โžก๏ธ Delhi โžก๏ธ 9999965857 ๐Ÿš€ No Advance 24HRS...VVVIP Call Girls In Connaught Place โžก๏ธ Delhi โžก๏ธ 9999965857 ๐Ÿš€ No Advance 24HRS...
VVVIP Call Girls In Connaught Place โžก๏ธ Delhi โžก๏ธ 9999965857 ๐Ÿš€ No Advance 24HRS...Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
ย 
Enjoy NightโšกCall Girls Dlf City Phase 3 Gurgaon >เผ’8448380779 Escort Service
Enjoy NightโšกCall Girls Dlf City Phase 3 Gurgaon >เผ’8448380779 Escort ServiceEnjoy NightโšกCall Girls Dlf City Phase 3 Gurgaon >เผ’8448380779 Escort Service
Enjoy NightโšกCall Girls Dlf City Phase 3 Gurgaon >เผ’8448380779 Escort ServiceDelhi Call girls
ย 
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort ServiceBusty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort ServiceDelhi Call girls
ย 
Call Girls In Sukhdev Vihar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Sukhdev Vihar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”Call Girls In Sukhdev Vihar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Sukhdev Vihar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”soniya singh
ย 
'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
ย 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
ย 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...SUHANI PANDEY
ย 
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
ย 
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
ย 

Recently uploaded (20)

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
ย 
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
ย 
Call Girls In Ashram Chowk Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Ashram Chowk Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”Call Girls In Ashram Chowk Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Ashram Chowk Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
ย 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
ย 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
ย 
Call Girls In Pratap Nagar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Pratap Nagar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”Call Girls In Pratap Nagar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Pratap Nagar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
ย 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
ย 
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
ย 
VVVIP Call Girls In Connaught Place โžก๏ธ Delhi โžก๏ธ 9999965857 ๐Ÿš€ No Advance 24HRS...
VVVIP Call Girls In Connaught Place โžก๏ธ Delhi โžก๏ธ 9999965857 ๐Ÿš€ No Advance 24HRS...VVVIP Call Girls In Connaught Place โžก๏ธ Delhi โžก๏ธ 9999965857 ๐Ÿš€ No Advance 24HRS...
VVVIP Call Girls In Connaught Place โžก๏ธ Delhi โžก๏ธ 9999965857 ๐Ÿš€ No Advance 24HRS...
ย 
Enjoy NightโšกCall Girls Dlf City Phase 3 Gurgaon >เผ’8448380779 Escort Service
Enjoy NightโšกCall Girls Dlf City Phase 3 Gurgaon >เผ’8448380779 Escort ServiceEnjoy NightโšกCall Girls Dlf City Phase 3 Gurgaon >เผ’8448380779 Escort Service
Enjoy NightโšกCall Girls Dlf City Phase 3 Gurgaon >เผ’8448380779 Escort Service
ย 
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
ย 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
ย 
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort ServiceBusty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
ย 
Call Girls In Sukhdev Vihar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Sukhdev Vihar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”Call Girls In Sukhdev Vihar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
Call Girls In Sukhdev Vihar Delhi ๐Ÿ’ฏCall Us ๐Ÿ”8264348440๐Ÿ”
ย 
'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...
ย 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
ย 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
ย 
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...
ย 
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)
ย 

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)