-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(QC-150) Allow tasks to run without DS (#127)
- Config file : introduction of "dataSource" whose "type" can be either "direct" or "dataSamplingPolicy". - No Dispatcher if direct connection from task to producer. - Introduce a new config file to demonstrate direct connection. - Switching between data-sampling and no data sampling is done in qcBasic with the argument --no-data-sampling - Documentation
- Loading branch information
1 parent
34744a7
commit 6fc581e
Showing
10 changed files
with
151 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"qc": { | ||
"config": { | ||
"database": { | ||
"implementation": "CCDB", | ||
"host": "ccdb-test.cern.ch:8080", | ||
"username": "not_applicable", | ||
"password": "not_applicable", | ||
"name": "not_applicable" | ||
}, | ||
"Activity": { | ||
"number": "42", | ||
"type": "2" | ||
} | ||
}, | ||
"tasks": { | ||
"QcTask": { | ||
"active": "true", | ||
"className": "o2::quality_control_modules::skeleton::SkeletonTask", | ||
"moduleName": "QcSkeleton", | ||
"cycleDurationSeconds": "10", | ||
"maxNumberCycles": "-1", | ||
"dataSource": { | ||
"type": "direct", | ||
"binding": "its-rawdata", | ||
"dataOrigin": "ITS", | ||
"dataDescription": "RAWDATA", | ||
"subSpec": "0" | ||
}, | ||
"taskParameters": { | ||
"nothing": "rien" | ||
}, | ||
"location": "remote" | ||
} | ||
} | ||
}, | ||
"dataSamplingPolicies": [ | ||
|
||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters