mknet/scenarios/fragments/s3lat.py

25 lines
786 B
Python
Raw Normal View History

2022-09-14 16:01:44 +00:00
import os
from os.path import exists
from pathlib import Path
2022-09-23 16:09:54 +00:00
from fragments import shared, minio, garage
2022-09-14 16:01:44 +00:00
s3bin = Path(os.path.dirname(__file__)) / "../../benchmarks/s3lat/s3lat"
2022-09-23 16:09:54 +00:00
def common():
out = Path(shared.storage_path) / "s3lat.csv"
shared.log(f"launching s3lat ({s3bin})")
shared.exec(f"{s3bin} > {out}")
shared.log(f"execution done, output written to {out}")
2022-09-14 16:01:44 +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"
2022-09-23 16:09:54 +00:00
common()
2022-09-14 16:01:44 +00:00
2022-09-23 16:09:54 +00:00
def on_minio():
os.environ['AWS_ACCESS_KEY_ID'] = minio.access_key
os.environ['AWS_SECRET_ACCESS_KEY'] = minio.secret_key
os.environ['ENDPOINT'] = "localhost:9000"
common()