Skip to content

Commit 5c8bdfb

Browse files
committedJul 31, 2015
Modularized the client to allow for profiling
1 parent ebd61b1 commit 5c8bdfb

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed
 

‎awstest.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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 )

‎fabfile.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def dyn_server_role():
4242
from collections import defaultdict
4343
env.timings = defaultdict(list)
4444

45-
NUM_MACHINES = 8
45+
NUM_MACHINES = 60
4646

4747
@runs_once
4848
def ec2start():
@@ -195,7 +195,7 @@ def deploy():
195195

196196
@runs_once
197197
def experiment1():
198-
env.messages = 200
198+
env.messages = 2000
199199
env.expname = "experiment1"
200200
local( "rm -rf experiment1" )
201201
local( "mkdir experiment1" )
@@ -205,6 +205,8 @@ def experiment1():
205205
execute( "experiment1collect" )
206206
# local( "mkdir experiment1" )
207207
local("python exp1plot.py experiment1")
208+
local("python estthroughput.py %s > %s/stats.txt" % (env.expname, env.expname))
209+
208210

209211
@roles("clients")
210212
@parallel
@@ -264,9 +266,12 @@ def experiment2():
264266
local("python simscript.py 2000 payments.txt")
265267
local("./rsc.py --play payments.txt-issue > experiment2/issue-times.txt")
266268
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")
267270
local("./rsc.py --play payments.txt-r2 > experiment2/r2-times.txt")
268271

269272
local("python exp1plot.py experiment2")
273+
local("python estthroughput.py experiment2 > experiment2/stats.txt")
274+
270275

271276

272277
@runs_once

‎rsc.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,7 @@ def process_query_response(resp):
226226

227227
import socket
228228

229-
if __name__ == "__main__":
230-
229+
def main():
231230
dir_data = load_setup(file("directory.conf").read())
232231
# directory = dir_data["directory"]
233232

@@ -430,3 +429,6 @@ def r_process(results):
430429
d.addCallback(r_process)
431430
d.addBoth(r_stop)
432431
reactor.run()
432+
433+
if __name__ == "__main__":
434+
main()

0 commit comments

Comments
 (0)
Please sign in to comment.