SECTION 6 Job Status and Control Functions


Functions

int drmaa_control (const char *jobid, int action, char *error_diagnosis, size_t error_diag_len)
int drmaa_job_ps (const char *job_id, int *remote_ps, char *error_diagnosis, size_t error_diag_len)

Function Documentation

int drmaa_control ( const char *  jobid,
int  action,
char *  error_diagnosis,
size_t  error_diag_len 
)

This function allows the job specified by jobid to be controlled according to a given action. Possible action to be performed over a given job are:

Parameters:
jobid String with the job unique identification as provided by the GridWay system. The jobid SHOULD be obtained from a drmaa_run_job() or drmaa_run_bulk_jobs() function calls.
action The action to be performed over the job whose value may be one of the following: DRMAA_CONTROL_SUSPEND, DRMAA_CONTROL_RESUME, DRMAA_CONTROL_TERMINATE, DRMAA_CONTROL_HOLD or DRMAA_CONTROL_RELEASE.
error_diagnosis string of characters with error related diagnosis information. The error diagnosis buffer will be filled in case of error. If the size of error_diagnosis buffer passed is smaller than the error message the resultant string will be truncated.
error_diag_len size of the error_diagnosis buffer. DRMAA_ERROR_STRING_BUFFER can be used for error_diag_len when appropiate.
Returns:
  • DRMAA_ERRNO_SUCCESS on success.
  • DRMAA_ERRNO_INTERNAL_ERROR if action is not defined or supported.
  • DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE could not contact GridWay
  • DRMAA_ERRNO_NO_ACTIVE_SESSION if drmaa_init() function has not been previously called.
  • DRMAA_ERRNO_INVALID_ARGUMENT undefined control operation
  • DRMAA_ERRNO_INVALID_JOB the job does not exist or has already been reaped
  • DRMAA_ERRNO_HOLD_INCONSISTENT_STATE the HOLD action could not be performed
  • DRMAA_ERRNO_RELEASE_INCONSISTENT_STATE the RELEASE action could not be performed
  • DRMAA_ERRNO_RESUME_INCONSISTENT_STATE the RESUME action could not be performed
  • DRMAA_ERRNO_SUSPEND_INCONSISTENT_STATE the SUSPEND action could not be performed

int drmaa_job_ps ( const char *  job_id,
int *  remote_ps,
char *  error_diagnosis,
size_t  error_diag_len 
)

Obtains the status of a given job.

Parameters:
*job_id String with the job unique identification as provided by the GridWay system. The jobid SHOULD be obtained from a drmaa_run_job() or drmaa_run_bulk_jobs() function calls.
*remote_ps The actual state of the job. remote_ps can be one of the following:
  • DRMAA_PS_UNDETERMINED: An UNDETERMINED state can either obtained due to a communication error with the GridWay daemon, or because the job has not been initialized yet.

The GridWay DRMAA implementation does not define the following actions: DRMAA_PS_SYSTEM_ON_HOLD, DRMAA_PS_USER_SYSTEM_ON_HOLD, DRMAA_PS_SYSTEM_SUSPENDED and DRMAA_PS_USER_SYSTEM_SUSPENDED.

Parameters:
error_diagnosis string of characters with error related diagnosis information. The error diagnosis buffer will be filled in case of error. If the size of error_diagnosis buffer passed is smaller than the error message the resultant string will be truncated.
error_diag_len size of the error_diagnosis buffer. DRMAA_ERROR_STRING_BUFFER can be used for error_diag_len when appropiate.
Returns:
  • DRMAA_ERRNO_SUCCESS on success.
  • DRMAA_ERRNO_INTERNAL_ERROR if action is not defined or supported.
  • DRMAA_ERRNO_DRM_COMMUNICATION_FAILURE could not contact GridWay (remote_ps will be DRMAA_PS_UNDETERMINED)
  • DRMAA_ERRNO_INVALID_JOB the job does not exist or has already been reaped
  • DRMAA_ERRNO_NO_ACTIVE_SESSION if drmaa_init() function has not been previously called.