PilotStatus

This module contains constants and lists for the possible pilot states.

DIRAC.WorkloadManagementSystem.Client.PilotStatus.ABORTED = 'Aborted'

The pilot execution was aborted:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.DELETED = 'Deleted'

The pilot was deleted:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.DONE = 'Done'

The pilot finished its execution:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.FAILED = 'Failed'

The pilot execution failed:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.PILOT_FINAL_STATES = ['Done', 'Aborted', 'Deleted', 'Failed']

Final states:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.PILOT_STATES = ['Submitted', 'Waiting', 'Running', 'Done', 'Failed', 'Deleted', 'Aborted', 'Unknown', 'Scheduled']

Possible pilot states:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.PILOT_TRANSIENT_STATES = ['Submitted', 'Waiting', 'Scheduled', 'Running', 'Unknown']

Transient states:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.PILOT_WAITING_STATES = ['Submitted', 'Waiting', 'Scheduled']

Waiting states:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.RUNNING = 'Running'

The pilot is running a payload on a worker node:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.SUBMITTED = 'Submitted'

The pilot has been generated and is transferred to a remote site:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.UNKNOWN = 'Unknown'

Cannot get information about the pilot status:

DIRAC.WorkloadManagementSystem.Client.PilotStatus.WAITING = 'Waiting'

The pilot is waiting for a computing resource in a batch queue: