aboutsummaryrefslogtreecommitdiff
path: root/scenarios/fragments/s3concurrent.py
blob: 1431e0bf4efa8a5c8a2e3fe783498db5517e8c6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import os
from os.path import exists
from pathlib import Path
from fragments import shared, garage

s3bin = Path(os.path.dirname(__file__)) / "../../benchmarks/s3lat/s3lat"

def on_garage():
    os.environ['AWS_ACCESS_KEY_ID'] = garage.key.access_key_id
    os.environ['AWS_SECRET_ACCESS_KEY'] = garage.key.secret_access_key
    os.environ['ENDPOINT'] = "localhost:3900"

    out = Path(shared.storage_path) / "s3concurrent.csv"
    shared.log(f"launching s3lat ({s3bin})")
    shared.exec(f"{s3bin} > {out}")
    shared.log(f"execution done, output written to {out}")