File tree 3 files changed +33
-4
lines changed
3 files changed +33
-4
lines changed Original file line number Diff line number Diff line change
1
+ import boto3
2
+ ec2 = boto3 .resource ('ec2' )
3
+
4
+ instances = ec2 .instances .filter ()
5
+ for instance in instances :
6
+ print (instance .id , instance .state ["Name" ], instance .public_dns_name )
7
+
8
+ if False :
9
+ ids = [i .id for i in instances ]
10
+ try :
11
+ ec2 .instances .filter (InstanceIds = ids ).stop ()
12
+ ec2 .instances .filter (InstanceIds = ids ).terminate ()
13
+ except Exception as e :
14
+ print e
15
+
16
+ if False :
17
+ print ec2 .create_instances (
18
+ ImageId = 'ami-178be960' ,
19
+ InstanceType = 't2.micro' ,
20
+ SecurityGroupIds = [ 'sg-ae5f0fcb' ],
21
+ MinCount = 1 ,
22
+ MaxCount = 1 )
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def dyn_server_role():
42
42
from collections import defaultdict
43
43
env .timings = defaultdict (list )
44
44
45
- NUM_MACHINES = 8
45
+ NUM_MACHINES = 60
46
46
47
47
@runs_once
48
48
def ec2start ():
@@ -195,7 +195,7 @@ def deploy():
195
195
196
196
@runs_once
197
197
def experiment1 ():
198
- env .messages = 200
198
+ env .messages = 2000
199
199
env .expname = "experiment1"
200
200
local ( "rm -rf experiment1" )
201
201
local ( "mkdir experiment1" )
@@ -205,6 +205,8 @@ def experiment1():
205
205
execute ( "experiment1collect" )
206
206
# local( "mkdir experiment1" )
207
207
local ("python exp1plot.py experiment1" )
208
+ local ("python estthroughput.py %s > %s/stats.txt" % (env .expname , env .expname ))
209
+
208
210
209
211
@roles ("clients" )
210
212
@parallel
@@ -264,9 +266,12 @@ def experiment2():
264
266
local ("python simscript.py 2000 payments.txt" )
265
267
local ("./rsc.py --play payments.txt-issue > experiment2/issue-times.txt" )
266
268
local ("./rsc.py --play payments.txt-r1 --conn 20 > experiment2/r1-times.txt" )
269
+ # local("python -m cProfile -s tottime rsc.py --play payments.txt-r2 > experiment2/r2-times.txt")
267
270
local ("./rsc.py --play payments.txt-r2 > experiment2/r2-times.txt" )
268
271
269
272
local ("python exp1plot.py experiment2" )
273
+ local ("python estthroughput.py experiment2 > experiment2/stats.txt" )
274
+
270
275
271
276
272
277
@runs_once
Original file line number Diff line number Diff line change @@ -226,8 +226,7 @@ def process_query_response(resp):
226
226
227
227
import socket
228
228
229
- if __name__ == "__main__" :
230
-
229
+ def main ():
231
230
dir_data = load_setup (file ("directory.conf" ).read ())
232
231
# directory = dir_data["directory"]
233
232
@@ -430,3 +429,6 @@ def r_process(results):
430
429
d .addCallback (r_process )
431
430
d .addBoth (r_stop )
432
431
reactor .run ()
432
+
433
+ if __name__ == "__main__" :
434
+ main ()
You can’t perform that action at this time.
0 commit comments