]> git.uio.no Git - u/mrichter/AliRoot.git/blame - SHUTTLE/schema/shuttle.schema
Detectors can have more than one AMANDA server. SHUTTLE queries the servers sequentially,
[u/mrichter/AliRoot.git] / SHUTTLE / schema / shuttle.schema
CommitLineData
2243ad85 1objectidentifier SHUTTLE_BASE 1.1.1
2
3objectidentifier DETECTOR_CONFIG SHUTTLE_BASE:1
4
1d172743 5attributetype ( DETECTOR_CONFIG:1 NAME 'det' DESC 'Detector name' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
6attributetype ( DETECTOR_CONFIG:6 NAME 'strictRunOrder' DESC 'Strict run ordering flag' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
7attributetype ( DETECTOR_CONFIG:7 NAME 'responsible' DESC 'responsible email address' EQUALITY caseIgnoreIA5Match SUP mail )
2243ad85 8
9objectclass ( DETECTOR_CONFIG
1d172743 10 NAME 'detectorConfig'
73abe331 11 DESC 'ALICE: Shuttle configuration object.'
12 SUP top
1d172743 13 MUST (det $ strictRunOrder)
14 MAY (responsible) )
15
16objectidentifier DCS_CONFIG SHUTTLE_BASE:2
17
18attributetype ( DCS_CONFIG:1 NAME 'dcsHost' DESC 'DCS host' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
19attributetype ( DCS_CONFIG:2 NAME 'dcsPort' DESC 'DCS port' SUP ipServicePort SINGLE-VALUE )
20attributetype ( DCS_CONFIG:3 NAME 'dcsAlias' DESC 'alias name(s)' EQUALITY caseIgnoreMatch SUP name )
21attributetype ( DCS_CONFIG:4 NAME 'dcsDP' DESC 'Data Point name(s)' EQUALITY caseIgnoreMatch SUP name )
22
23objectclass ( DCS_CONFIG
24 NAME 'dcsConfig'
25 DESC 'ALICE: Shuttle configuration of the DCS Amanda server(s).'
26 SUP top
27 MUST (dcsHost $ dcsPort)
28 MAY (dcsAlias $ dcsDP) )
29
30objectidentifier FXS_CONFIG SHUTTLE_BASE:3
31
32attributetype ( FXS_CONFIG:1 NAME 'system' DESC 'System name (DAQ, DCS, HLT)' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
33attributetype ( FXS_CONFIG:2 NAME 'dbHost' DESC 'FXS MySQL DB host' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
34attributetype ( FXS_CONFIG:3 NAME 'dbPort' DESC 'FXS MySQL DB port' SUP ipServicePort SINGLE-VALUE )
35attributetype ( FXS_CONFIG:4 NAME 'dbUser' DESC 'FXS MySQL DB user' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
36attributetype ( FXS_CONFIG:5 NAME 'dbPasswd' DESC 'FXS MySQL DB passwd' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
37attributetype ( FXS_CONFIG:6 NAME 'dbName' DESC 'FXS MySQL DB name' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
38attributetype ( FXS_CONFIG:7 NAME 'dbTable' DESC 'FXS MySQL DB table' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
39attributetype ( FXS_CONFIG:8 NAME 'fxsHost' DESC 'FXS host' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
40attributetype ( FXS_CONFIG:9 NAME 'fxsPort' DESC 'FXS port' SUP ipServicePort SINGLE-VALUE )
41attributetype ( FXS_CONFIG:10 NAME 'fxsUser' DESC 'FXS user' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
42attributetype ( FXS_CONFIG:11 NAME 'fxsPasswd' DESC 'FXS Password' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
43
44objectclass ( FXS_CONFIG
45 NAME 'fxsConfig'
46 DESC 'ALICE: Configuration of the Shuttle for access to the File Exchange Servers'
855a45d0 47 SUP top
1d172743 48 MUST (system $ dbHost $ dbUser $ dbPasswd $ dbName $ dbTable $ fxsHost $ fxsUser )
49 MAY ( dbPort $ fxsPasswd $ fxsPort) )
855a45d0 50
51
1d172743 52objectidentifier GLOBAL_CONFIG SHUTTLE_BASE:4
2243ad85 53
1d172743 54attributetype ( GLOBAL_CONFIG:1 NAME 'daqLbHost' DESC 'DAQ Logbook host' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
55attributetype ( GLOBAL_CONFIG:2 NAME 'daqLbPort' DESC 'DAQ Logbook port' SUP ipServicePort SINGLE-VALUE )
56attributetype ( GLOBAL_CONFIG:3 NAME 'daqLbUser' DESC 'DAQ Logbook user' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
57attributetype ( GLOBAL_CONFIG:4 NAME 'daqLbPasswd' DESC 'DAQ Logbook passwd' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
58attributetype ( GLOBAL_CONFIG:5 NAME 'daqLbDB' DESC 'DAQ Logbook DB' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
59attributetype ( GLOBAL_CONFIG:6 NAME 'daqLbTable' DESC 'DAQ Logbook table' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
60attributetype ( GLOBAL_CONFIG:7 NAME 'shuttleLbTable' DESC 'SHUTTLE Logbook table' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
61attributetype ( GLOBAL_CONFIG:8 NAME 'runTypeLbTable' DESC 'RunType Logbook table' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
62attributetype ( GLOBAL_CONFIG:9 NAME 'ppmaxRetries' DESC 'retries before pp fail' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
63attributetype ( GLOBAL_CONFIG:10 NAME 'ppTimeOut' DESC 'seconds before pp abort' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
64attributetype ( GLOBAL_CONFIG:11 NAME 'ppMaxMem' DESC 'max pp mem consumption (KB)' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
2243ad85 65
66objectclass ( GLOBAL_CONFIG
1d172743 67 NAME 'globalConfig'
68 DESC 'ALICE: settings for DAQ logbook access'
2243ad85 69 SUP top
1d172743 70 MUST (name $ daqLbHost $ daqLbUser $ daqLbPasswd $ daqLbDB $ daqLbTable $ shuttleLbTable $ runTypeLbTable $ ppMaxRetries $ ppTimeOut $ ppMaxMem)
71 MAY ( daqLbPort ) )
2243ad85 72
d477ad88 73
1d172743 74objectidentifier INSTANCE_CONFIG SHUTTLE_BASE:5
2243ad85 75
1d172743 76attributetype ( INSTANCE_CONFIG:1 NAME 'shuttleHost' DESC 'Host that is running the Shuttle' EQUALITY caseIgnoreMatch SUP name SINGLE-VALUE )
2243ad85 77attributetype ( INSTANCE_CONFIG:2 NAME 'detectors' DESC 'Detector list' EQUALITY caseIgnoreMatch SUP name )
78
79objectclass ( INSTANCE_CONFIG
1d172743 80 NAME 'ShuttleInstance'
2243ad85 81 DESC 'ALICE: Shuttle instance configuration.'
82 SUP top
1d172743 83 MUST (name $ shuttleHost)
2243ad85 84 MAY (detectors)
85 )