forked from AliceO2Group/QualityControl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmultinode-test.json.in
More file actions
128 lines (128 loc) · 3.36 KB
/
Copy pathmultinode-test.json.in
File metadata and controls
128 lines (128 loc) · 3.36 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
126
127
128
{
"qc": {
"config": {
"database": {
"implementation": "CCDB",
"host": "ali-qcdb-test.cern.ch:8083",
"username": "not_applicable",
"password": "not_applicable",
"name": "not_applicable"
},
"Activity": {
"number": "42",
"type": "NONE",
"start": "8000000",
"end": "9000000"
},
"monitoring": {
"url": "infologger:///debug?qc"
},
"consul": {
"url": ""
},
"conditionDB": {
"url": "localhost:8083"
}
},
"tasks": {
"MultiNodeLocalTest@UNIQUE_PORT_1@": {
"active": "true",
"taskName": "MNLTest@UNIQUE_PORT_1@",
"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": "sampling1"
},
"taskParameters": {},
"location": "local",
"localMachines": [
"localhost"
],
"remoteMachine": "localhost",
"remotePort": "@UNIQUE_PORT_1@",
"mergingMode": "delta"
},
"MultiNodeRemoteTest@UNIQUE_PORT_2@": {
"active": "true",
"taskName": "MNRTest@UNIQUE_PORT_2@",
"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": "sampling2"
},
"taskParameters": {},
"location": "remote",
"remoteMachine": "localhost"
}
},
"checks": {
"MultiNodeLocalTest": {
"active": "true",
"className": "o2::quality_control_modules::skeleton::SkeletonCheck",
"moduleName": "QcSkeleton",
"policy": "OnAny",
"detectorName": "TST",
"dataSource": [{
"type": "Task",
"name": "MultiNodeLocalTest@UNIQUE_PORT_1@",
"MOs": ["example"]
}]
},
"MultiNodeRemoteTest": {
"active": "true",
"className": "o2::quality_control_modules::skeleton::SkeletonCheck",
"moduleName": "QcSkeleton",
"policy": "OnAny",
"detectorName": "TST",
"dataSource": [{
"type": "Task",
"name": "MultiNodeRemoteTest@UNIQUE_PORT_2@",
"MOs": ["example"]
}]
}
}
},
"dataSamplingPolicies": [
{
"id": "sampling1",
"active": "true",
"machines": [
"localhost"
],
"query": "data:TST/RAWDATA",
"samplingConditions": [
{
"condition": "random",
"fraction": "1.0",
"seed": "1234"
}
],
"blocking": "false"
},
{
"id": "sampling2",
"active": "true",
"machines": [
"localhost"
],
"port": "@UNIQUE_PORT_2@",
"query": "data:TST/RAWDATA",
"samplingConditions": [
{
"condition": "random",
"fraction": "1.0",
"seed": "1234"
}
],
"blocking": "false"
}
]
}