Package com.impetus.kundera.ycsb.entities

Examples of com.impetus.kundera.ycsb.entities.PerformanceNoInfo


                    }
                    throw new RuntimeException("Error while processing");
                }

                PerformanceNoInfo info = new PerformanceNoInfo(id, releaseNo,
                        client.substring(client.lastIndexOf(".") + 1), runType, noOfThreads, noOfOperations, totalTime,
                        runCounter);

                if (avgLatency != null)
                {
                    info.setAvgLatency(avgLatency.round(MathContext.DECIMAL32));
                }

                if (throughput != null)
                {
                    info.setThroughput(throughput.round(MathContext.DECIMAL32));
                }
                crudUtils.persistInfo(info);
                timeTakenByClient.put(client, throughput);
            }
        }
View Full Code Here

TOP

Related Classes of com.impetus.kundera.ycsb.entities.PerformanceNoInfo

Copyright © 2018 www.massapicom. 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.