SlideShare une entreprise Scribd logo
1  sur  36
Télécharger pour lire hors ligne
Stream Reasoning
For Linked Data
M. Balduini, J-P Calbimonte, O. Corcho,
D. Dell'Aglio, E. Della Valle, and J.Z. Pan
http://streamreasoning.org/sr4ld2013

RDF stream processing models
Daniele Dell’Aglio, daniele.dellaglio@polimi.it
Jean-Paul Cabilmonte, jp.calbimonte@upm.es
Share, Remix, Reuse — Legally
 This work is licensed under the Creative Commons
Attribution 3.0 Unported License.
 Your are free:
to Share — to copy, distribute and transmit the work
to Remix — to adapt the work

 Under the following conditions
Attribution — You must attribute the work by inserting
– “[source http://streamreasoning.org/sr4ld2013]” at the end of
each reused slide
– a credits slide stating
-

These slides are partially based on “Streaming Reasoning for Linked
Data 2013” by M. Balduini, J-P Calbimonte, O. Corcho, D. Dell'Aglio,
E. Della Valle, and J.Z. Pan http://streamreasoning.org/sr4ld2013

 To view a copy of this license, visit
http://creativecommons.org/licenses/by/3.0/
http://streamreasoning.org/sr4ld2013

2
Outline
 Continuous RDF model extensions
•

RDF Streams, timestamps

 Continuous extensions of SPARQL
•
•

Continuous evaluation
Additional operators

 Overview of existing systems
•
•

Implemented operators
Different evaluation approaches

http://streamreasoning.org/sr4ld2013

3
Continuous extensions of RDF
 As you know, “RDF is a standard model for data interchange on the
Web” (http://www.w3.org/RDF/)

<sub1 pred1 obj1>
<sub2 pred2 obj2>
 We want to extend RDF to model data streams
 A data stream is an (infinite) ordered sequence of data items

 A data item is a self-consumable informative unit

http://streamreasoning.org/sr4ld2013

4
Data items
 With data item we can refer to:
1. A triple

<:alice :isWith :bob>
2. A graph

<:alice :posts :p>
<:p :who :bob>

:graph1

<:p :where :redRoom>

http://streamreasoning.org/sr4ld2013

5
Data items and time
 Do we need to associate the time to data items?
•

It depends on what we want to achieve (see next!)

 If yes, how to take into account the time?
•
•
•

Time should not (but could) be part of the schema
Time should not be accessible through the query language
Time as object would require a lot of reification

 How to extend the RDF model to take into account the time?

http://streamreasoning.org/sr4ld2013

6
Application time
 A timestamp is a temporal identifier associated to a data item
 The application time is a set of one or more timestamps
associated to the data item
 Two data items can have the same application time
•

Contemporaneity

 Who does assign the application time to an event?
•

The one that generates the data stream!

http://streamreasoning.org/sr4ld2013

7
Missing application time
:alice :isWith :bob

:bob :isWith :diana

:alice :isWith :carl

S

e1

e2

:diana :isWith :carl

e3

e4

 A RDF stream without timestamp is an ordered sequence of data
items

 The order can be exploited to perform queries
•
•

Does Alice meet Bob before Carl?
Who does Carl meet first?

http://streamreasoning.org/sr4ld2013

8
Application time: one timestamp
:alice :isWith :bob
:bob :isWith :diana
:alice :isWith :carl
:diana :isWith :carl

S

e1

e2

e3

e4

1

3

6

9

t

 One timestamp: the time on which the data item occurs

 We can start to compose queries taking into account the time
•
•

How many people has Alice met in the last 5m?
Does Diana meet Bob and then Carl within 5m?

http://streamreasoning.org/sr4ld2013

9
Application time: two timestamps
:alice :isWith :bob

:bob :isWith :diana
:alice :isWith :carl
:diana :isWith :carl

e4

e2

S
e1
1

3

e3
6

9

t

 Two timestamps: the time range on which the data item is valid
(from, to]
 It is possible to write even more complex constraints:
•
•

Which are the meetings the last less than 5m?
Which are the meetings with conflicts?

http://streamreasoning.org/sr4ld2013

10
Classification of existing systems
Triple
No timestamp

Instans

One timestamp

C-SPARQL
CQELS
SPARQLstream

Two timestamps

Graph

EP-SPARQL/Etalis

http://streamreasoning.org/sr4ld2013

SLD

11
Our assumptions
:alice :isWith :bob
:bob :isWith :diana
:alice :isWith :carl
:diana :isWith :carl

S

e1

e2

e3

e4

1

3

6

9

t

 In the following we will consider the following setting
•
•
•

A RDF triple is an event
Application time: single timestamp
System time = application time

<:alice :isWith:bob>:[1]
<:alice :isWith:carl>:[3]
<:bob :isWith :diana>:[6]
...
http://streamreasoning.org/sr4ld2013

12
Let’s process the RDF streams!
 DSMS and CEP worlds suggest different techniques and approaches
to process data streams

 We focus on the CQL/STREAM model

http://streamreasoning.org/sr4ld2013

13
System time
 Stream processors can elaborate data streams exploiting the
timestamps associated to the events

 When a system receives an event, it could have the need of
associating a timestamp
•

This is the system time

 The system time is an internal value, it does not exit from the
system!
 The system time must be unique

 Can application and system time coincide?
•
•

It depends
Approximation

http://streamreasoning.org/sr4ld2013

14
RDF stream
 An RDF stream is an infinite sequence of timestamped events
(triples or graphs)

…
<eventi,ti >
<eventi+1,ti+1 >
<eventi+2,ti+2 >
…

 The (application) timestamps must be non-decreasing
ti <= ti+1

http://streamreasoning.org/sr4ld2013

15
Querying data streams
 CQL model

stream-to-relation

Streams

infinite
unbounded
bag

…
<s,τ>
…

relation-to-relation

Relations

relation-to-stream

Stream

http://streamreasoning.org/sr4ld2013

<s1>
<s2>
<s3>

finite
bag

Relation R(t)
Mapping: T  R

16
Querying RDF data streams
 CQL model

S2R Window operators

RDF
Streams

SPARQL operators

RDF
Mappings
R2S operators

Abstract query processing model

http://streamreasoning.org/sr4ld2013

17
Time-based Windows
 Who are both alice and carl meeting?

S

e1

e2

e3

1

3

6

:bob

S

e4

e5
9

t

:diana

e1

e2

e3

1

3

6

:bob

http://streamreasoning.org/sr4ld2013

e4

e5
9

Windows +
slides

t

18
R2R operators
 SPARQL operators
•
•
•
•
•

Graph pattern matching
JOIN
OPTIONAL JOIN
SELECTION
UNION
S2R Window operators

SPARQL operators

RDF
Mappings

RDF
Streams
R2S operators

http://streamreasoning.org/sr4ld2013

19
SPARQL: a quick recap

http://streamreasoning.org/sr4ld2013

20
Output: relation
 Case 1: the output is a set of timestamped mappings
a … ?b… [t1]
a … ?b…

SELECT ?a ?b …
FROM ….
WHERE ….

queries

a … ?b… [t3]
a … ?b… [t5]

RSP

CONSTRUCT {?a :prop ?b }
FROM ….
WHERE ….

a … ?b… [t7]

bindings
<… :prop … > [t1]
<… :prop … >

<… :prop … > [t3]
<… :prop … > [t5]
<… :prop … > [t7]

triples
http://streamreasoning.org/sr4ld2013

21
Output: stream
 Case 2: the output is a stream
 R2S operators
CONSTRUCT RSTREAM {?a :prop ?b }
FROM ….
WHERE ….

query

RSP

stream
…
<… :prop
<… :prop
<… :prop
<… :prop
< …:prop
…

…
…
…
…
…

>
>
>
>
>

[t1]
[t1]
[t3]
[t5]
[t7]

 R2S operators:


ISTREAM: stream out data in the last step that wasn’t on the previous step



DSTREAM: stream out data in the previous step that isn’t in the last step



RSTREAM: stream out all data in the last step

http://streamreasoning.org/sr4ld2013

22
Other operators
 Sequence operators and CEP world
e4

S
e1

e2

e3

1

3

6

Sequence

9

Simultaneous

 SEQ: joins eti,tf and e’ti’,tf’ if e’ occurs after e
 EQUALS: joins eti,tf and e’ti’,tf’ if they occur simultaneously

 OPTIONALSEQ, OPTIONALEQUALS: Optional join variants

http://streamreasoning.org/sr4ld2013

23
Existing RSP systems
 C-SPARQL: RDF Store + Stream processor
•

Combined architecture

RDF Store

C-SPARQL
query

translator

Stream
processor

continuous
results

 CQELS: Implemented from scratch. Focus on performance
•

Native + adaptive joins for static-data and streaming data

CQELS
query

Native RSP

continuous
results

Disclaimer: oversimplified descriptions
http://streamreasoning.org/sr4ld2013

24
Existing RSP systems
 EP-SPARQL: Complex-event detection
•

SEQ, EQUALS operators

EP-SPARQL
query

Prolog
engine

translator

continuous
results

 SPARQLStream: Ontology-based stream query answering
•
•

Virtual RDF views, using R2RML mappings
SPARQL stream queries over the original data streams.

SPARQLStream
query

rewriter

DSMS/CEP

continuous
results

R2RML mappings

 Instans: RETE-based evaluation

Disclaimer: oversimplified descriptions
http://streamreasoning.org/sr4ld2013

25
Query languages syntax
SELECT ?sensor
FROM NAMED STREAM <http://www.cwi.nl/SRBench/observations> [NOW-3 HOURS SLIDE 10
MINUTES]
WHERE {
Stream
?observation om-owl:procedure ?sensor ;
om-owl:observedProperty weather:WindSpeed ;
om-owl:result [ om-owl:floatValue ?value ] . }
GROUP BY ?sensor HAVING ( AVG(?value) >= "74"^^xsd:float )

SPARQL

SELECT ?sensor
FROM STREAM <http://www.cwi.nl/SRBench/observations> [RANGE 1h STEP 10m]
WHERE {
?observation om-owl:procedure ?sensor ;
om-owl:observedProperty weather:WindSpeed ;
om-owl:result [ om-owl:floatValue ?value ] . }
GROUP BY ?sensor HAVING ( AVG(?value) >= "74"^^xsd:float )

C-SPARQL

SELECT ?sensor
WHERE {
STREAM <http://www.cwi.nl/SRBench/observations> [RANGE 10800s SLIDE 600s] {
?observation om-owl:procedure ?sensor ;
om-owl:observedProperty weather:WindSpeed ;
om-owl:result [ om-owl:floatValue ?value ] .} }
GROUP BY ?sensor HAVING ( AVG(?value) >= "74"^^xsd:float )

CQELS

http://streamreasoning.org/sr4ld2013

26
Time function

Sequence,
Co-ocurrence

R2S operator

Triple window

Time window

Aggregates

Union, Join,
Optional,
Filter

Continuous
execution

Model

Classification of existing systems

TASPARQL

TA-RDF

✗

✔

Limited

✗

✗

✗

✗

✗

tSPARQL

tRDF

✗

✔

✗

✗

✗

✗

✗

✗

Streaming
SPARQL

RDF
Stream

✔

✔

✗

✔

✔

✗

✗

✗

C-SPARQL

RDF
Stream

✔

✔

✔

✔

✔

✗

✗

✔

CQELS

RDF
Stream

✔

✔

✔

✔

✔

✗

✗

✗

SPARQLStr
eam

(Virtual)
RDF
Stream

✔

✔

✔

✔

✗

✔

✗

✗

EPSPARQL

RDF
Stream

✔

✔

✔

✗

✗

✗

✔

✗

Instans

RDF

✔

✔

✔

✗

✗

✗

✗

✗

Disclaimer: other features may be missing

http://streamreasoning.org/sr4ld2013

27
RDF Stream Processors

Can we compare these RSPs?
Do RSPs behave the same?
Do we get the same results form RSPs?

http://streamreasoning.org/sr4ld2013

28
Operational Semantics
Where are both alice and bob in the last 5s?

S

S1

S2

S3

S4

1

3

6

9

System 1:
System 2:

:hall [5]
:hall [3]

Both correct?

t
:kitchen [10]

:kitchen [10]

Find out more later this week on
the ISWC Evaluation Track!
Thursday at noon!

http://streamreasoning.org/sr4ld2013

29
SECRET Model: understand operational
semantics
t0: When does the
windowing start?
(internal window param)

REPORT: When is the window content
made available to the R2R operator?
WINDOW
Non-empty content, Content-change,
CONTENT: Which
Window-close, Periodic
stream elements are
in the window?
R2R operator
ω
β

TICK: When the
data stream are
inserted in the
window?
Triple-based vs
graph-based

S

W(ω,β)

S1

S3

S2

S4

S6
S5

S7

S9

S11

S8
S10

S12
t

http://streamreasoning.org/sr4ld2013

30
SECRET model classification

CQELS
Report Content-change

Tick Tuple-driven
Empty relation No
notification

C-SPARQL

SPARQLstream

Window-close
Non-empty
content

Window-close
Non-empty
content

Tuple-driven

Tuple-driven

Yes

No

 Characterize non-window-based RSPs?
 Multiple streams?, reasoning?, linking with static data?

http://streamreasoning.org/sr4ld2013

31
Benchmarks and comparing
http://www.w3.org/wiki/SRBench

C-SPARQL
SPARQLStream
CQELS
Not exhaustive!

http://streamreasoning.org/sr4ld2013

32
Functional Evaluation

System

Q1

Q2

Q3

Q4

Q5

Q6 Q7

Q8

Q9

Q10 Q11 Q12

G

G,IF SD

SPARQLStream

PP

A

G

G

CQELS

PP

A

D/N

IF

PP

PP

PP

PP

PP

PP

C-SPARQL

PP

A

D

IF

PP

PP

PP

PP

PP

PP

SD

Q13

Q14

Q15

Q16

Q17

PP,SD PP,SD PP,SD PP,SD PP,SD PP,SD

Ask
Dstream
Group by and aggregations
IF expression
Negation
Property Path
Static Dataset

http://streamreasoning.org/sr4ld2013

33
A lot to do…
 Agree on an RDF model?
•
•
•
•

Metamodel?
Timestamps in graphs?
Timestamp intervals
Compatibility with normal (static) RDF

 Additional operators for SPARQL?
•
•
•

Windows (not only time based?)
CEP operators
Semantics

 Go Web
•
•
•

Volatile URIs
Serialization: terse, compact
Protocols: HTTP, Websockets?

http://streamreasoning.org/sr4ld2013

34
References


Arasu, A., Babu, S., Widom, J.: The CQL continuous query language : semantic
foundations. The VLDB Journal 15(2) (2006) 121–142



Barbieri, D.F., Braga, D., Ceri, S., Della Valle, E., Grossniklaus, M.: C-SPARQL: A
continuous query language for RDF data streams. IJSC 4(1) (2010) 3–25



Botan, I., Derakhshan, R., Dindar, N., Haas, L., Miller, R.J., Tatbul, N.: Secret:A
model for analysis of the execution semantics of stream processing systems.
PVLDB 3(1) (2010) 232–243



Calbimonte, J.P., Jeung, H., Corcho, O., Aberer, K.: Enabling Query Technologies
for the Semantic Sensor Web. IJSWIS 8(1) (2012) 43–63



Le-Phuoc, D., Dao-Tran, M., Xavier Parreira, J., Hauswirth, M.: A native and
adaptive approach for unified processing of linked streams and linked data. In:
ISWC. (2011) 370–388



Anicic, D., Fodor, P., Rudolph, S., Stojanovic, N.: EP-SPARQL: a unified language
for event processing and stream reasoning. In: WWW. (2011) 635–644

http://streamreasoning.org/sr4ld2013

35
Stream Reasoning
For Linked Data
M. Balduini, J-P Calbimonte, O. Corcho,
D. Dell'Aglio, E. Della Valle, and J.Z. Pan
http://streamreasoning.org/sr4ld2013

RDF stream processing models
Daniele Dell’Aglio, daniele.dellaglio@polimi.it
Jean-Paul Cabilmonte, jp.calbimonte@upm.es

Contenu connexe

Tendances

Introduction to SparkR
Introduction to SparkRIntroduction to SparkR
Introduction to SparkRKien Dang
 
Spark + Parquet In Depth: Spark Summit East Talk by Emily Curtin and Robbie S...
Spark + Parquet In Depth: Spark Summit East Talk by Emily Curtin and Robbie S...Spark + Parquet In Depth: Spark Summit East Talk by Emily Curtin and Robbie S...
Spark + Parquet In Depth: Spark Summit East Talk by Emily Curtin and Robbie S...Spark Summit
 
WebTech Tutorial Querying DBPedia
WebTech Tutorial Querying DBPediaWebTech Tutorial Querying DBPedia
WebTech Tutorial Querying DBPediaKatrien Verbert
 
Semantic web meetup – sparql tutorial
Semantic web meetup – sparql tutorialSemantic web meetup – sparql tutorial
Semantic web meetup – sparql tutorialAdonisDamian
 
Linked Data Notifications for RDF Streams
Linked Data Notifications for RDF StreamsLinked Data Notifications for RDF Streams
Linked Data Notifications for RDF StreamsJean-Paul Calbimonte
 
Introduction to Spark R with R studio - Mr. Pragith
Introduction to Spark R with R studio - Mr. Pragith Introduction to Spark R with R studio - Mr. Pragith
Introduction to Spark R with R studio - Mr. Pragith Sigmoid
 
SparkR - Scalable machine learning - Utah R Users Group - U of U - June 17th
SparkR - Scalable machine learning - Utah R Users Group - U of U - June 17thSparkR - Scalable machine learning - Utah R Users Group - U of U - June 17th
SparkR - Scalable machine learning - Utah R Users Group - U of U - June 17thAlton Alexander
 
Automobile Route Matching with Dynamic Time Warping Using PySpark with Cather...
Automobile Route Matching with Dynamic Time Warping Using PySpark with Cather...Automobile Route Matching with Dynamic Time Warping Using PySpark with Cather...
Automobile Route Matching with Dynamic Time Warping Using PySpark with Cather...Databricks
 
Scala Programming for Semantic Web Developers ESWC Semdev2015
Scala Programming for Semantic Web Developers ESWC Semdev2015Scala Programming for Semantic Web Developers ESWC Semdev2015
Scala Programming for Semantic Web Developers ESWC Semdev2015Jean-Paul Calbimonte
 
Spark Summit EU 2015: Lessons from 300+ production users
Spark Summit EU 2015: Lessons from 300+ production usersSpark Summit EU 2015: Lessons from 300+ production users
Spark Summit EU 2015: Lessons from 300+ production usersDatabricks
 
From DataFrames to Tungsten: A Peek into Spark's Future-(Reynold Xin, Databri...
From DataFrames to Tungsten: A Peek into Spark's Future-(Reynold Xin, Databri...From DataFrames to Tungsten: A Peek into Spark's Future-(Reynold Xin, Databri...
From DataFrames to Tungsten: A Peek into Spark's Future-(Reynold Xin, Databri...Spark Summit
 
Spark Summit East 2015 Advanced Devops Student Slides
Spark Summit East 2015 Advanced Devops Student SlidesSpark Summit East 2015 Advanced Devops Student Slides
Spark Summit East 2015 Advanced Devops Student SlidesDatabricks
 
Sparkcamp @ Strata CA: Intro to Apache Spark with Hands-on Tutorials
Sparkcamp @ Strata CA: Intro to Apache Spark with Hands-on TutorialsSparkcamp @ Strata CA: Intro to Apache Spark with Hands-on Tutorials
Sparkcamp @ Strata CA: Intro to Apache Spark with Hands-on TutorialsDatabricks
 
Apache Jena Elephas and Friends
Apache Jena Elephas and FriendsApache Jena Elephas and Friends
Apache Jena Elephas and FriendsRob Vesse
 
Using Apache Spark as ETL engine. Pros and Cons
Using Apache Spark as ETL engine. Pros and Cons          Using Apache Spark as ETL engine. Pros and Cons
Using Apache Spark as ETL engine. Pros and Cons Provectus
 
Adding Complex Data to Spark Stack by Tug Grall
Adding Complex Data to Spark Stack by Tug GrallAdding Complex Data to Spark Stack by Tug Grall
Adding Complex Data to Spark Stack by Tug GrallSpark Summit
 
New directions for Apache Spark in 2015
New directions for Apache Spark in 2015New directions for Apache Spark in 2015
New directions for Apache Spark in 2015Databricks
 
Spark, Python and Parquet
Spark, Python and Parquet Spark, Python and Parquet
Spark, Python and Parquet odsc
 
Fast Data Analytics with Spark and Python
Fast Data Analytics with Spark and PythonFast Data Analytics with Spark and Python
Fast Data Analytics with Spark and PythonBenjamin Bengfort
 
Spark Under the Hood - Meetup @ Data Science London
Spark Under the Hood - Meetup @ Data Science LondonSpark Under the Hood - Meetup @ Data Science London
Spark Under the Hood - Meetup @ Data Science LondonDatabricks
 

Tendances (20)

Introduction to SparkR
Introduction to SparkRIntroduction to SparkR
Introduction to SparkR
 
Spark + Parquet In Depth: Spark Summit East Talk by Emily Curtin and Robbie S...
Spark + Parquet In Depth: Spark Summit East Talk by Emily Curtin and Robbie S...Spark + Parquet In Depth: Spark Summit East Talk by Emily Curtin and Robbie S...
Spark + Parquet In Depth: Spark Summit East Talk by Emily Curtin and Robbie S...
 
WebTech Tutorial Querying DBPedia
WebTech Tutorial Querying DBPediaWebTech Tutorial Querying DBPedia
WebTech Tutorial Querying DBPedia
 
Semantic web meetup – sparql tutorial
Semantic web meetup – sparql tutorialSemantic web meetup – sparql tutorial
Semantic web meetup – sparql tutorial
 
Linked Data Notifications for RDF Streams
Linked Data Notifications for RDF StreamsLinked Data Notifications for RDF Streams
Linked Data Notifications for RDF Streams
 
Introduction to Spark R with R studio - Mr. Pragith
Introduction to Spark R with R studio - Mr. Pragith Introduction to Spark R with R studio - Mr. Pragith
Introduction to Spark R with R studio - Mr. Pragith
 
SparkR - Scalable machine learning - Utah R Users Group - U of U - June 17th
SparkR - Scalable machine learning - Utah R Users Group - U of U - June 17thSparkR - Scalable machine learning - Utah R Users Group - U of U - June 17th
SparkR - Scalable machine learning - Utah R Users Group - U of U - June 17th
 
Automobile Route Matching with Dynamic Time Warping Using PySpark with Cather...
Automobile Route Matching with Dynamic Time Warping Using PySpark with Cather...Automobile Route Matching with Dynamic Time Warping Using PySpark with Cather...
Automobile Route Matching with Dynamic Time Warping Using PySpark with Cather...
 
Scala Programming for Semantic Web Developers ESWC Semdev2015
Scala Programming for Semantic Web Developers ESWC Semdev2015Scala Programming for Semantic Web Developers ESWC Semdev2015
Scala Programming for Semantic Web Developers ESWC Semdev2015
 
Spark Summit EU 2015: Lessons from 300+ production users
Spark Summit EU 2015: Lessons from 300+ production usersSpark Summit EU 2015: Lessons from 300+ production users
Spark Summit EU 2015: Lessons from 300+ production users
 
From DataFrames to Tungsten: A Peek into Spark's Future-(Reynold Xin, Databri...
From DataFrames to Tungsten: A Peek into Spark's Future-(Reynold Xin, Databri...From DataFrames to Tungsten: A Peek into Spark's Future-(Reynold Xin, Databri...
From DataFrames to Tungsten: A Peek into Spark's Future-(Reynold Xin, Databri...
 
Spark Summit East 2015 Advanced Devops Student Slides
Spark Summit East 2015 Advanced Devops Student SlidesSpark Summit East 2015 Advanced Devops Student Slides
Spark Summit East 2015 Advanced Devops Student Slides
 
Sparkcamp @ Strata CA: Intro to Apache Spark with Hands-on Tutorials
Sparkcamp @ Strata CA: Intro to Apache Spark with Hands-on TutorialsSparkcamp @ Strata CA: Intro to Apache Spark with Hands-on Tutorials
Sparkcamp @ Strata CA: Intro to Apache Spark with Hands-on Tutorials
 
Apache Jena Elephas and Friends
Apache Jena Elephas and FriendsApache Jena Elephas and Friends
Apache Jena Elephas and Friends
 
Using Apache Spark as ETL engine. Pros and Cons
Using Apache Spark as ETL engine. Pros and Cons          Using Apache Spark as ETL engine. Pros and Cons
Using Apache Spark as ETL engine. Pros and Cons
 
Adding Complex Data to Spark Stack by Tug Grall
Adding Complex Data to Spark Stack by Tug GrallAdding Complex Data to Spark Stack by Tug Grall
Adding Complex Data to Spark Stack by Tug Grall
 
New directions for Apache Spark in 2015
New directions for Apache Spark in 2015New directions for Apache Spark in 2015
New directions for Apache Spark in 2015
 
Spark, Python and Parquet
Spark, Python and Parquet Spark, Python and Parquet
Spark, Python and Parquet
 
Fast Data Analytics with Spark and Python
Fast Data Analytics with Spark and PythonFast Data Analytics with Spark and Python
Fast Data Analytics with Spark and Python
 
Spark Under the Hood - Meetup @ Data Science London
Spark Under the Hood - Meetup @ Data Science LondonSpark Under the Hood - Meetup @ Data Science London
Spark Under the Hood - Meetup @ Data Science London
 

Similaire à RDF Stream Processing Models (SR4LD2013)

RDF Stream Processing Models (RSP2014)
RDF Stream Processing Models (RSP2014)RDF Stream Processing Models (RSP2014)
RDF Stream Processing Models (RSP2014)Daniele Dell'Aglio
 
On the need for a W3C community group on RDF Stream Processing
On the need for a W3C community group on RDF Stream ProcessingOn the need for a W3C community group on RDF Stream Processing
On the need for a W3C community group on RDF Stream ProcessingPlanetData Network of Excellence
 
OrdRing 2013 keynote - On the need for a W3C community group on RDF Stream Pr...
OrdRing 2013 keynote - On the need for a W3C community group on RDF Stream Pr...OrdRing 2013 keynote - On the need for a W3C community group on RDF Stream Pr...
OrdRing 2013 keynote - On the need for a W3C community group on RDF Stream Pr...Oscar Corcho
 
Triplewave: a step towards RDF Stream Processing on the Web
Triplewave: a step towards RDF Stream Processing on the WebTriplewave: a step towards RDF Stream Processing on the Web
Triplewave: a step towards RDF Stream Processing on the WebDaniele Dell'Aglio
 
Data Source API in Spark
Data Source API in SparkData Source API in Spark
Data Source API in SparkDatabricks
 
RDF Stream Processing and the role of Semantics
RDF Stream Processing and the role of SemanticsRDF Stream Processing and the role of Semantics
RDF Stream Processing and the role of SemanticsJean-Paul Calbimonte
 
Deconstructing Lambda
Deconstructing LambdaDeconstructing Lambda
Deconstructing Lambdadarach
 
RDF Stream Processing: Let's React
RDF Stream Processing: Let's ReactRDF Stream Processing: Let's React
RDF Stream Processing: Let's ReactJean-Paul Calbimonte
 
RDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataRDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataGiorgos Santipantakis
 
Web data from R
Web data from RWeb data from R
Web data from Rschamber
 
Metail and Elastic MapReduce
Metail and Elastic MapReduceMetail and Elastic MapReduce
Metail and Elastic MapReduceGareth Rogers
 
Emerging technologies /frameworks in Big Data
Emerging technologies /frameworks in Big DataEmerging technologies /frameworks in Big Data
Emerging technologies /frameworks in Big DataRahul Jain
 
Sustainable queryable access to Linked Data
Sustainable queryable access to Linked DataSustainable queryable access to Linked Data
Sustainable queryable access to Linked DataRuben Verborgh
 
Streaming Day - an overview of Stream Reasoning
Streaming Day - an overview of Stream ReasoningStreaming Day - an overview of Stream Reasoning
Streaming Day - an overview of Stream ReasoningRiccardo Tommasini
 
Data Integration And Visualization
Data Integration And VisualizationData Integration And Visualization
Data Integration And VisualizationIvan Ermilov
 
SF Big Analytics 20190612: Building highly efficient data lakes using Apache ...
SF Big Analytics 20190612: Building highly efficient data lakes using Apache ...SF Big Analytics 20190612: Building highly efficient data lakes using Apache ...
SF Big Analytics 20190612: Building highly efficient data lakes using Apache ...Chester Chen
 
Network Traffic Search using Apache HBase
Network Traffic Search using Apache HBaseNetwork Traffic Search using Apache HBase
Network Traffic Search using Apache HBaseEvans Ye
 
JavaOne2013 Leveraging Linked Data and OSLC
JavaOne2013 Leveraging Linked Data and OSLCJavaOne2013 Leveraging Linked Data and OSLC
JavaOne2013 Leveraging Linked Data and OSLCSteve Speicher
 

Similaire à RDF Stream Processing Models (SR4LD2013) (20)

RDF Stream Processing Models (RSP2014)
RDF Stream Processing Models (RSP2014)RDF Stream Processing Models (RSP2014)
RDF Stream Processing Models (RSP2014)
 
On the need for a W3C community group on RDF Stream Processing
On the need for a W3C community group on RDF Stream ProcessingOn the need for a W3C community group on RDF Stream Processing
On the need for a W3C community group on RDF Stream Processing
 
OrdRing 2013 keynote - On the need for a W3C community group on RDF Stream Pr...
OrdRing 2013 keynote - On the need for a W3C community group on RDF Stream Pr...OrdRing 2013 keynote - On the need for a W3C community group on RDF Stream Pr...
OrdRing 2013 keynote - On the need for a W3C community group on RDF Stream Pr...
 
Triplewave: a step towards RDF Stream Processing on the Web
Triplewave: a step towards RDF Stream Processing on the WebTriplewave: a step towards RDF Stream Processing on the Web
Triplewave: a step towards RDF Stream Processing on the Web
 
Data Source API in Spark
Data Source API in SparkData Source API in Spark
Data Source API in Spark
 
RDF Stream Processing and the role of Semantics
RDF Stream Processing and the role of SemanticsRDF Stream Processing and the role of Semantics
RDF Stream Processing and the role of Semantics
 
Deconstructing Lambda
Deconstructing LambdaDeconstructing Lambda
Deconstructing Lambda
 
RDF Stream Processing: Let's React
RDF Stream Processing: Let's ReactRDF Stream Processing: Let's React
RDF Stream Processing: Let's React
 
RDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival dataRDF-Gen: Generating RDF from streaming and archival data
RDF-Gen: Generating RDF from streaming and archival data
 
Web data from R
Web data from RWeb data from R
Web data from R
 
Metail and Elastic MapReduce
Metail and Elastic MapReduceMetail and Elastic MapReduce
Metail and Elastic MapReduce
 
Emerging technologies /frameworks in Big Data
Emerging technologies /frameworks in Big DataEmerging technologies /frameworks in Big Data
Emerging technologies /frameworks in Big Data
 
Sustainable queryable access to Linked Data
Sustainable queryable access to Linked DataSustainable queryable access to Linked Data
Sustainable queryable access to Linked Data
 
Streaming Day - an overview of Stream Reasoning
Streaming Day - an overview of Stream ReasoningStreaming Day - an overview of Stream Reasoning
Streaming Day - an overview of Stream Reasoning
 
Data Integration And Visualization
Data Integration And VisualizationData Integration And Visualization
Data Integration And Visualization
 
SF Big Analytics 20190612: Building highly efficient data lakes using Apache ...
SF Big Analytics 20190612: Building highly efficient data lakes using Apache ...SF Big Analytics 20190612: Building highly efficient data lakes using Apache ...
SF Big Analytics 20190612: Building highly efficient data lakes using Apache ...
 
NISO/DCMI September 25 Webinar: Implementing Linked Data in Developing Countr...
NISO/DCMI September 25 Webinar: Implementing Linked Data in Developing Countr...NISO/DCMI September 25 Webinar: Implementing Linked Data in Developing Countr...
NISO/DCMI September 25 Webinar: Implementing Linked Data in Developing Countr...
 
Network Traffic Search using Apache HBase
Network Traffic Search using Apache HBaseNetwork Traffic Search using Apache HBase
Network Traffic Search using Apache HBase
 
JavaOne2013 Leveraging Linked Data and OSLC
JavaOne2013 Leveraging Linked Data and OSLCJavaOne2013 Leveraging Linked Data and OSLC
JavaOne2013 Leveraging Linked Data and OSLC
 
Data Science
Data ScienceData Science
Data Science
 

Plus de Daniele Dell'Aglio

Distributed stream consistency checking
Distributed stream consistency checkingDistributed stream consistency checking
Distributed stream consistency checkingDaniele Dell'Aglio
 
On unifying query languages for RDF streams
On unifying query languages for RDF streamsOn unifying query languages for RDF streams
On unifying query languages for RDF streamsDaniele Dell'Aglio
 
RSEP-QL: A Query Model to Capture Event Pattern Matching in RDF Stream Proces...
RSEP-QL: A Query Model to Capture Event Pattern Matching in RDF Stream Proces...RSEP-QL: A Query Model to Capture Event Pattern Matching in RDF Stream Proces...
RSEP-QL: A Query Model to Capture Event Pattern Matching in RDF Stream Proces...Daniele Dell'Aglio
 
Summary of the Stream Reasoning workshop at ISWC 2016
Summary of the Stream Reasoning workshop at ISWC 2016Summary of the Stream Reasoning workshop at ISWC 2016
Summary of the Stream Reasoning workshop at ISWC 2016Daniele Dell'Aglio
 
On Unified Stream Reasoning - The RDF Stream Processing realm
On Unified Stream Reasoning - The RDF Stream Processing realmOn Unified Stream Reasoning - The RDF Stream Processing realm
On Unified Stream Reasoning - The RDF Stream Processing realmDaniele Dell'Aglio
 
Augmented Participation to Live Events through Social Network Content Enrichm...
Augmented Participation to Live Events through Social Network Content Enrichm...Augmented Participation to Live Events through Social Network Content Enrichm...
Augmented Participation to Live Events through Social Network Content Enrichm...Daniele Dell'Aglio
 
An experience on empirical research about rdf stream
An experience on empirical research about rdf streamAn experience on empirical research about rdf stream
An experience on empirical research about rdf streamDaniele Dell'Aglio
 
A Survey of Temporal Extensions of Description Logics
A Survey of Temporal Extensions of Description LogicsA Survey of Temporal Extensions of Description Logics
A Survey of Temporal Extensions of Description LogicsDaniele Dell'Aglio
 
IMaRS - Incremental Materialization for RDF Streams (SR4LD2013)
IMaRS - Incremental Materialization for RDF Streams (SR4LD2013)IMaRS - Incremental Materialization for RDF Streams (SR4LD2013)
IMaRS - Incremental Materialization for RDF Streams (SR4LD2013)Daniele Dell'Aglio
 
Ontology based top-k query answering over massive, heterogeneous, and dynamic...
Ontology based top-k query answering over massive, heterogeneous, and dynamic...Ontology based top-k query answering over massive, heterogeneous, and dynamic...
Ontology based top-k query answering over massive, heterogeneous, and dynamic...Daniele Dell'Aglio
 
On correctness in RDF stream processor benchmarking
On correctness in RDF stream processor benchmarkingOn correctness in RDF stream processor benchmarking
On correctness in RDF stream processor benchmarkingDaniele Dell'Aglio
 
An Ontological Formulation and an OPM profile for Causality in Planning Appli...
An Ontological Formulation and an OPM profile for Causality in Planning Appli...An Ontological Formulation and an OPM profile for Causality in Planning Appli...
An Ontological Formulation and an OPM profile for Causality in Planning Appli...Daniele Dell'Aglio
 
P&MSP2012 - Version Control Systems
P&MSP2012 - Version Control SystemsP&MSP2012 - Version Control Systems
P&MSP2012 - Version Control SystemsDaniele Dell'Aglio
 
P&MSP2012 - Logging Frameworks
P&MSP2012 - Logging FrameworksP&MSP2012 - Logging Frameworks
P&MSP2012 - Logging FrameworksDaniele Dell'Aglio
 

Plus de Daniele Dell'Aglio (19)

Distributed stream consistency checking
Distributed stream consistency checkingDistributed stream consistency checking
Distributed stream consistency checking
 
On web stream processing
On web stream processingOn web stream processing
On web stream processing
 
On a web of data streams
On a web of data streamsOn a web of data streams
On a web of data streams
 
On unifying query languages for RDF streams
On unifying query languages for RDF streamsOn unifying query languages for RDF streams
On unifying query languages for RDF streams
 
RSEP-QL: A Query Model to Capture Event Pattern Matching in RDF Stream Proces...
RSEP-QL: A Query Model to Capture Event Pattern Matching in RDF Stream Proces...RSEP-QL: A Query Model to Capture Event Pattern Matching in RDF Stream Proces...
RSEP-QL: A Query Model to Capture Event Pattern Matching in RDF Stream Proces...
 
Summary of the Stream Reasoning workshop at ISWC 2016
Summary of the Stream Reasoning workshop at ISWC 2016Summary of the Stream Reasoning workshop at ISWC 2016
Summary of the Stream Reasoning workshop at ISWC 2016
 
On Unified Stream Reasoning
On Unified Stream ReasoningOn Unified Stream Reasoning
On Unified Stream Reasoning
 
On Unified Stream Reasoning - The RDF Stream Processing realm
On Unified Stream Reasoning - The RDF Stream Processing realmOn Unified Stream Reasoning - The RDF Stream Processing realm
On Unified Stream Reasoning - The RDF Stream Processing realm
 
Augmented Participation to Live Events through Social Network Content Enrichm...
Augmented Participation to Live Events through Social Network Content Enrichm...Augmented Participation to Live Events through Social Network Content Enrichm...
Augmented Participation to Live Events through Social Network Content Enrichm...
 
An experience on empirical research about rdf stream
An experience on empirical research about rdf streamAn experience on empirical research about rdf stream
An experience on empirical research about rdf stream
 
A Survey of Temporal Extensions of Description Logics
A Survey of Temporal Extensions of Description LogicsA Survey of Temporal Extensions of Description Logics
A Survey of Temporal Extensions of Description Logics
 
IMaRS - Incremental Materialization for RDF Streams (SR4LD2013)
IMaRS - Incremental Materialization for RDF Streams (SR4LD2013)IMaRS - Incremental Materialization for RDF Streams (SR4LD2013)
IMaRS - Incremental Materialization for RDF Streams (SR4LD2013)
 
Ontology based top-k query answering over massive, heterogeneous, and dynamic...
Ontology based top-k query answering over massive, heterogeneous, and dynamic...Ontology based top-k query answering over massive, heterogeneous, and dynamic...
Ontology based top-k query answering over massive, heterogeneous, and dynamic...
 
On correctness in RDF stream processor benchmarking
On correctness in RDF stream processor benchmarkingOn correctness in RDF stream processor benchmarking
On correctness in RDF stream processor benchmarking
 
An Ontological Formulation and an OPM profile for Causality in Planning Appli...
An Ontological Formulation and an OPM profile for Causality in Planning Appli...An Ontological Formulation and an OPM profile for Causality in Planning Appli...
An Ontological Formulation and an OPM profile for Causality in Planning Appli...
 
P&MSP2012 - Maven
P&MSP2012 - MavenP&MSP2012 - Maven
P&MSP2012 - Maven
 
P&MSP2012 - Version Control Systems
P&MSP2012 - Version Control SystemsP&MSP2012 - Version Control Systems
P&MSP2012 - Version Control Systems
 
P&MSP2012 - Unit Testing
P&MSP2012 - Unit TestingP&MSP2012 - Unit Testing
P&MSP2012 - Unit Testing
 
P&MSP2012 - Logging Frameworks
P&MSP2012 - Logging FrameworksP&MSP2012 - Logging Frameworks
P&MSP2012 - Logging Frameworks
 

Dernier

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 

Dernier (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 

RDF Stream Processing Models (SR4LD2013)

  • 1. Stream Reasoning For Linked Data M. Balduini, J-P Calbimonte, O. Corcho, D. Dell'Aglio, E. Della Valle, and J.Z. Pan http://streamreasoning.org/sr4ld2013 RDF stream processing models Daniele Dell’Aglio, daniele.dellaglio@polimi.it Jean-Paul Cabilmonte, jp.calbimonte@upm.es
  • 2. Share, Remix, Reuse — Legally  This work is licensed under the Creative Commons Attribution 3.0 Unported License.  Your are free: to Share — to copy, distribute and transmit the work to Remix — to adapt the work  Under the following conditions Attribution — You must attribute the work by inserting – “[source http://streamreasoning.org/sr4ld2013]” at the end of each reused slide – a credits slide stating - These slides are partially based on “Streaming Reasoning for Linked Data 2013” by M. Balduini, J-P Calbimonte, O. Corcho, D. Dell'Aglio, E. Della Valle, and J.Z. Pan http://streamreasoning.org/sr4ld2013  To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ http://streamreasoning.org/sr4ld2013 2
  • 3. Outline  Continuous RDF model extensions • RDF Streams, timestamps  Continuous extensions of SPARQL • • Continuous evaluation Additional operators  Overview of existing systems • • Implemented operators Different evaluation approaches http://streamreasoning.org/sr4ld2013 3
  • 4. Continuous extensions of RDF  As you know, “RDF is a standard model for data interchange on the Web” (http://www.w3.org/RDF/) <sub1 pred1 obj1> <sub2 pred2 obj2>  We want to extend RDF to model data streams  A data stream is an (infinite) ordered sequence of data items  A data item is a self-consumable informative unit http://streamreasoning.org/sr4ld2013 4
  • 5. Data items  With data item we can refer to: 1. A triple <:alice :isWith :bob> 2. A graph <:alice :posts :p> <:p :who :bob> :graph1 <:p :where :redRoom> http://streamreasoning.org/sr4ld2013 5
  • 6. Data items and time  Do we need to associate the time to data items? • It depends on what we want to achieve (see next!)  If yes, how to take into account the time? • • • Time should not (but could) be part of the schema Time should not be accessible through the query language Time as object would require a lot of reification  How to extend the RDF model to take into account the time? http://streamreasoning.org/sr4ld2013 6
  • 7. Application time  A timestamp is a temporal identifier associated to a data item  The application time is a set of one or more timestamps associated to the data item  Two data items can have the same application time • Contemporaneity  Who does assign the application time to an event? • The one that generates the data stream! http://streamreasoning.org/sr4ld2013 7
  • 8. Missing application time :alice :isWith :bob :bob :isWith :diana :alice :isWith :carl S e1 e2 :diana :isWith :carl e3 e4  A RDF stream without timestamp is an ordered sequence of data items  The order can be exploited to perform queries • • Does Alice meet Bob before Carl? Who does Carl meet first? http://streamreasoning.org/sr4ld2013 8
  • 9. Application time: one timestamp :alice :isWith :bob :bob :isWith :diana :alice :isWith :carl :diana :isWith :carl S e1 e2 e3 e4 1 3 6 9 t  One timestamp: the time on which the data item occurs  We can start to compose queries taking into account the time • • How many people has Alice met in the last 5m? Does Diana meet Bob and then Carl within 5m? http://streamreasoning.org/sr4ld2013 9
  • 10. Application time: two timestamps :alice :isWith :bob :bob :isWith :diana :alice :isWith :carl :diana :isWith :carl e4 e2 S e1 1 3 e3 6 9 t  Two timestamps: the time range on which the data item is valid (from, to]  It is possible to write even more complex constraints: • • Which are the meetings the last less than 5m? Which are the meetings with conflicts? http://streamreasoning.org/sr4ld2013 10
  • 11. Classification of existing systems Triple No timestamp Instans One timestamp C-SPARQL CQELS SPARQLstream Two timestamps Graph EP-SPARQL/Etalis http://streamreasoning.org/sr4ld2013 SLD 11
  • 12. Our assumptions :alice :isWith :bob :bob :isWith :diana :alice :isWith :carl :diana :isWith :carl S e1 e2 e3 e4 1 3 6 9 t  In the following we will consider the following setting • • • A RDF triple is an event Application time: single timestamp System time = application time <:alice :isWith:bob>:[1] <:alice :isWith:carl>:[3] <:bob :isWith :diana>:[6] ... http://streamreasoning.org/sr4ld2013 12
  • 13. Let’s process the RDF streams!  DSMS and CEP worlds suggest different techniques and approaches to process data streams  We focus on the CQL/STREAM model http://streamreasoning.org/sr4ld2013 13
  • 14. System time  Stream processors can elaborate data streams exploiting the timestamps associated to the events  When a system receives an event, it could have the need of associating a timestamp • This is the system time  The system time is an internal value, it does not exit from the system!  The system time must be unique  Can application and system time coincide? • • It depends Approximation http://streamreasoning.org/sr4ld2013 14
  • 15. RDF stream  An RDF stream is an infinite sequence of timestamped events (triples or graphs) … <eventi,ti > <eventi+1,ti+1 > <eventi+2,ti+2 > …  The (application) timestamps must be non-decreasing ti <= ti+1 http://streamreasoning.org/sr4ld2013 15
  • 16. Querying data streams  CQL model stream-to-relation Streams infinite unbounded bag … <s,τ> … relation-to-relation Relations relation-to-stream Stream http://streamreasoning.org/sr4ld2013 <s1> <s2> <s3> finite bag Relation R(t) Mapping: T  R 16
  • 17. Querying RDF data streams  CQL model S2R Window operators RDF Streams SPARQL operators RDF Mappings R2S operators Abstract query processing model http://streamreasoning.org/sr4ld2013 17
  • 18. Time-based Windows  Who are both alice and carl meeting? S e1 e2 e3 1 3 6 :bob S e4 e5 9 t :diana e1 e2 e3 1 3 6 :bob http://streamreasoning.org/sr4ld2013 e4 e5 9 Windows + slides t 18
  • 19. R2R operators  SPARQL operators • • • • • Graph pattern matching JOIN OPTIONAL JOIN SELECTION UNION S2R Window operators SPARQL operators RDF Mappings RDF Streams R2S operators http://streamreasoning.org/sr4ld2013 19
  • 20. SPARQL: a quick recap http://streamreasoning.org/sr4ld2013 20
  • 21. Output: relation  Case 1: the output is a set of timestamped mappings a … ?b… [t1] a … ?b… SELECT ?a ?b … FROM …. WHERE …. queries a … ?b… [t3] a … ?b… [t5] RSP CONSTRUCT {?a :prop ?b } FROM …. WHERE …. a … ?b… [t7] bindings <… :prop … > [t1] <… :prop … > <… :prop … > [t3] <… :prop … > [t5] <… :prop … > [t7] triples http://streamreasoning.org/sr4ld2013 21
  • 22. Output: stream  Case 2: the output is a stream  R2S operators CONSTRUCT RSTREAM {?a :prop ?b } FROM …. WHERE …. query RSP stream … <… :prop <… :prop <… :prop <… :prop < …:prop … … … … … … > > > > > [t1] [t1] [t3] [t5] [t7]  R2S operators:  ISTREAM: stream out data in the last step that wasn’t on the previous step  DSTREAM: stream out data in the previous step that isn’t in the last step  RSTREAM: stream out all data in the last step http://streamreasoning.org/sr4ld2013 22
  • 23. Other operators  Sequence operators and CEP world e4 S e1 e2 e3 1 3 6 Sequence 9 Simultaneous  SEQ: joins eti,tf and e’ti’,tf’ if e’ occurs after e  EQUALS: joins eti,tf and e’ti’,tf’ if they occur simultaneously  OPTIONALSEQ, OPTIONALEQUALS: Optional join variants http://streamreasoning.org/sr4ld2013 23
  • 24. Existing RSP systems  C-SPARQL: RDF Store + Stream processor • Combined architecture RDF Store C-SPARQL query translator Stream processor continuous results  CQELS: Implemented from scratch. Focus on performance • Native + adaptive joins for static-data and streaming data CQELS query Native RSP continuous results Disclaimer: oversimplified descriptions http://streamreasoning.org/sr4ld2013 24
  • 25. Existing RSP systems  EP-SPARQL: Complex-event detection • SEQ, EQUALS operators EP-SPARQL query Prolog engine translator continuous results  SPARQLStream: Ontology-based stream query answering • • Virtual RDF views, using R2RML mappings SPARQL stream queries over the original data streams. SPARQLStream query rewriter DSMS/CEP continuous results R2RML mappings  Instans: RETE-based evaluation Disclaimer: oversimplified descriptions http://streamreasoning.org/sr4ld2013 25
  • 26. Query languages syntax SELECT ?sensor FROM NAMED STREAM <http://www.cwi.nl/SRBench/observations> [NOW-3 HOURS SLIDE 10 MINUTES] WHERE { Stream ?observation om-owl:procedure ?sensor ; om-owl:observedProperty weather:WindSpeed ; om-owl:result [ om-owl:floatValue ?value ] . } GROUP BY ?sensor HAVING ( AVG(?value) >= "74"^^xsd:float ) SPARQL SELECT ?sensor FROM STREAM <http://www.cwi.nl/SRBench/observations> [RANGE 1h STEP 10m] WHERE { ?observation om-owl:procedure ?sensor ; om-owl:observedProperty weather:WindSpeed ; om-owl:result [ om-owl:floatValue ?value ] . } GROUP BY ?sensor HAVING ( AVG(?value) >= "74"^^xsd:float ) C-SPARQL SELECT ?sensor WHERE { STREAM <http://www.cwi.nl/SRBench/observations> [RANGE 10800s SLIDE 600s] { ?observation om-owl:procedure ?sensor ; om-owl:observedProperty weather:WindSpeed ; om-owl:result [ om-owl:floatValue ?value ] .} } GROUP BY ?sensor HAVING ( AVG(?value) >= "74"^^xsd:float ) CQELS http://streamreasoning.org/sr4ld2013 26
  • 27. Time function Sequence, Co-ocurrence R2S operator Triple window Time window Aggregates Union, Join, Optional, Filter Continuous execution Model Classification of existing systems TASPARQL TA-RDF ✗ ✔ Limited ✗ ✗ ✗ ✗ ✗ tSPARQL tRDF ✗ ✔ ✗ ✗ ✗ ✗ ✗ ✗ Streaming SPARQL RDF Stream ✔ ✔ ✗ ✔ ✔ ✗ ✗ ✗ C-SPARQL RDF Stream ✔ ✔ ✔ ✔ ✔ ✗ ✗ ✔ CQELS RDF Stream ✔ ✔ ✔ ✔ ✔ ✗ ✗ ✗ SPARQLStr eam (Virtual) RDF Stream ✔ ✔ ✔ ✔ ✗ ✔ ✗ ✗ EPSPARQL RDF Stream ✔ ✔ ✔ ✗ ✗ ✗ ✔ ✗ Instans RDF ✔ ✔ ✔ ✗ ✗ ✗ ✗ ✗ Disclaimer: other features may be missing http://streamreasoning.org/sr4ld2013 27
  • 28. RDF Stream Processors Can we compare these RSPs? Do RSPs behave the same? Do we get the same results form RSPs? http://streamreasoning.org/sr4ld2013 28
  • 29. Operational Semantics Where are both alice and bob in the last 5s? S S1 S2 S3 S4 1 3 6 9 System 1: System 2: :hall [5] :hall [3] Both correct? t :kitchen [10] :kitchen [10] Find out more later this week on the ISWC Evaluation Track! Thursday at noon! http://streamreasoning.org/sr4ld2013 29
  • 30. SECRET Model: understand operational semantics t0: When does the windowing start? (internal window param) REPORT: When is the window content made available to the R2R operator? WINDOW Non-empty content, Content-change, CONTENT: Which Window-close, Periodic stream elements are in the window? R2R operator ω β TICK: When the data stream are inserted in the window? Triple-based vs graph-based S W(ω,β) S1 S3 S2 S4 S6 S5 S7 S9 S11 S8 S10 S12 t http://streamreasoning.org/sr4ld2013 30
  • 31. SECRET model classification CQELS Report Content-change Tick Tuple-driven Empty relation No notification C-SPARQL SPARQLstream Window-close Non-empty content Window-close Non-empty content Tuple-driven Tuple-driven Yes No  Characterize non-window-based RSPs?  Multiple streams?, reasoning?, linking with static data? http://streamreasoning.org/sr4ld2013 31
  • 33. Functional Evaluation System Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8 Q9 Q10 Q11 Q12 G G,IF SD SPARQLStream PP A G G CQELS PP A D/N IF PP PP PP PP PP PP C-SPARQL PP A D IF PP PP PP PP PP PP SD Q13 Q14 Q15 Q16 Q17 PP,SD PP,SD PP,SD PP,SD PP,SD PP,SD Ask Dstream Group by and aggregations IF expression Negation Property Path Static Dataset http://streamreasoning.org/sr4ld2013 33
  • 34. A lot to do…  Agree on an RDF model? • • • • Metamodel? Timestamps in graphs? Timestamp intervals Compatibility with normal (static) RDF  Additional operators for SPARQL? • • • Windows (not only time based?) CEP operators Semantics  Go Web • • • Volatile URIs Serialization: terse, compact Protocols: HTTP, Websockets? http://streamreasoning.org/sr4ld2013 34
  • 35. References  Arasu, A., Babu, S., Widom, J.: The CQL continuous query language : semantic foundations. The VLDB Journal 15(2) (2006) 121–142  Barbieri, D.F., Braga, D., Ceri, S., Della Valle, E., Grossniklaus, M.: C-SPARQL: A continuous query language for RDF data streams. IJSC 4(1) (2010) 3–25  Botan, I., Derakhshan, R., Dindar, N., Haas, L., Miller, R.J., Tatbul, N.: Secret:A model for analysis of the execution semantics of stream processing systems. PVLDB 3(1) (2010) 232–243  Calbimonte, J.P., Jeung, H., Corcho, O., Aberer, K.: Enabling Query Technologies for the Semantic Sensor Web. IJSWIS 8(1) (2012) 43–63  Le-Phuoc, D., Dao-Tran, M., Xavier Parreira, J., Hauswirth, M.: A native and adaptive approach for unified processing of linked streams and linked data. In: ISWC. (2011) 370–388  Anicic, D., Fodor, P., Rudolph, S., Stojanovic, N.: EP-SPARQL: a unified language for event processing and stream reasoning. In: WWW. (2011) 635–644 http://streamreasoning.org/sr4ld2013 35
  • 36. Stream Reasoning For Linked Data M. Balduini, J-P Calbimonte, O. Corcho, D. Dell'Aglio, E. Della Valle, and J.Z. Pan http://streamreasoning.org/sr4ld2013 RDF stream processing models Daniele Dell’Aglio, daniele.dellaglio@polimi.it Jean-Paul Cabilmonte, jp.calbimonte@upm.es