Examples of opRate()


Examples of org.apache.cassandra.stress.util.TimingInterval.opRate()

    public void summarise()
    {
        output.println("\n");
        output.println("Results:");
        TimingInterval history = timing.getHistory();
        output.println(String.format("op rate                   : %.0f", history.opRate()));
        output.println(String.format("partition rate            : %.0f", history.partitionRate()));
        output.println(String.format("row rate                  : %.0f", history.rowRate()));
        output.println(String.format("latency mean              : %.1f", history.meanLatency()));
        output.println(String.format("latency median            : %.1f", history.medianLatency()));
        output.println(String.format("latency 95th percentile   : %.1f", history.rankLatency(.95f)));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.