Commit 5a1ae869 authored by NILANJAN DAW's avatar NILANJAN DAW

minor bug fix

parent a5d9a657
app.name="HPDOS-Client"
app.version="0.1.4"
app.thread_count=12
app.runtime=15
app.thread_count=32
app.runtime=30
app.cycle_create=1
app.cycle_read=4
app.cycle_update=3
......
......@@ -203,7 +203,7 @@ public class ClientRunner {
double totalQps = readQps + createQps + updateQps + deleteQps;
System.out.println("Total runtime: " + totalRuntime);
System.out.println("QPS Read: " + readQps + " Create: " + createQps + " Update: " + updateQps + " Delete: " + deleteQps);
System.out.println("QPS Total: " + totalQps + " avg query time[thread amortized]: " + (totalQps / totalRuntime));
System.out.println("QPS Total: " + totalQps + " avg query time[thread amortized]: " + (totalQps / (totalRuntime * parallelCount)));
System.out.println("Read Total: " + readQps + " avg query time: " + avgRead);
System.out.println("Create Total: " + createQps + " avg query time: " + avgCreate);
System.out.println("Update Total: " + updateQps + " avg query time: " + avgUpdate);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment