2022-09-19 10:41:51 +00:00
|
|
|
import os
|
|
|
|
from os.path import exists
|
|
|
|
from pathlib import Path
|
|
|
|
from fragments import shared, garage
|
|
|
|
|
2022-09-19 12:16:08 +00:00
|
|
|
s3bin = Path(os.path.dirname(__file__)) / "../../benchmarks/s3concurrent/s3concurrent"
|
2022-09-19 10:41:51 +00:00
|
|
|
|
|
|
|
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"
|
2022-09-19 12:16:08 +00:00
|
|
|
shared.log(f"launching s3concurrent ({s3bin})")
|
2022-09-19 10:41:51 +00:00
|
|
|
shared.exec(f"{s3bin} > {out}")
|
|
|
|
shared.log(f"execution done, output written to {out}")
|