Exemplo n.º 1
0
def download_runtime_if_necessary(s3conn, runtime_s3_bucket, runtime_s3_key):
    """
    Download the runtime if necessary

    return True if cached, False if not (download occured)

    """

    # get runtime etag
    runtime_meta = s3conn.meta.client.head_object(Bucket=runtime_s3_bucket,
                                                  Key=runtime_s3_key)
    # etags have strings (double quotes) on each end, so we strip those
    ETag = str(runtime_meta['ETag'])[1:-1]
    logger.debug("The etag is ={}".format(ETag))
    runtime_etag_dir = os.path.join(RUNTIME_LOC, ETag)
    logger.debug("Runtime etag dir={}".format(runtime_etag_dir))
    expected_target = os.path.join(runtime_etag_dir, 'condaruntime')
    logger.debug("Expected target={}".format(expected_target))
    # check if dir is linked to correct runtime
    if os.path.exists(RUNTIME_LOC):
        if os.path.exists(CONDA_RUNTIME_DIR):
            if not os.path.islink(CONDA_RUNTIME_DIR):
                raise Exception(
                    "{} is not a symbolic link, your runtime config is broken".
                    format(CONDA_RUNTIME_DIR))

            existing_link = os.readlink(CONDA_RUNTIME_DIR)
            if existing_link == expected_target:
                logger.debug(
                    "found existing {}, not re-downloading".format(ETag))
                return True

    logger.debug("{} not cached, downloading".format(ETag))
    # didn't cache, so we start over
    if os.path.islink(CONDA_RUNTIME_DIR):
        os.unlink(CONDA_RUNTIME_DIR)

    shutil.rmtree(RUNTIME_LOC, True)

    os.makedirs(runtime_etag_dir)

    res = s3conn.meta.client.get_object(Bucket=runtime_s3_bucket,
                                        Key=runtime_s3_key)

    condatar = tarfile.open(mode="r:gz",
                            fileobj=wrenutil.WrappedStreamingBody(
                                res['Body'], res['ContentLength']))

    condatar.extractall(runtime_etag_dir)

    # final operation
    os.symlink(expected_target, CONDA_RUNTIME_DIR)
    return False
Exemplo n.º 2
0
def download_runtime_if_necessary(s3conn, runtime_s3_bucket, runtime_s3_key):
    """
    Download the runtime if necessary

    return True if cached, False if not (download occured)

    """

    # get runtime etag
    runtime_meta = s3conn.meta.client.head_object(Bucket=runtime_s3_bucket,
                                                  Key=runtime_s3_key)
    ETag = runtime_meta['ETag']
    print "The etag is ={}".format(ETag)
    runtime_etag_dir = os.path.join(RUNTIME_LOC, ETag)
    print "Runtime etag dir={}".format(runtime_etag_dir)
    expected_target = os.path.join(runtime_etag_dir, 'condaruntime')
    print "Expected target={}".format(expected_target)
    # check if dir is linked to correct runtime
    if os.path.exists(RUNTIME_LOC):
        if os.path.exists(CONDA_RUNTIME_DIR):
            existing_link = os.readlink(CONDA_RUNTIME_DIR)
            if existing_link == expected_target:
                print "found existing {}, not re-downloading".format(ETag)
                return True

    print "{} not cached, downloading".format(ETag)
    # didn't cache, so we start over
    shutil.rmtree(CONDA_RUNTIME_DIR, True)
    shutil.rmtree(RUNTIME_LOC, True)

    os.makedirs(runtime_etag_dir)

    res = s3conn.meta.client.get_object(Bucket=runtime_s3_bucket,
                                        Key=runtime_s3_key)

    condatar = tarfile.open(mode="r:gz",
                            fileobj=wrenutil.WrappedStreamingBody(
                                res['Body'], res['ContentLength']))

    condatar.extractall(runtime_etag_dir)

    # final operation
    os.symlink(expected_target, CONDA_RUNTIME_DIR)
    print subprocess.check_output("ls -la /tmp", shell=True)
    print subprocess.check_output("ls -la /tmp/condaruntime/", shell=True)
    return False
Exemplo n.º 3
0
def download_runtime_if_necessary(s3_client, runtime_s3_bucket,
                                  runtime_s3_key):
    """
    Download the runtime if necessary

    return True if cached, False if not (download occured)

    """

    # get runtime etag
    runtime_meta = s3_client.head_object(Bucket=runtime_s3_bucket,
                                         Key=runtime_s3_key)
    # etags have strings (double quotes) on each end, so we strip those
    ETag = str(runtime_meta['ETag'])[1:-1]
    logger.debug("The etag is ={}".format(ETag))
    runtime_etag_dir = os.path.join(RUNTIME_LOC, ETag)
    logger.debug("Runtime etag dir={}".format(runtime_etag_dir))
    expected_target = os.path.join(runtime_etag_dir, 'condaruntime')
    logger.debug("Expected target={}".format(expected_target))
    # check if dir is linked to correct runtime
    if os.path.exists(RUNTIME_LOC):
        if os.path.exists(CONDA_RUNTIME_DIR):
            if not os.path.islink(CONDA_RUNTIME_DIR):
                raise Exception(
                    "{} is not a symbolic link, your runtime config is broken".
                    format(CONDA_RUNTIME_DIR))

            existing_link = os.readlink(CONDA_RUNTIME_DIR)
            if existing_link == expected_target:
                logger.debug(
                    "found existing {}, not re-downloading".format(ETag))
                return True

    logger.debug("{} not cached, downloading".format(ETag))
    # didn't cache, so we start over
    if os.path.islink(CONDA_RUNTIME_DIR):
        os.unlink(CONDA_RUNTIME_DIR)

    shutil.rmtree(RUNTIME_LOC, True)

    os.makedirs(runtime_etag_dir)

    res = s3_client.get_object(Bucket=runtime_s3_bucket, Key=runtime_s3_key)

    try:

        condatar = tarfile.open(mode="r:gz",
                                fileobj=wrenutil.WrappedStreamingBody(
                                    res['Body'], res['ContentLength']))
        condatar.extractall(runtime_etag_dir)
    except (OSError, IOError) as e:
        # no difference, see https://stackoverflow.com/q/29347790/1073963
        # do the cleanup
        shutil.rmtree(runtime_etag_dir, True)
        if e.args[0] == 28:

            raise Exception("RUNTIME_TOO_BIG",
                            "Ran out of space when untarring runtime")
        else:
            raise Exception("RUNTIME_ERROR", str(e))
    except tarfile.ReadError as e:
        # do the cleanup
        shutil.rmtree(runtime_etag_dir, True)
        raise Exception("RUNTIME_READ_ERROR", str(e))
    except:
        shutil.rmtree(runtime_etag_dir, True)
        raise

    # final operation
    os.symlink(expected_target, CONDA_RUNTIME_DIR)
    return False
Exemplo n.º 4
0
        response_status['exec_time'] = time.time() - setup_time
        response_status['end_time'] = end_time

        response_status['host_submit_time'] = event['host_submit_time']
        response_status['server_info'] = get_server_info()

        response_status.update(context_dict)
    except Exception as e:
        # internal runtime exceptions
        response_status['exception'] = str(e)
        response_status['exception_args'] = e.args
        response_status['exception_traceback'] = traceback.format_exc()
    finally:
        # creating new client in case the client has not been created
        boto3.client("s3").put_object(Bucket=s3_bucket,
                                      Key=status_key,
                                      Body=json.dumps(response_status))


if __name__ == "__main__":
    s3 = boto3.resource('s3')
    # s3.meta.client.download_file('ericmjonas-public', 'condaruntime.tar.gz',
    #                              '/tmp/condaruntime.tar.gz')
    s3_res = s3.meta.client.get_object(Bucket='ericmjonas-public',
                                       Key='condaruntime.tar.gz')

    condatar_test = tarfile.open(mode="r:gz",
                                 fileobj=wrenutil.WrappedStreamingBody(
                                     s3_res['Body'], s3_res['ContentLength']))
    condatar_test.extractall('/tmp/test1/')
Exemplo n.º 5
0
def handler(event, context):
    s3 = boto3.resource('s3')

    start_time = time.time()

    func_filename = "/tmp/func.pickle"
    data_filename = "/tmp/data.pickle"
    output_filename = "/tmp/output.pickle"
    # cleanup previous invocations
    subprocess.check_output("rm -Rf /tmp/*", shell=True)

    server_info = {
        '/proc/cpuinfo': open("/proc/cpuinfo", 'r').read(),
        '/proc/meminfo': open("/proc/meminfo", 'r').read(),
        '/proc/self/cgroup': open("/proc/meminfo", 'r').read(),
        '/proc/cgroups': open("/proc/cgroups", 'r').read()
    }

    print "invocation started"

    # download the input
    func_key = event['func_key']
    data_key = event['data_key']
    data_byte_range = event['data_byte_range']
    output_key = event['output_key']
    status_key = event['status_key']
    runtime_s3_bucket = event['runtime_s3_bucket']
    runtime_s3_key = event['runtime_s3_key']

    b, k = data_key
    KS = s3util.key_size(b, k)
    print "bucket=", b, "key=", k, "status: ", KS, "bytes"
    while KS is None:
        print "WARNING COULD NOT GET FIRST KEY"

        KS = s3util.key_size(b, k)

    # get the input and save to disk
    # FIXME here is we where we would attach the "canceled" metadata
    s3.meta.client.download_file(func_key[0], func_key[1], func_filename)
    func_download_time = time.time()
    print "func download complete"

    if data_byte_range is None:
        s3.meta.client.download_file(data_key[0], data_key[1], data_filename)
    else:
        range_str = 'bytes={}-{}'.format(*data_byte_range)
        dres = s3.meta.client.get_object(Bucket=data_key[0],
                                         Key=data_key[1],
                                         Range=range_str)
        data_fid = open(data_filename, 'w')
        data_fid.write(dres['Body'].read())
        data_fid.close()

    input_download_time = time.time()

    print "input data download complete"

    # now split
    d = pickle.load(open(func_filename, 'r'))

    os.mkdir("/tmp/pymodules")
    # get modules and save
    for m_filename, m_text in d['module_data'].iteritems():
        m_path = os.path.dirname(m_filename)

        if len(m_path) > 0 and m_path[0] == "/":
            m_path = m_path[1:]
        to_make = os.path.join(PYTHON_MODULE_PATH, m_path)
        print "to_make=", to_make, "m_path=", m_path
        try:
            os.makedirs(to_make)
        except OSError as e:
            if e.errno == 17:
                pass
            else:
                raise e
        full_filename = os.path.join(to_make, os.path.basename(m_filename))
        print "creating", full_filename
        fid = open(full_filename, 'w')
        fid.write(m_text)
        fid.close()
    print subprocess.check_output("find {}".format(PYTHON_MODULE_PATH),
                                  shell=True)
    print subprocess.check_output("find {}".format(os.getcwd()), shell=True)

    ## Now get the runtime

    res = s3.meta.client.get_object(Bucket=runtime_s3_bucket,
                                    Key=runtime_s3_key)

    condatar = tarfile.open(mode="r:gz",
                            fileobj=wrenutil.WrappedStreamingBody(
                                res['Body'], res['ContentLength']))
    condatar.extractall('/tmp/')
    print "download and untar of conda runtime complete"

    cwd = os.getcwd()
    jobrunner_path = os.path.join(cwd, "jobrunner.py")

    print event
    extra_env = event.get('extra_env', {})
    extra_env['PYTHONPATH'] = "{}:{}".format(os.getcwd(), PYTHON_MODULE_PATH)

    call_id = event['call_id']
    callset_id = event['callset_id']

    print "state written to disk"

    CONDA_PYTHON_RUNTIME = "/tmp/condaruntime/bin/python"

    cmdstr = "{} {} {} {} {}".format(CONDA_PYTHON_RUNTIME, jobrunner_path,
                                     func_filename, data_filename,
                                     output_filename)

    setup_time = time.time()

    local_env = os.environ.copy()

    local_env["OMP_NUM_THREADS"] = "1"
    local_env.update(extra_env)

    print "command str=", cmdstr
    stdout = subprocess.check_output(cmdstr, shell=True, env=local_env)
    print "command executed, stdout=", stdout

    s3.meta.client.upload_file(output_filename, output_key[0], output_key[1])

    end_time = time.time()

    d = {
        'stdout': stdout,
        'call_id': call_id,
        'callset_id': callset_id,
        'start_time': start_time,
        'setup_time': setup_time - start_time,
        'exec_time': time.time() - setup_time,
        'func_key': func_key,
        'data_key': data_key,
        'output_key': output_key,
        'status_key': status_key,
        'end_time': end_time,
        'host_submit_time': event['host_submit_time'],
        'aws_request_id': context.aws_request_id,
        'log_group_name': context.log_group_name,
        'log_stream_name': context.log_stream_name,
        'server_info': server_info,
    }

    s3.meta.client.put_object(Bucket=status_key[0],
                              Key=status_key[1],
                              Body=json.dumps(d))

    return d