@@ -33,10 +33,16 @@ def dyn_server_role():
33
33
else :
34
34
return servers [:env .slimit ]
35
35
36
+ def dyn_client_role ():
37
+ if "climit" not in env :
38
+ return clients
39
+ else :
40
+ return clients [:env .climit ]
41
+
36
42
37
43
env .roledefs .update ({
38
44
'servers' : dyn_server_role , #servers,
39
- 'clients' : clients
45
+ 'clients' : dyn_client_role
40
46
})
41
47
42
48
from collections import defaultdict
@@ -86,7 +92,21 @@ def time():
86
92
87
93
f = file ("remote_timings.txt" , "w" )
88
94
for k , v in env .timings .iteritems ():
89
- f .write ("%s %2.4f %2.4f\n " % (k , np .mean (v ), np .std (v )))
95
+ f .write ("%s %2.4f %2.4f\n " % (k , np .mean (v ), np .std (v )))
96
+ # f.close()
97
+
98
+ @roles ("servers" )
99
+ @parallel
100
+ def cpu ():
101
+ out = run ("sysbench --test=cpu --cpu-max-prime=2000 run" )
102
+ f = file ("cpu.txt" , "a" )
103
+ f .write (out )
104
+ f .close ()
105
+
106
+ @runs_once
107
+ def local_cpu ():
108
+ local ("sysbench --test=cpu --cpu-max-prime=2000 run" )
109
+
90
110
91
111
def null ():
92
112
pass
@@ -117,14 +137,25 @@ def start():
117
137
@parallel
118
138
def clean ():
119
139
with cd ('/home/ubuntu/projects/rscoin' ):
120
- run ('rm log- *' )
140
+ run ('rm -rf experiment *' )
121
141
run ('rm keys-*' )
122
142
123
143
@roles ("servers" , "clients" )
124
144
@parallel
125
145
def stop ():
126
146
with cd ('/home/ubuntu/projects/rscoin' ):
127
- run ('kill `cat twistd.pid`' )
147
+ with settings (warn_only = True ):
148
+
149
+ try :
150
+ out = run ('ps -u ubuntu' )
151
+ if "twistd" in out :
152
+ out = run ('ps -u ubuntu | grep "twis"' )
153
+ pid = out .strip ().split ()[0 ]
154
+ run ('kill %s' % pid )
155
+ except :
156
+ pass
157
+ # print out
158
+
128
159
129
160
@roles ("servers" )
130
161
def keys ():
@@ -167,14 +198,15 @@ def loadsecret():
167
198
def passcache ():
168
199
# Delete old folder and make a new one
169
200
sudo ( 'rm -rf /home/ubuntu/projects/rscoin' )
201
+ sudo ("apt-get install -y sysbench" )
170
202
171
203
with cd ('/home/ubuntu/projects' ):
172
204
sudo ('pip install petlib --upgrade' )
173
205
run ("git clone https://github.com/gdanezis/rscoin.git" )
174
206
175
207
@runs_once
176
208
def init ():
177
- local ("grep rsa ~/.ssh/known_hosts > known_hosts" )
209
+ # local("grep rsa ~/.ssh/known_hosts > known_hosts")
178
210
local ("python derivekey.py --store" )
179
211
execute (passcache )
180
212
@@ -218,7 +250,7 @@ def experiment1run():
218
250
run ("python simscript.py %s payments.txt" % env .messages )
219
251
run ("rm -rf %s" % env .expname )
220
252
run ("mkdir %s" % env .expname )
221
- run ("./rsc.py --play payments.txt-issue > %s/issue-times.txt" % env .expname )
253
+ run ("./rsc.py --play payments.txt-issue --conn 10 > %s/issue-times.txt" % env .expname )
222
254
# run("./rsc.py --play payments.txt-r1 > experiment1/r1-times.txt")
223
255
224
256
@roles ("clients" )
@@ -232,7 +264,7 @@ def experiment1pre():
232
264
@parallel
233
265
def experiment1actual ():
234
266
with cd ('/home/ubuntu/projects/rscoin' ):
235
- run ("./rsc.py --play payments.txt-r2 --conn 20 > %s/r2-times.txt" % env .expname )
267
+ run ("./rsc.py --play payments.txt-r2 --conn 30 > %s/r2-times.txt" % env .expname )
236
268
237
269
238
270
@roles ("clients" )
@@ -263,9 +295,9 @@ def experiment2():
263
295
local ("rm -rf experiment2" )
264
296
local ("mkdir experiment2" )
265
297
266
- local ("python simscript.py 200 payments.txt" )
298
+ local ("python simscript.py 1000 payments.txt" )
267
299
local ("./rsc.py --play payments.txt-issue > experiment2/issue-times.txt" )
268
- local ("./rsc.py --play payments.txt-r1 --conn 20 > experiment2/r1-times.txt" )
300
+ local ("./rsc.py --play payments.txt-r1 --conn 30 > experiment2/r1-times.txt" )
269
301
# local("python -m cProfile -s tottime rsc.py --play payments.txt-r2 > experiment2/r2-times.txt")
270
302
local ("./rsc.py --play payments.txt-r2 > experiment2/r2-times.txt" )
271
303
@@ -279,7 +311,10 @@ def experiment3():
279
311
280
312
env .messages = 1000
281
313
282
- for i in range (29 , len (servers )+ 1 ):
314
+ ## Use 20 clients
315
+ env .climit = 20
316
+
317
+ for i in [10 , 15 , 20 , 25 , 30 ]: # range(1, len(servers)+1):
283
318
284
319
env .expname = "experiment3x%03d" % i
285
320
with settings (warn_only = True ):
@@ -320,8 +355,8 @@ def experiment3():
320
355
321
356
322
357
323
- @roles ("servers" )
324
- def exp3each ():
325
- print "Hello: %s" % env .host
326
- execute (keys )
327
- execute (loaddir )
358
+ # @roles("servers")
359
+ # def exp3each():
360
+ # print "Hello: %s" % env.host
361
+ # execute(keys)
362
+ # execute(loaddir)
0 commit comments