Source code for drmaaexecution

# Copyright 2011-2014 Biomedical Imaging Group Rotterdam, Departments of
# Medical Informatics and Radiology, Erasmus MC, Rotterdam, The Netherlands
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from abc import abstractmethod
import os
import Queue
import sys
import threading
import time

import fastr
from fastr import exceptions
from fastr.core.baseplugin import PluginState

try:
    import drmaa
    load_drmaa = True
except (ImportError, RuntimeError):
    load_drmaa = False

from fastr.execution.job import JobState
from fastr.execution.executionpluginmanager import ExecutionPlugin
from fastr.utils.classproperty import classproperty


class FastrDRMAANotFoundError(exceptions.FastrImportError):
    """
    Indicate the DRMAA module was not found on the system.
    """
    pass


class FastrDRMAANotFunctionalError(exceptions.FastrError):
    """
    Indicate DRMAA is found but creating a session did not work
    """
    pass


class DRMAAExecution(ExecutionPlugin):
    """
    A DRMAA execution plugin to execute Jobs on a Grid Engine cluster. It uses
    a configuration option for selecting the queue to submit to. It uses the
    python ``drmaa`` package.

    .. note::

        To use this plugin, make sure the ``drmaa`` package is installed and
        that the execution is started on an SGE submit host with DRMAA
        libraries installed.

    .. note::

        This plugin is at the moment tailored to SGE, but it should be fairly
        easy to make different subclasses for different DRMAA supporting
        systems.
    """
    if not load_drmaa:
        _status = (PluginState.failed, 'Could not load DRMAA module required for cluster communication')

    # DRMAA Supports cancelling jobs, job dependencies and hold release actions
    SUPPORTS_CANCEL = True
    SUPPORTS_DEPENDENCY = True
    SUPPORTS_HOLD_RELEASE = True
    CANCELS_DEPENDENCIES = False

    GE_NATIVE_SPEC = {
        'CWD': '-cwd',
        'QUEUE': '-q {queue}',
        'WALLTIME': '-l h_rt={walltime}',
        'MEMORY': '-l h_vmem={memory}',
        'NCORES': '-pe smp {ncores:d}',
        'OUTPUTLOG': '-o {outputlog}',
        'ERRORLOG': '-e {errorlog}',
        'DEPENDS': '-hold_jid {hold_list}',
        'DEPENDS_SEP': ',',
        'HOLD': '-h',
    }

    TORQUE_NATIVE_SPEC = {
        'CWD': '',
        'QUEUE': '-q {queue}',
        'WALLTIME': '-l walltime={walltime}',
        'MEMORY': '-l mem={memory}',
        'NCORES': '-l procs={ncores:d}',
        'OUTPUTLOG': '-o {outputlog}',
        'ERRORLOG': '-e {errorlog}',
        'DEPENDS': '-W depend=afterok:{hold_list}',
        'DEPENDS_SEP': ':',
        'HOLD': '-h',
    }

    NATIVE_SPEC = {
        'grid_engine': GE_NATIVE_SPEC,
        'torque': TORQUE_NATIVE_SPEC,
    }

[docs] def __init__(self, finished_callback=None, cancelled_callback=None, status_callback=None): super(DRMAAExecution, self).__init__(finished_callback, cancelled_callback, status_callback) # Some default self.default_queue = fastr.config.drmaa_queue self.max_jobs = fastr.config.drmaa_max_jobs self.engine = fastr.config.drmaa_engine self.current_jobs = 0 # Number of currently submitted jobs # Create the DRMAA session try: self.session = drmaa.Session() self.session.initialize() except drmaa.errors.DrmaaException as exception: raise FastrDRMAANotFunctionalError('Encountered an error when creating DRMAA session: [{}] {}'.format( exception.__class__, str(exception) )) fastr.log.debug('A DRMAA session was started successfully') response = self.session.contact fastr.log.debug('session contact returns: ' + response) # Create job translation table self.job_translation_table = dict() self.job_lookup_table = dict() # Create even queue lock self.submit_queue = Queue.Queue() # Create callback collector and job submitter self.running = True fastr.log.debug('Creating job collector') self.collector = threading.Thread(name='DRMAAJobCollector-0', target=self.collect_jobs, args=()) self.collector.daemon = True fastr.log.debug('Starting job collector') self.collector.start() fastr.log.debug('Creating job submitter') self.submitter = threading.Thread(name='DRMAAJobSubmitter-0', target=self.submit_jobs, args=()) self.submitter.daemon = True fastr.log.debug('Starting job submitter') self.submitter.start()
@classproperty def configuration_fields(cls): return { "drmaa_queue": (str, "week", "The default queue to use for jobs send to the scheduler"), "drmaa_max_jobs": (int, 0, "The maximum jobs that can be send to the scheduler" " at the same time (0 for no limit)"), "drmaa_engine": (str, "grid_engine", "The engine to use (options: grid_engine, torque"), } @classmethod
[docs] def test(cls): if not load_drmaa: raise FastrDRMAANotFoundError('Could not import the required drmaa for this plugin')
@property def spec_fields(self): return self.NATIVE_SPEC[self.engine]
[docs] def cleanup(self): # Stop submissions and callbacks self.running = False # Signal collector thread to stop running super(DRMAAExecution, self).cleanup() # See if there are leftovers in the job translation table that can be cancelled while len(self.job_translation_table) > 0: drmaa_job_id, job = self.job_translation_table.popitem() fastr.log.info('Terminating left-over job {}'.format(drmaa_job_id)) self.session.control(drmaa_job_id, 'terminate') fastr.log.debug('Stopping DRMAA executor') # Destroy DRMAA try: self.session.exit() fastr.log.debug('Exiting DRMAA session') except drmaa.NoActiveSessionException: pass if self.collector.isAlive(): fastr.log.debug('Terminating job collector thread') self.collector.join() if self.submitter.isAlive(): fastr.log.debug('Terminating job submitter thread') self.submitter.join() fastr.log.debug('DRMAA executor stopped!')
def _queue_job(self, job): self.submit_queue.put(job, block=True) def _cancel_job(self, job): try: drmaa_job_id = self.job_lookup_table.pop(job.id) except KeyError: fastr.log.info('Job {} not found in DRMAA lookup'.format(job.id)) return fastr.log.debug('Cancelling job {}'.format(drmaa_job_id)) try: self.session.control(drmaa_job_id, drmaa.JobControlAction.TERMINATE) except drmaa.InvalidJobException: fastr.log.warning('Trying to cancel an unknown job, already finished/cancelled?') try: del self.job_translation_table[drmaa_job_id] except KeyError: pass # This job is already gone def _release_job(self, job): drmaa_job_id = self.job_lookup_table.get(job.id, None) if drmaa_job_id: self.session.control(drmaa_job_id, drmaa.JobControlAction.RELEASE) else: fastr.log.error('Cannot release job {}, cannot find the drmaa id!'.format(job.id)) def _job_finished(self, result): pass
[docs] def create_native_spec(self, queue, walltime, memory, ncores, outputLog, errorLog, hold_job, hold): """ Create the native spec for the DRMAA scheduler. Needs to be implemented in the subclasses :param str queue: the queue to submit to :param str walltime: walltime specified :param str memory: memory requested :param int ncores: number of cores requested :param str outputLog: the location of the stdout log :param str errorLog: the location of stderr log :param list hold_job: list of jobs to depend on :param bool hold: flag if job should be submitted in hold mode :return: """ native_spec = [] native_spec.append(self.spec_fields['CWD'].format(os.path.abspath(os.curdir))) native_spec.append(self.spec_fields['QUEUE'].format(queue=queue)) if walltime is not None: native_spec.append(self.spec_fields['WALLTIME'].format(walltime=walltime)) if memory is not None: native_spec.append(self.spec_fields['MEMORY'].format(memory=memory)) if ncores is not None: native_spec.append(self.spec_fields['NCORES'].format(ncores=ncores)) if outputLog is not None: native_spec.append(self.spec_fields['OUTPUTLOG'].format(outputlog=outputLog)) if errorLog is not None: native_spec.append(self.spec_fields['ERRORLOG'].format(errorlog=errorLog)) if hold_job is not None: if isinstance(hold_job, int): native_spec.append(self.spec_fields['DEPENDS'].format(hold_list=hold_job)) elif isinstance(hold_job, list) or isinstance(hold_job, tuple): if len(hold_job) > 0: jid_list = self.spec_fields['DEPENDS_SEP'].join([str(x) for x in hold_job]) native_spec.append(self.spec_fields['DEPENDS'].format(hold_list=jid_list)) else: fastr.log.error('Incorrect hold_job type!') if hold: # Add a user hold to the job native_spec.append(self.spec_fields['HOLD']) return ' '.join(native_spec)
# FIXME This needs to be more generic! This is for our SGE cluster only!
[docs] def send_job(self, command, arguments, queue=None, walltime=None, job_name=None, memory=None, ncores=None, joinLogFiles=False, outputLog=None, errorLog=None, hold_job=None, hold=False): # Create job template jt = self.session.createJobTemplate() jt.remoteCommand = command jt.args = arguments jt.joinFiles = joinLogFiles env = os.environ # Make sure environment modules do not annoy use with bash warnings # after the shellshock bug was fixed env.pop('BASH_FUNC_module()', None) env['PBS_O_INITDIR'] = os.path.abspath(os.curdir) jt.jobEnvironment = env if queue is None: queue = self.default_queue # Get native spec from subclass native_spec = self.create_native_spec( queue=queue, walltime=walltime, memory=memory, ncores=ncores, outputLog=outputLog, errorLog=errorLog, hold_job=hold_job, hold=hold ) fastr.log.debug('Setting native spec to: {}'.format(native_spec)) jt.nativeSpecification = native_spec if job_name is None: job_name = command job_name = job_name.replace(' ', '_') job_name = job_name.replace('"', '') if len(job_name) > 32: job_name = job_name[0:32] jt.jobName = job_name # Send job to cluster job_id = self.session.runJob(jt) # Remove job template self.session.deleteJobTemplate(jt) return job_id
[docs] def submit_jobs(self): while self.running: try: # Max jobs is larger than zero (set) and less/equal than current jobs (full) if 0 < self.max_jobs <= self.current_jobs: time.sleep(1) continue job = self.submit_queue.get(block=True, timeout=2) # Get job command and write to file command = [sys.executable, os.path.join(fastr.config.executionscript), job.commandfile] fastr.log.debug('Command to queue: {}'.format(command)) # Make sure we do not submit after it stopped running if not self.running: break fastr.log.debug('Queueing {} [{}] via DRMAA'.format(job.id, job.status)) # Submit command to scheduler self.current_jobs += 1 cl_job_id = self.send_job(command[0], command[1:], job_name='fastr_{}'.format(job.id), memory=job.required_memory, ncores=job.required_cores, walltime=job.required_time, outputLog=job.stdoutfile, errorLog=job.stderrfile, hold_job=[self.job_lookup_table[x] for x in job.hold_jobs if x in self.job_lookup_table], hold=job.status == JobState.hold, ) # Register job in the translation tables self.job_translation_table[cl_job_id] = job fastr.log.debug('Inserting {} in lookup table pointing to {}'.format(job.id, cl_job_id)) self.job_lookup_table[job.id] = cl_job_id fastr.log.info('Job {} queued via DRMAA as {}'.format(job.id, cl_job_id)) # Set the queue lock to indicate there is content in the queue except Queue.Empty: pass fastr.log.info('DRMAA submission thread ended!')
[docs] def collect_jobs(self): while self.running: # Wait for the queue to contain try: info = self.session.wait(drmaa.Session.JOB_IDS_SESSION_ANY, 5) except drmaa.ExitTimeoutException: continue except drmaa.InvalidJobException: fastr.log.debug('No jobs left (session queue appears to be empty)') time.sleep(2) # Sleep 2 seconds and try again continue except drmaa.NoActiveSessionException: if not self.running: fastr.log.debug('DRMAA session no longer active, quiting collector...') else: fastr.log.critical('DRMAA session no longer active, but DRMAA executor not stopped properly! Quitting') self.running = False continue except drmaa.errors.DrmaaException as exception: # Avoid the collector getting completely killed on another DRMAA exception fastr.log.warning('Encountered unexpected DRMAA exception: {}'.format(exception)) continue except Exception as exception: if exception.message.startswith('code 24:'): # Avoid the collector getting completely killed this specific exception # This is generally a job that got cancelled or something similar fastr.log.warning('Encountered (probably harmless) DRMAA exception: {}'.format(exception)) continue else: fastr.log.error('Encountered unexpected exception: {}'.format(exception)) continue fastr.log.debug('Cluster DRMAA job {} finished'.format(info.jobId)) # Create a copy of the job that finished and remove from the translation table errors = [] job = self.job_translation_table.pop(info.jobId, None) self.current_jobs -= 1 if info.hasSignal: errors.append(exceptions.FastrError('Job exited because of a signal, this might mean it got killed because it attempted to use too much memory (or other resources)').excerpt()) if job is not None: # Send the result to the callback function try: del self.job_lookup_table[job.id] except KeyError: fastr.log.warning('Found an inconsistency in the job_lookup_table, cannot find job to remove') self.job_finished(job, errors=errors) else: fastr.log.warning('Job {} no longer available (got cancelled?)'.format(info.jobId)) fastr.log.info('DRMAA collection thread ended!')