forked from pbonte/StreamingMASSIF
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquery.json
More file actions
29 lines (26 loc) · 813 Bytes
/
Copy pathquery.json
File metadata and controls
29 lines (26 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"components": {
"file":{"type":"Source","impl":"FileSource","fileName":"examples/sensors/input.stream","timeout":1000},
"print":{"type":"Sink","impl":"PrintSink"},
"window": {"type": "window","size": 10,"slide": 1},
"filter": {"type": "Filter","queries": ["CONSTRUCT{?s ?p ?p.} WHERE {?s ?p ?o}"]}
},
"configuration": {
"file": ["window"],
"window":["filter"],
"filter":["print"]
}
}
{
"components": {
"0":{"type":"Source","impl":"FileSource","fileName":"examples/sensors/input.stream","timeout":1000},
"2": {"type": "window","size": 10,"slide": 1},
"3": {"type": "Filter","queries": ["CONSTRUCT{?s ?p ?p.} WHERE {?s ?p ?o}"]},
"1":{"type":"Sink","impl":"PrintSink"}
},
"configuration": {
"0": ["2"],
"2":["3"],
"3":["1"]
}
}