aboutsummaryrefslogtreecommitdiff
path: root/scenarios/garage-s3billion
blob: 6a191e9e674efe0bfec03270ad85dcc58565c158 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python3
from fragments import garage, s3billion, shared, flavor
import sys, os

for fl in sys.argv[1:]:
    if fl in flavor.garage:
        garage.version = flavor.garage[fl]

#os.environ['BATCH_COUNT'] = "2"
shared.exec("ulimit -n 65535")
conf_root = {
    "db_engine": "lmdb",
}

if shared.id() == 1:
    garage.deploy_coord(uroot=conf_root)
    s3billion.on_garage()
    garage.delete_key()
    garage.destroy()
else:
    garage.deploy_follow(uroot=conf_root)
    garage.sync_on_key_down()
    garage.destroy()
shared.log("bye")