aboutsummaryrefslogtreecommitdiffstats
path: root/mdbc-benchmark/src/main
diff options
context:
space:
mode:
authorEnrique Saurez <esaurez@gatech.edu>2019-01-26 22:51:56 -0500
committerEnrique Saurez <enrique.saurez@gmail.com>2019-01-29 14:20:49 -0500
commit2a4f867f4e6b8c896124958885119475eee1cbb0 (patch)
tree278c7be22759c8b37be2b2f6bb52d38475e67a51 /mdbc-benchmark/src/main
parentb357ddb0869c2cc44eb0bd5800ed66914f49c468 (diff)
Keyspace creation, and handling of mdbc_cuid
Issue-ID: MUSIC-281 Signed-off-by: Enrique Saurez<enrique.saurez@gmail.com> Change-Id: I3bc685e30e064c1c93386301385115632b179449
Diffstat (limited to 'mdbc-benchmark/src/main')
-rw-r--r--mdbc-benchmark/src/main/java/org/onap/music/mdbc/Benchmark.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/mdbc-benchmark/src/main/java/org/onap/music/mdbc/Benchmark.java b/mdbc-benchmark/src/main/java/org/onap/music/mdbc/Benchmark.java
index 7baeaa2..a87f8da 100644
--- a/mdbc-benchmark/src/main/java/org/onap/music/mdbc/Benchmark.java
+++ b/mdbc-benchmark/src/main/java/org/onap/music/mdbc/Benchmark.java
@@ -346,7 +346,9 @@ public class Benchmark
//iterations
Map<Integer, List<Long>> results = new HashMap<>();
final int totalIterations = 20;
- final int[] rows = { 1,10,100, 500, 1000};
+ final int[] rows = { 1,10,50,80//};
+ ,100,200,300,400};//, 500};
+ //, 1000};
for(int row: rows) {
System.out.println("Running for rows: "+Integer.toString(row));
results.put(row,new ArrayList<Long>());