-
Notifications
You must be signed in to change notification settings - Fork 2
/
sift.json
executable file
·76 lines (76 loc) · 1.56 KB
/
sift.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "mini-elastic",
"display-name": "Mini Elastic Sift",
"description": "",
"author": "Red Sift",
"version": "1.0.0",
"icon": "assets/blueprint.svg",
"interfaces": {
"email": {
"thread" : {
"controller": "dist/js/controller.umd-es2015.min.js"
},
"client" : {
"controller": "dist/js/email-client-controller.umd-es2015.min.js"
}
},
"summary": {
"controller": "dist/js/controller.umd-es2015.min.js"
}
},
"dag": {
"inputs":{
"rpc":{
"search":{
"methods": ["GET"],
"path": "/_search",
"CORS":{}
}
}
},
"nodes":[{
"#": "Index Node",
"implementation": {
"go": "server/load/load.go",
"sandbox": "quay.io/redsift/sandbox-go-rocksdb:v5.8",
"qos": {
"large-storage": ["rocksdb_store:rw"],
"long": true
},
"when":{
"crontab": "0 6 * * *"
}
},
"outputs":{
"stats": {}
}
},{
"#": "Query Node",
"input":{
"bucket": "search"
},
"implementation": {
"go": "server/search/search.go",
"sandbox": "quay.io/redsift/sandbox-go-rocksdb:v5.8",
"qos": {
"large-storage": ["rocksdb_store:ro"]
}
},
"outputs": {
"rpc_resp": {},
"stats":{}
}
}],
"stores":{},
"outputs":{
"exports":{
"stats":{
"key$schema": "string"
},
"rpc_resp": {
"import": "_rpc"
}
}
}
}
}