Package voldemort.utils.ConsistencyFix

Examples of voldemort.utils.ConsistencyFix.Status


                logger.trace(nodeValue.getNodeId() + " --- " + nodeValue.getKey().toString());
            }
        }

        // Do the repairs
        Status status = doRepairPut(toReadRepair);

        // return status of last operation (success or otherwise)
        return status;
    }
View Full Code Here


    }

    @Override
    public void run() {
        logger.trace("About to process key " + badKey + " (" + myName() + ")");
        Status status = doConsistencyFix();
        logger.trace("Finished processing key " + badKey + " (" + myName() + ")");
        consistencyFix.getStats().incrementFixCount();

        if(status != Status.SUCCESS) {
            try {
View Full Code Here

TOP

Related Classes of voldemort.utils.ConsistencyFix.Status

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.