From 6c237e045be0028ada394f5c4851711203ed12f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Voc=C5=AF?= Date: Mon, 26 Sep 2011 11:16:32 +0000 Subject: [PATCH] Torque event types --- org.glite.lb.types/events.T | 44 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/org.glite.lb.types/events.T b/org.glite.lb.types/events.T index 4c5d6f0..aa475e8 100644 --- a/org.glite.lb.types/events.T +++ b/org.glite.lb.types/events.T @@ -251,10 +251,45 @@ @flesh PBS +@type PBSInternalStateChange Change of internal PBS job state + int oldstate + int oldsubstate + int newstate + int newsubstate + + +@type PBSTransfer Start, success, or failure of job transfer to another component. + logsrc destination Destination where the job is being transfered to. + string dest_instance Service (instance) that takes over control of the job. + _optional_ + int result Result code of the transfer attempt (START, OK, REFUSED or FAIL). + _code_ START The sending component has started or is about to start the transfer. + _code_ OK The job was sent successfully. + _code_ REFUSED The job was refused by the other component. + _code_ FAIL The transfer failed for other reason than explicit refusal (eg. network timeout). + string reason Detailed description of the transfer, especially reason of failure. + _optional_ + string dest_jobid Job id as assigned by the receiving software component. + _optional_ + +@type PBSAccepted Accepting job (successful counterpart to Transfer). + logsrc from The software component the job was received from. + string from_instance Instance of the component the job was received from. + _optional_ + string local_jobid New job id as assigned by the receiving component. + _optional_ + +@type PBSRefused Refusing job (unsuccessful counterpart to Transfer). + logsrc from The software component that tried to send the job. + string from_instance Instance of the component that tried to send the job. + _optional_ + string reason Description of the reason why the job was refused. + _optional_ + @type PBSQueued Job enqued string queue Queue name - string owner Job owner - string name Job name + +@type PBSDequeued Job dequeued @type PBSMatch Scheduler created exec host string dest_host Aka exec host @@ -262,6 +297,8 @@ @type PBSPending Scheduler is not able to find exec host, or some error occured string reason Reasons of job pendation or errors +@type PBSWaiting Job is waiting for some condition + @type PBSRun Job attempted to be run by the logging component string scheduler Scheduler ID _optional_ @@ -272,11 +309,12 @@ @type PBSRerun Job rerun requested +@type PBSAbort Job aborted + @type PBSDone Job terminated int exit_status Exit status _optional_ Bypass need of 'null value' -@type PBSDequeued Job dequeued @type PBSResourceUsage Resources requested/consumed int usage Type of record -- 1.8.2.3