double deleteProportion = (double) deletePercent / (double) 100;
double mixedProportion = (double) mixedPercent / (double) 100;
// Using default read only
if(Math.abs(writeProportion + readProportion + mixedProportion + deleteProportion) != 1.0) {
throw new VoldemortException("The sum of all workload percentage is NOT 100% \n"
+ " Read=" + (double) readPercent / (double) 100
+ " Write=" + (double) writePercent / (double) 100
+ " Delete=" + (double) deletePercent / (double) 100
+ " Mixed=" + (double) mixedPercent / (double) 100);
}