-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathmultiNode.json
More file actions
125 lines (125 loc) · 3.14 KB
/
multiNode.json
File metadata and controls
125 lines (125 loc) · 3.14 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"qc": {
"config": {
"database": {
"implementation": "CCDB",
"host": "ccdb-test.cern.ch:8080",
"username": "not_applicable",
"password": "not_applicable",
"name": "not_applicable"
},
"Activity": {
"number": "42",
"type": "NONE"
},
"monitoring": {
"url": "infologger:///debug?qc"
},
"consul": {
"url": ""
},
"conditionDB": {
"url": "ccdb-test.cern.ch:8080"
}
},
"tasks": {
"MultiNodeLocal": {
"active": "true",
"className": "o2::quality_control_modules::skeleton::SkeletonTask",
"moduleName": "QcSkeleton",
"detectorName": "TST",
"cycleDurationSeconds": "10",
"dataSource_comment": "The other type of dataSource is \"direct\", see basic-no-sampling.json.",
"dataSource": {
"type": "dataSamplingPolicy",
"name": "rnd-many"
},
"taskParameters": {},
"location": "local",
"localMachines": [
"localnode1",
"localnode2"
],
"remoteMachine": "qcnode1",
"remotePort": "30132",
"mergingMode": "delta"
},
"MultiNodeRemote": {
"active": "true",
"className": "o2::quality_control_modules::skeleton::SkeletonTask",
"moduleName": "QcSkeleton",
"detectorName": "TST",
"cycleDurationSeconds": "10",
"dataSource_comment": "The other type of dataSource is \"direct\", see basic-no-sampling.json.",
"dataSource": {
"type": "dataSamplingPolicy",
"name": "rnd-little"
},
"taskParameters": {},
"location": "remote"
}
},
"checks": {
"MultiNodeLocalCheck": {
"active": "true",
"className": "o2::quality_control_modules::skeleton::SkeletonCheck",
"moduleName": "QcSkeleton",
"policy": "OnAny",
"detectorName": "TST",
"dataSource": [{
"type": "Task",
"name": "MultiNodeLocal",
"MOs": ["example"]
}]
},
"MultiNodeRemoteCheck": {
"active": "true",
"className": "o2::quality_control_modules::skeleton::SkeletonCheck",
"moduleName": "QcSkeleton",
"policy": "OnAny",
"detectorName": "TST",
"dataSource": [{
"type": "Task",
"name": "MultiNodeRemote",
"MOs": ["example"]
}]
}
}
},
"dataSamplingPolicies": [
{
"id": "rnd-many",
"active": "true",
"machines": [
"localnode1",
"localnode2"
],
"query": "data:TST/RAWDATA",
"samplingConditions": [
{
"condition": "random",
"fraction": "0.5",
"seed": "1234"
}
],
"blocking": "false"
},
{
"id": "rnd-little",
"active": "true",
"machines": [
"localnode2"
],
"port": "30333",
"query": "data:TST/RAWDATA",
"samplingConditions": [
{
"condition": "random",
"fraction": "0.05",
"seed": "1234"
}
],
"blocking": "false"
}
]
}