forked from Deuxfleurs/mknet
WIP s3concurrent + fix prepare.py
This commit is contained in:
parent
1ea2244c8c
commit
813b35e479
3 changed files with 20 additions and 4 deletions
|
@ -30,6 +30,6 @@ def download():
|
|||
if exists(desc['path']): continue
|
||||
|
||||
shared.exec(f"mkdir -p {shared.binary_path}")
|
||||
shared.exec(f"wget https://garagehq.deuxfleurs.fr/_releases/{version['version']}/{version['target']}/garage -O {p}")
|
||||
shared.exec(f"chmod +x {p}")
|
||||
shared.exec(f"{p} --version")
|
||||
shared.exec(f"wget https://garagehq.deuxfleurs.fr/_releases/{desc['version']}/{desc['target']}/garage -O {desc['path']}")
|
||||
shared.exec(f"chmod +x {desc['path']}")
|
||||
shared.exec(f"{desc['path']} --version")
|
||||
|
|
16
scenarios/fragments/s3concurrent.py
Normal file
16
scenarios/fragments/s3concurrent.py
Normal file
|
@ -0,0 +1,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}")
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
from fragments import garage, s3lat, shared
|
||||
from fragments import garage, s3concurrent, shared
|
||||
import sys
|
||||
|
||||
for flavor in sys.argv[1:]:
|
||||
|
|
Loading…
Reference in a new issue