Skip to content

Commit

Permalink
Minor changes to end-to-end stress test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jayjwylie committed Jan 15, 2013
1 parent 4a3b985 commit 1c15b5a
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -312,15 +312,15 @@ public void stressTest() {
final int CONNECTIONS_PER_NODE_END = 20;
final int CONNECTIONS_PER_NODE_STEP = 5;

final int NUM_PUTTERS_START = 25;
final int NUM_PUTTERS_START = 100;
final int NUM_PUTTERS_END = 100;
final int NUM_PUTTERS_STEP = 25;

final int NUM_GETTERS_START = 25;
final int NUM_GETTERS_START = 100;
final int NUM_GETTERS_END = 100;
final int NUM_GETTERS_STEP = 25;

final int NUM_OPS = 2 * 1000;
final int NUM_OPS = 1000;

for(int putters = NUM_PUTTERS_START; putters <= NUM_PUTTERS_END; putters += NUM_PUTTERS_STEP) {
for(int getters = NUM_GETTERS_START; getters <= NUM_GETTERS_END; getters += NUM_GETTERS_STEP) {
Expand Down

0 comments on commit 1c15b5a

Please sign in to comment.