Source code for fyrd.job

# -*- coding: utf-8 -*-
"""
Class and methods to handle Job submission.
"""
import os  as _os
import sys as _sys
from uuid import uuid4 as _uuid
from time import sleep as _sleep
from datetime import datetime as _dt
from subprocess import CalledProcessError as _CalledProcessError

# Try to use dill, revert to pickle if not found
import dill as _pickle
from six import reraise as _reraise

###############################################################################
#                                Our functions                                #
###############################################################################

from . import run     as _run
from . import conf    as _conf
from . import queue   as _queue
from . import logme   as _logme
from . import local   as _local
from . import options as _options
from . import script_runners as _scrpts
from . import ClusterError   as _ClusterError
from .submission_scripts import Script   as _Script
from .submission_scripts import Function as _Function


__all__ = ['Job']

###############################################################################
#                                The Job Class                                #
###############################################################################


[docs]class Job(object): """Information about a single job on the cluster. Holds information about submit time, number of cores, the job script, and more. Below are the core attributes and methods required to use this class. Attributes: out (str): The output of the function or a copy of stdout for a script stdout (str): Any output to STDOUT stderr (str): Any output to STDERR exitcode (int): The exitcode of the running processes (the script runner if the Job is a function. start (datetime): A datetime object containing time execution started on the remote node. end (datetime): Like start but when execution ended. runtime (timedelta): A timedelta object containing runtime. files (list): A list of script files associated with this class done (bool): True if the job has completed Methods: submit(): submit the job if it is ready wait(): block until the job is done get(): block until the job is done and then return the output (stdout if job is a script), by default saves all outputs to self (i.e. .out, .stdout, .stderr) and deletes all intermediate files before returning. If `save` argument is `False`, does not delete the output files by default. clean(): delete any files created by this object Printing or reproducing the class will display detailed job information. Both `wait()` and `get()` will update the queue every few seconds (defined by the queue_update item in the config) and add queue information to the job as they go. If the job disappears from the queue with no information, it will be listed as 'completed'. All jobs have a .submission attribute, which is a Script object containing the submission script for the job and the file name, plus a 'written' bool that checks if the file exists. In addition, SLURM jobs have a .exec_script attribute, which is a Script object containing the shell command to _run. This difference is due to the fact that some SLURM systems execute multiple lines of the submission file at the same time. Finally, if the job command is a function, this object will also contain a `.function` attribute, which contains the script to run the function. """ id = None submitted = False written = False found = False submit_time = None # Holds a pool object if we are in local mode pool_job = None # Scripts submission = None exec_script = None function = None imports = None # Dependencies dependencies = None # Pickled output file for functions poutfile = None # Holds queue information in torque and slurm queue_info = None # Output tracking _got_out = False _got_stdout = False _got_stderr = False _got_exitcode = False _out = None _stdout = None _stderr = None _exitcode = None # Time tracking _got_times = False start = None end = None # Track update status _updating = False # Auto Cleaning clean_files = _conf.get_option('jobs', 'clean_files') clean_outputs = _conf.get_option('jobs', 'clean_outputs') def __init__(self, command, args=None, kwargs=None, name=None, qtype=None, profile=None, **kwds): """Initialization function arguments. Args: command (function/str): The command or function to execute. args (tuple/dict): Optional arguments to add to command, particularly useful for functions. kwargs (dict): Optional keyword arguments to pass to the command, only used for functions. name (str): Optional name of the job. If not defined, guessed. If a job of the same name is already queued, an integer job number (not the queue number) will be added, ie. <name>.1 qtype (str): Override the default queue type profile (str): The name of a profile saved in the conf *All other keywords are parsed into cluster keywords by the options system. For available keywords see `fyrd.option_help()`* """ ######################## # Sanitize arguments # ######################## _logme.log('Args pre-check: {}'.format(kwds), 'debug') kwds = _options.check_arguments(kwds) _logme.log('Args post-check: {}'.format(kwds), 'debug') # Override autoclean state (set in config file) if 'clean_files' in kwds: self.clean_files = kwds.pop('clean_files') if 'clean_outputs' in kwds: self.clean_outputs = kwds.pop('clean_outputs') # Path handling [kwds, self.runpath, self.outpath, self.scriptpath] = _conf.get_job_paths(kwds) # Save command self.command = command self.args = args # Merge in profile, this includes all args from the DEFAULT profile # as well, ensuring that those are always set at a minumum. profile = profile if profile else 'DEFAULT' prof = _conf.get_profile(profile) if not prof: raise _ClusterError('No profile found for {}'.format(profile)) for k,v in prof.args.items(): if k not in kwds: kwds[k] = v # Use the default profile as a backup if any arguments missing default_args = _conf.DEFAULT_PROFILES['DEFAULT'] default_args.update(_conf.get_profile('DEFAULT').args) for opt, arg in default_args.items(): if opt not in kwds: _logme.log('{} not in kwds, adding from default: {}:{}' .format(opt, opt, arg), 'debug') kwds[opt] = arg # Get environment if not _queue.MODE: _queue.MODE = _queue.get_cluster_environment() self.qtype = qtype if qtype else _queue.MODE self.queue = _queue.Queue(user='self', qtype=self.qtype) self.state = 'Not_Submitted' # Set name if not name: if callable(command): strcmd = str(command).strip('<>') parts = strcmd.split(' ') if parts[0] == 'bound': name = '_'.join(parts[2:3]) else: parts.remove('function') try: parts.remove('built-in') except ValueError: pass name = parts[0] else: name = command.split(' ')[0].split('/')[-1] # Make sure name not in queue self.uuid = str(_uuid()).split('-')[0] names = [i.name.split('.')[0] for i in self.queue] namecnt = len([i for i in names if i == name]) name = '{}.{}.{}'.format(name, namecnt, self.uuid) self.name = name # Set modules self.modules = kwds.pop('modules') if 'modules' in kwds else None if self.modules: self.modules = _run.opt_split(self.modules, (',', ';')) # Make sure args are a tuple or dictionary if args: if isinstance(args, str): args = tuple(args) if not isinstance(args, (tuple, dict)): try: args = tuple(args) except TypeError: args = (args,) # In case cores are passed as None if 'nodes' not in kwds: kwds['nodes'] = default_args['nodes'] if 'cores' not in kwds: kwds['cores'] = default_args['cores'] self.nodes = kwds['nodes'] self.cores = kwds['cores'] # Set output files suffix = kwds.pop('suffix') if 'suffix' in kwds \ else _conf.get_option('jobs', 'suffix') if 'outfile' in kwds: pth, fle = _os.path.split(kwds['outfile']) if not pth: pth = self.outpath kwds['outfile'] = _os.path.join(pth, fle) else: kwds['outfile'] = _os.path.join( self.outpath, '.'.join([name, suffix, 'out'])) if 'errfile' in kwds: pth, fle = _os.path.split(kwds['errfile']) if not pth: pth = self.outpath kwds['errfile'] = _os.path.join(pth, fle) else: kwds['errfile'] = _os.path.join( self.outpath, '.'.join([name, suffix, 'err'])) self.outfile = kwds['outfile'] self.errfile = kwds['errfile'] # Check and set dependencies if 'depends' in kwds: dependencies = _run.listify(kwds.pop('depends')) self.dependencies = [] errmsg = 'Dependencies must be number or list' for dependency in dependencies: if isinstance(dependency, str): if not dependency.isdigit(): raise _ClusterError(errmsg) dependency = int(dependency) if not isinstance(dependency, (int, Job)): raise _ClusterError(errmsg) self.dependencies.append(dependency) ###################################### # Command and Function Preparation # ###################################### # Get imports imports = kwds.pop('imports') if 'imports' in kwds else None # Get syspaths syspaths = kwds.pop('syspaths') if 'syspaths' in kwds else None # Split out sys.paths from imports and set imports in self if imports: self.imports = [] syspaths = syspaths if syspaths else [] for i in imports: if i.startswith('sys.path.append')\ or i.startswith('sys.path.insert'): syspaths.append(i) else: self.imports.append(i) # Function specific initialization if callable(command): self.kind = 'function' script_file = _os.path.join( self.scriptpath, '{}_func.{}.py'.format(name, suffix) ) self.poutfile = self.outfile + '.func.pickle' self.function = _Function( file_name=script_file, function=command, args=args, kwargs=kwargs, imports=self.imports, syspaths=syspaths, outfile=self.poutfile ) # Collapse the _command into a python call to the function script executable = '#!/usr/bin/env python{}'.format( _sys.version_info.major) if _conf.get_option( 'jobs', 'generic_python') else _sys.executable command = '{} {}'.format(executable, self.function.file_name) args = None else: self.kind = 'script' self.poutfile = None # Collapse args into command command = command + ' '.join(args) if args else command ##################### # Script Creation # ##################### # Build execution wrapper with modules precmd = '' if self.modules: for module in self.modules: precmd += 'module load {}\n'.format(module) # Create queue-dependent scripts sub_script = '' if self.qtype == 'slurm': scrpt = _os.path.join( self.scriptpath, '{}.{}.sbatch'.format(name, suffix) ) # We use a separate script and a single srun command to avoid # issues with multiple threads running at once exec_script = _os.path.join(self.scriptpath, '{}.{}.script'.format(name, suffix)) exe_script = _scrpts.CMND_RUNNER_TRACK.format( precmd=precmd, usedir=self.runpath, name=name, command=command) # Create the exec_script Script object self.exec_script = _Script(script=exe_script, file_name=exec_script) # Add all of the keyword arguments at once precmd = _options.options_to_string(kwds, self.qtype) + precmd ecmnd = 'srun bash {}'.format(exec_script) sub_script = _scrpts.SCRP_RUNNER.format(precmd=precmd, script=exec_script, command=ecmnd) elif self.qtype == 'torque': scrpt = _os.path.join(self.scriptpath, '{}.cluster.qsub'.format(name)) # Add all of the keyword arguments at once precmd = _options.options_to_string(kwds, self.qtype) + precmd sub_script = _scrpts.CMND_RUNNER_TRACK.format( precmd=precmd, usedir=self.runpath, name=name, command=command) elif self.qtype == 'local': # Create the pool if not _local.JQUEUE or not _local.JQUEUE.runner.is_alive(): threads = kwds['threads'] if 'threads' in kwds \ else _local.THREADS _local.JQUEUE = _local.JobQueue(cores=threads) scrpt = _os.path.join(self.scriptpath, '{}.cluster'.format(name)) sub_script = _scrpts.CMND_RUNNER_TRACK.format( precmd=precmd, usedir=self.runpath, name=name, command=command) else: raise _ClusterError('Invalid queue type') # Create the submission Script object self.submission = _Script(script=sub_script, file_name=scrpt) # Save the keyword arguments for posterity self.kwargs = kwds #################### # Public Methods # ####################
[docs] def write(self, overwrite=True): """Write all scripts. Args: overwrite (bool): Overwrite existing files, defaults to True. """ _logme.log('Writing files, overwrite={}'.format(overwrite), 'debug') self.submission.write(overwrite) if self.exec_script: self.exec_script.write(overwrite) if self.function: self.function.write(overwrite) self.written = True
[docs] def clean(self, delete_outputs=None, get_outputs=True): """Delete all scripts created by this module, if they were written. Args: delete_outputs (bool): also delete all output and err files, but get their contents first. get_outputs (bool): if delete_outputs, save outputs before deleting. """ _logme.log('Cleaning outputs, delete_outputs={}' .format(delete_outputs), 'debug') if delete_outputs is None: delete_outputs = self.clean_outputs assert isinstance(delete_outputs, bool) for jobfile in [self.submission, self.exec_script, self.function]: if jobfile: jobfile.clean() if delete_outputs: _logme.log('Deleting output files.', 'debug') if get_outputs: self.fetch_outputs(delete_files=True) for f in self.outfiles: if _os.path.isfile(f): _logme.log('Deleteing {}'.format(f), 'debug') _os.remove(f)
[docs] def submit(self, wait_on_max_queue=True): """Submit this job. Args: wait_on_max_queue (bool): Block until queue limit is below the maximum before submitting. To disable max_queue_len, set it to 0. None will allow override by the default settings in the config file, and any positive integer will be interpretted to be the maximum queue length. Returns: self """ if self.submitted: _logme.log('Not submitting, already submitted.', 'warn') return self if not self.written: self.write() # Check dependencies dependencies = [] if self.dependencies: for depend in self.dependencies: if isinstance(depend, Job): if not depend.id: _logme.log( 'Cannot submit job as dependency {} ' .format(depend) + 'has not been submitted', 'error' ) return self dependencies.append(int(depend.id)) else: dependencies.append(int(depend)) # Wait on the queue if necessary if wait_on_max_queue: self.update() self.queue.wait_to_submit() # Only include queued or running dependencies self.queue._update() # Force update depends = [] for depend in dependencies: dep_check = self.queue.check_dependencies(depend) if dep_check == 'absent': _logme.log( 'Cannot submit job as dependency {} ' .format(depend) + 'is not in the queue', 'error' ) return self elif dep_check == 'good': _logme.log( 'Dependency {} is complete, skipping' .format(depend), 'debug' ) elif dep_check == 'bad': _logme.log( 'Cannot submit job as dependency {} ' .format(depend) + 'has failed', 'error' ) return self elif dep_check == 'active': if self.queue.jobs[depend].state == 'completeing': continue _logme.log('Dependency {} is {}, adding to deps' .format(depend, self.queue.jobs[depend].state), 'debug') depends.append(depend) else: # This shouldn't happen ever raise _ClusterError('fyrd.queue.Queue.check_dependencies() ' + 'returned an unrecognized value {}' .format(dep_check)) if self.qtype == 'local': # Normal mode dependency tracking uses only integer job numbers _logme.log('Submitting to local', 'debug') command = 'bash {}'.format(self.submission.file_name) fileargs = dict(stdout=self.outfile, stderr=self.errfile) # Make sure the global job pool exists if not _local.JQUEUE or not _local.JQUEUE.runner.is_alive(): _local.JQUEUE = _local.JobQueue(cores=_local.THREADS) self.id = _local.JQUEUE.add(_run.cmd, args=(command,), kwargs=fileargs, dependencies=depends, cores=self.cores) self.submitted = True self.submit_time = _dt.now() self.state = 'submitted' elif self.qtype == 'slurm': _logme.log('Submitting to slurm', 'debug') if self.depends: deps = '--dependency=afterok:{}'.format( ':'.join([str(d) for d in depends])) args = ['sbatch', deps, self.submission.file_name] else: args = ['sbatch', self.submission.file_name] # Try to submit job 5 times code, stdout, stderr = _run.cmd(args, tries=5) if code == 0: self.id = int(stdout.split(' ')[-1]) else: _logme.log('sbatch failed with code {}\n'.format(code) + 'stdout: {}\nstderr: {}'.format(stdout, stderr), 'critical') raise _CalledProcessError(code, args, stdout, stderr) self.submitted = True self.submit_time = _dt.now() self.state = 'submitted' elif self.qtype == 'torque': _logme.log('Submitting to torque', 'debug') if self.depends: deps = '-W depend={}'.format( ','.join(['afterok:' + str(d) for d in depends])) args = ['qsub', deps, self.submission.file_name] else: args = ['qsub', self.submission.file_name] # Try to submit job 5 times code, stdout, stderr = _run.cmd(args, tries=5) if code == 0: self.id = int(stdout.split('.')[0]) elif code == 17 and 'Unable to open script file' in stderr: _logme.log('qsub submission failed due to an already existing ' 'script file, attempting to rename file and try ' 'again.\nstderr: {}, stdout: {}, cmnd: {}' .format(stderr, stdout, args), 'error') new_name = args[1] + '.resub' _os.rename(args[1], new_name) _logme.log('renamed script {} to {}, resubmitting' .format(args[1], new_name), 'info') args[1] = new_name code, stdout, stderr = _run.cmd(args, tries=5) if code == 0: self.id = int(stdout.split('.')[0]) else: _logme.log('Resubmission still failed, aborting', 'critical') raise _CalledProcessError(code, args, stdout, stderr) else: if stderr.startswith('qsub: submit error ('): raise _ClusterError('qsub submission failed with error: ' + '{}, command: {}'.format(stderr, args)) else: _logme.log( 'qsub failed with code {}\nstdout: {}\nstderr: {}' .format(code, stdout, stderr), 'critical' ) raise _CalledProcessError(code, args, stdout, stderr) self.submitted = True self.submit_time = _dt.now() self.state = 'submitted' else: raise _ClusterError("Invalid queue type {}".format(self.qtype)) if not self.submitted: raise _ClusterError('Submission appears to have failed, this ' "shouldn't happen") return self
def resubmit(self): """Attempt to auto resubmit, deletes prior files.""" self.clean(delete_outputs=True) self.state = 'Not_Submitted' self.write() return self.submit()
[docs] def wait(self): """Block until job completes.""" if not self.submitted: if _conf.get_option('jobs', 'auto_submit'): _logme.log('Auto-submitting as not submitted yet', 'debug') self.submit() _sleep(0.5) else: _logme.log('Cannot wait for result as job has not been ' + 'submitted', 'warn') return False _sleep(0.1) self.update(False) if not self.done: _logme.log('Waiting for self {}'.format(self.name), 'debug') status = self.queue.wait(self.id) if status == 'disappeared': self.state = status elif status is not True: return False else: self.update() if self.get_exitcode(update=False) != 0: _logme.log('Job failed with exitcode {}' .format(self.exitcode), 'debug') return False if self.wait_for_files(caution_message=False): self.update() if self.state == 'disappeared': _logme.log('Job files found for disappered job, assuming ' 'success', 'info') return 'disappeared' return True else: if self.state == 'disappeared': _logme.log('Disappeared job has no output files, assuming ' 'failure', 'error') return False
def wait_for_files(self, btme=None, caution_message=False): """Block until files appear up to 'file_block_time' in config file. Aborts after 2 seconds if job exit code is not 0. Args: btme (int): Number of seconds to try for before giving up, default set in config file. caution_message (bool): Display a message if this is taking a while. Returns: bool: True if files found """ if not self.done: _logme.log("Cannot wait for files if we aren't complete", 'warn') return False wait_time = 0.1 # seconds if btme: lvl = 'debug' else: lvl = 'warn' btme = _conf.get_option('jobs', 'file_block_time') start = _dt.now() dsp = False _logme.log('Checking for output files', 'debug') while True: runtime = (_dt.now() - start).seconds if caution_message and runtime > 1: _logme.log('Job complete.', 'info') _logme.log('Waiting for output files to appear.', 'info') caution_message = False if not dsp and runtime > 20: _logme.log('Still waiting for output files to appear', 'info') dsp = True count = 0 outfiles = self.incomplete_outfiles tlen = len(outfiles) if not outfiles: _logme.log('No incomplete outfiles, assuming all found in ' + '{} seconds'.format(runtime), 'debug') break for i in outfiles: if _os.path.isfile(i): count += 1 if count == tlen: _logme.log('All output files found in {} seconds' .format(runtime), 'debug') break _sleep(wait_time) if runtime > btme: _logme.log('Job completed but files have not appeared for ' + '>{} seconds'.format(btme), lvl) return False self.update() if runtime > 2 and self.get_exitcode(update=False) != 0: _logme.log('Job failed with exit code {}.' .format(self.exitcode) + ' Cannot find files.', 'error') return False if _queue.MODE == 'local': _logme.log('Job output files were not found.', 'error') _logme.log('Expected files: {}'.format(self.outfiles)) return False return True
[docs] def get(self, save=True, cleanup=None, delete_outfiles=None, del_no_save=None, raise_on_error=True): """Block until job completed and return output of script/function. By default saves all outputs to this class and deletes all intermediate files. Args: save (bool): Save all outputs to the class also (advised) cleanup (bool): Clean all intermediate files after job completes. delete_outfiles (bool): Clean output files after job completes. del_no_save (bool): Delete output files even if `save` is `False` raise_on_error (bool): If the returned output is an Exception, raise it. Returns: str: Function output if Function, else STDOUT """ _logme.log(('Getting outputs, cleanup={}, autoclean={}, ' 'delete_outfiles={}').format( cleanup, self.clean_files, delete_outfiles ), 'debug') # Wait for queue status = self.wait() if status == 'disappeared': _logme.log('Job disappeared from queue, attempting to get outputs', 'debug') try: self.fetch_outputs(save=save, delete_files=False, get_stats=False) except IOError: _logme.log('Job disappeared from the queue and files could not' ' be found, job must have died and been deleted ' 'from the queue', 'critical') raise IOError('Job {} disappeared, output files missing' .format(self)) elif status is not True: _logme.log('Wait failed, cannot get outputs, aborting', 'error') self.update() if _os.path.isfile(self.errfile): if _logme.MIN_LEVEL in ['debug', 'verbose']: _sys.stderr.write('STDERR of Job:\n') _sys.stderr.write(self.get_stderr(delete_file=False, update=False)) if self.poutfile and _os.path.isfile(self.poutfile): _logme.log('Getting pickled output', 'debug') self.get_output(delete_file=False, update=False, raise_on_error=raise_on_error) else: _logme.log('Pickled out file does not exist, cannot get error', 'debug') return else: # Get output _logme.log('Wait complete, fetching outputs', 'debug') self.fetch_outputs(save=save, delete_files=False) out = self.out if save else self.get_output(save=save) # Cleanup if cleanup is None: cleanup = self.clean_files else: assert isinstance(cleanup, bool) if delete_outfiles is None: delete_outfiles = self.clean_outputs if save is False: delete_outfiles = del_no_save if del_no_save is not None else False if cleanup: self.clean(delete_outputs=delete_outfiles) return out
[docs] def get_output(self, save=True, delete_file=None, update=True, raise_on_error=True): """Get output of function or script. This is the same as stdout for a script, or the function output for a function. By default, output file is kept unless delete_file is True or self.clean_files is True. Args: save (bool): Save the output to self.out, default True. Would be a good idea to set to False if the output is huge. delete_file (bool): Delete the output file when getting update (bool): Update job info from queue first. raise_on_error (bool): If the returned output is an Exception, raise it. Returns: The output of the script or function. Always a string if script. """ _logme.log(('Getting output, save={}, clean_files={}, ' 'delete_file={}').format( save, self.clean_files, delete_file ), 'debug') if delete_file is None: delete_file = self.clean_outputs if self.kind == 'script': return self.get_stdout(save=save, delete_file=delete_file, update=update) if self.done and self._got_out: _logme.log('Getting output from _out', 'debug') return self._out if update and not self._updating and not self.done: self.update() if self.done: if update: self.wait_for_files() else: _logme.log('Cannot get pickled output before job completes', 'warn') return None _logme.log('Getting output from {}'.format(self.poutfile), 'debug') if _os.path.isfile(self.poutfile): with open(self.poutfile, 'rb') as fin: out = _pickle.load(fin) if delete_file is True or self.clean_files is True: _logme.log('Deleting {}'.format(self.poutfile), 'debug') _os.remove(self.poutfile) if save: self._out = out self._got_out = True if _run.is_exc(out): _logme.log('{} failed with exception {}'.format(self, out[1]), 'error') if raise_on_error: _reraise(*out) return out else: _logme.log('No file at {} even though job has completed!' .format(self.poutfile), 'critical') raise IOError('File not found: {}'.format(self.poutfile))
[docs] def get_stdout(self, save=True, delete_file=None, update=True): """Get stdout of function or script, same for both. By default, output file is kept unless delete_file is True or self.clean_files is True. Args: save (bool): Save the output to self.stdout, default True. Would be a good idea to set to False if the output is huge. delete_file (bool): Delete the stdout file when getting update (bool): Update job info from queue first. Returns: str: The contents of STDOUT, with runtime info and trailing newline removed. Also sets self.start and self.end from the contents of STDOUT if possible. """ if delete_file is None: delete_file = self.clean_outputs _logme.log(('Getting stdout, save={}, clean_files={}, ' 'delete_file={}').format( save, self.clean_files, delete_file ), 'debug') if self.done and self._got_stdout: _logme.log('Getting stdout from _stdout', 'debug') return self._stdout if update and not self._updating and not self.done: self.update() if self.done: if update: self.wait_for_files() else: _logme.log('Job not done, attempting to get current STDOUT ' + 'anyway', 'info') _logme.log('Getting stdout from {}'.format(self.kwargs['outfile']), 'debug') if _os.path.isfile(self.kwargs['outfile']): self.get_times(update=False) stdout = open(self.kwargs['outfile']).read() if stdout: stdouts = stdout.split('\n') stdout = '\n'.join(stdouts[2:-3]) + '\n' if delete_file is True or self.clean_files is True: _logme.log('Deleting {}'.format(self.kwargs['outfile']), 'debug') _os.remove(self.kwargs['outfile']) if save: self._stdout = stdout if self.done: self._got_stdout = True return stdout else: _logme.log('No file at {}, cannot get stdout' .format(self.kwargs['outfile']), 'warn') return None
[docs] def get_stderr(self, save=True, delete_file=None, update=True): """Get stderr of function or script, same for both. By default, output file is kept unless delete_file is True or self.clean_files is True. Args: save (bool): Save the output to self.stdout, default True. Would be a good idea to set to False if the output is huge. delete_file (bool): Delete the stdout file when getting update (bool): Update job info from queue first. Returns: str: The contents of STDERR, with trailing newline removed. """ if delete_file is None: delete_file = self.clean_outputs _logme.log(('Getting stderr, save={}, clean_files={}, ' 'delete_file={}').format( save, self.clean_files, delete_file ), 'debug') if self.done and self._got_stderr: _logme.log('Getting stderr from _stderr', 'debug') return self._stderr if update and not self._updating and not self.done: self.update() if self.done: if update: self.wait_for_files() else: _logme.log('Job not done, attempting to get current STDERR ' + 'anyway', 'info') _logme.log('Getting stderr from {}'.format(self.kwargs['errfile']), 'debug') if _os.path.isfile(self.kwargs['errfile']): stderr = open(self.kwargs['errfile']).read() if delete_file is True or self.clean_files is True: _logme.log('Deleting {}'.format(self.kwargs['errfile']), 'debug') _os.remove(self.kwargs['errfile']) if save: self._stderr = stderr if self.done: self._got_stderr = True return stderr else: _logme.log('No file at {}, cannot get stderr' .format(self.kwargs['errfile']), 'warn') return None
[docs] def get_times(self, update=True): """Get stdout of function or script, same for both. Args: update (bool): Update job info from queue first. Returns: tuple: start, end as two datetime objects. Also sets self.start and self.end from the contents of STDOUT if possible. """ _logme.log('Getting times', 'debug') if self.done and self._got_times: _logme.log('Getting times from self.start, self.end', 'debug') return self.start, self.end if update and not self._updating and not self.done: self.update() if self.done: if update: self.wait_for_files() else: _logme.log('Cannot get times until job is complete.', 'warn') return None, None _logme.log('Getting times from {}'.format(self.kwargs['outfile']), 'debug') if _os.path.isfile(self.kwargs['outfile']): stdout = open(self.kwargs['outfile']).read() if stdout: stdouts = stdout.split('\n') # Get times timefmt = '%y-%m-%d-%H:%M:%S' try: self.start = _dt.strptime(stdouts[0], timefmt) self.end = _dt.strptime(stdouts[-2], timefmt) except ValueError as err: _logme.log('Time parsing failed with value error; ' + '{}. '.format(err) + 'This may be because you ' + 'are using the script running that does not ' + 'include time tracking', 'debug') self._got_times = True return self.start, self.end else: _logme.log('No file at {}, cannot get times' .format(self.kwargs['outfile']), 'warn') return None
[docs] def get_exitcode(self, update=True): """Try to get the exitcode. Args: update (bool): Update job info from queue first. Returns: int: The exitcode of the running process. """ _logme.log('Getting exitcode', 'debug') if self.done and self._got_exitcode: _logme.log('Getting exitcode from _exitcode', 'debug') return self._exitcode if self.status == 'disappeared': _logme.log('Cannot get exitcode for disappeared job', 'debug') return 0 if update and not self._updating and not self.done: self.update() if self.done: if update: self.wait_for_files() else: _logme.log('Job is not complete, no exit code yet', 'info') return None _logme.log('Getting exitcode from queue', 'debug') if not self.queue_info: self.queue_info = self.queue[self.id] if hasattr(self.queue_info, 'exitcode'): code = self.queue_info.exitcode else: code = None _logme.log('No exitcode even though the job is done, this ' + "shouldn't happen.", 'warn') self._exitcode = code self._got_exitcode = True if code != 0: self.state = 'failed' _logme.log('Job {} failed with exitcode {}' .format(self.name, code), 'error') return code
[docs] def update(self, fetch_info=True): """Update status from the queue. Args: fetch_info (bool): Fetch basic job info if complete. """ if not self._updating: self._update(fetch_info) else: _logme.log('Already updating, aborting.', 'debug')
[docs] def update_queue_info(self): """Set queue_info from the queue even if done.""" _logme.log('Updating queue_info', 'debug') queue_info1 = self.queue[self.id] self.queue.update() queue_info2 = self.queue[self.id] if queue_info2: self.queue_info = queue_info2 elif queue_info1: self.queue_info = queue_info1 elif self.queue_info is None and self.submitted: _logme.log('Cannot find self in the queue and queue_info is empty', 'warn') return self.queue_info
[docs] def fetch_outputs(self, save=True, delete_files=None, get_stats=True): """Save all outputs in their current state. No return value. This method does not wait for job completion, but merely gets the outputs. To wait for job completion, use `get()` instead. Args: save (bool): Save all outputs to the class also (advised) delete_files (bool): Delete the output files when getting, only used if save is True get_stats (bool): Try to get exitcode. """ _logme.log('Saving outputs to self, delete_files={}' .format(delete_files), 'debug') self.update() if delete_files is None: delete_files = self.clean_outputs if not self._got_exitcode and get_stats: self.get_exitcode(update=False) if not self._got_times: self.get_times(update=False) if save: self.get_output(save=True, delete_file=delete_files, update=False) self.get_stdout(save=True, delete_file=delete_files, update=False) self.get_stderr(save=True, delete_file=delete_files, update=False)
@property def files(self): """Build a list of files associated with this class.""" files = [self.submission] if self.kind == 'script': files.append(self.exec_script) if self.kind == 'function': files.append(self.function) return files @property def runtime(self): """Return the runtime.""" if not self.done: _logme.log('Cannot get runtime as not yet complete.' 'warn') return None if not self.start: self.get_times() return self.end-self.start @property def done(self): """Check if completed or not. Updates the Job and Queue. Returns: Bool: True if complete, False otherwise. """ # We have the same statement twice to try and avoid updating. if self.state in _queue.DONE_STATES: return True if not self._updating: self.update() if self.state in _queue.DONE_STATES: return True return False ############### # Internals # ############### def _update(self, fetch_info=True): """Update status from the queue. Args: fetch_info (bool): Fetch basic job info if complete. """ _logme.log('Updating job.', 'debug') self._updating = True if self.done or not self.submitted: self._updating = False return self.queue.update() if self.submitted and self.id: queue_info = self.queue[self.id] if queue_info: assert self.id == queue_info.id self.found = True self.queue_info = queue_info self.state = self.queue_info.state if self.done and fetch_info: if self.wait_for_files(btme=1, caution_message=False): if not self._got_exitcode: self.get_exitcode(update=False) if not self._got_times: self.get_times(update=False) elif self.found: _logme.log('Job appears to have disappeared, waiting for ' 'reappearance, this may take a while', 'warn') status = self.wait() if status == 'disappeared': _logme.log('Job disappeared, but the output files are ' 'present', 'info') elif not status: _logme.log('Job appears to have failed and disappeared', 'error') # If job not found after 360 seconds, assume trouble elif self.submitted and (_dt.now()-self.submit_time).seconds > 1000: s = (_dt.now()-self.submit_time).seconds _logme.log('Job not in queue after {} seconds of searching.' .format(s), 'warn') self._updating = False @property def outfiles(self): """A list of all outfiles associated with this Job.""" outfiles = [self.outfile, self.errfile] if self.poutfile: outfiles.append(self.poutfile) return outfiles @property def incomplete_outfiles(self): """A list of all outfiles that haven't already been fetched.""" outfiles = [] if self.outfile and not self._got_stdout: outfiles.append(self.outfile) if self.errfile and not self._got_stderr: outfiles.append(self.errfile) if self.poutfile and not self._got_out: outfiles.append(self.poutfile) return outfiles def __getattr__(self, key): """Dynamically get out, stdout, stderr, and exitcode.""" if key == 'out': return self.get_output() elif key == 'stdout': return self.get_stdout() elif key == 'stderr': return self.get_stderr() elif key == 'exitcode': return self.get_exitcode() elif key == 'err': return self.get_stderr() def __repr__(self): """Return simple job information.""" outstr = "Job:{name}<{mode}:{qtype}".format( name=self.name, mode=self.kind, qtype=self.qtype) if self.submitted: outstr += ':{}'.format(self.id) outstr += "(command:{cmnd})".format(cmnd=self.command) if self.submitted or self.done: outstr += self.state.upper() elif self.written: outstr += "WRITTEN" else: outstr += "NOT_SUBMITTED" outstr += ">" return outstr def __str__(self): """Print job name and ID + status.""" if self.done: state = 'completed' id1 = str(self.id) elif self.written: state = 'written' id1 = str(self.id) else: state = 'not written' id1 = 'NA' return "Job: {name} ID: {id}, state: {state}".format( name=self.name, id=id1, state=state)