-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathtest.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 8 columns, instead of 1 in line 2.
31 lines (25 loc) · 1.93 KB
/
test.csv
File metadata and controls
31 lines (25 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
action,ms,bytes,lang,code,repeat,minver,comment
run,0,0,q,\c 300 300,1,,""
/test initial scaling
true,0,0,q,.orch.scaleprocsinstances[`hdb1;`instances]=.orch.limits[`hdb1;`lower],1,,"check hdb1 scaled to lower limit upon startup"
/test for scaling up func
before,0,0,q,instancesbefore:.orch.scaleprocsinstances[`hdb1;`instances],1,,"get current instances of hdb1"
run,0,0,q,.orch.scale[`hdb1;`up],1,,"scale up hdb1"
run,0,0,q,instancesafter:.orch.scaleprocsinstances[`hdb1;`instances],1,,"get current instances of hdb1"
true,0,0,q,instancesbefore<instancesafter,1,,"check instances now bigger for hdb1"
/testing scaling down
run,0,0,q,instancesbefore:.orch.scaleprocsinstances[`hdb1;`instances],1,,"get current instances of hdb1"
run,0,0,q,.orch.scale[`hdb1.3;`down],1,,"scale down"
run,0,0,q,instancesafter:.orch.scaleprocsinstances[`hdb1;`instances],1,,"get current instances of hdb1"
true,0,0,q,instancesbefore>instancesafter,1,,"check instances now smaller for hdb1"
/testing limits: upper then lower
run,0,0,q,.orch.scale[`hdb1;`up],1,,"scale up"
run,0,0,q,before:.orch.scaleprocsinstances[`hdb1;`instances],1,,"get current insatnces of hdb1"
run,0,0,q,.orch.scale[`hdb1;`up],1,,"scaling up once more after limit is hit, to show no. instances doesn't chnage once limit hit"
run,0,0,q,after:.orch.scaleprocsinstances[`hdb1;`instances],1,,"get current instances of hdb1"
true,0,0,q,before=after,1,,"checking no. instances hasn't changed, so limit prevents further scaling up"
run,0,0,q,.orch.scale[`hdb1.3;`down],1,,"scale down"
run,0,0,q,before:.orch.scaleprocsinstances[`hdb1;`instances],1,,"get current insatnces of hdb1"
run,0,0,q,.orch.scale[`hdb1.2;`down],1,,"scale down once more to show no.instances stays same, indicating can't scale lower once limit hit"
run,0,0,q,after:.orch.scaleprocsinstances[`hdb1;`instances],1,,"get current instances of hdb1"
true,0,0,q,before=after,1,,"checking no. instances hasn't changed, so limit prevents further scaling down"