Examples of submitPutRequest()


Examples of voldemort.store.nonblockingstore.NonblockingStore.submitPutRequest()

                        logger.debug("Doing read repair on node " + v.getNodeId() + " for key '"
                                     + ByteUtils.toHexString(v.getKey().get()) + "' with version "
                                     + v.getVersion() + ".");

                    NonblockingStore store = nonblockingStores.get(v.getNodeId());
                    store.submitPutRequest(v.getKey(), v.getVersioned(), null, null, timeoutMs);
                } catch(VoldemortApplicationException e) {
                    if(logger.isDebugEnabled())
                        logger.debug("Read repair cancelled due to application level exception on node "
                                     + v.getNodeId()
                                     + " for key '"
View Full Code Here

Examples of voldemort.store.nonblockingstore.NonblockingStore.submitPutRequest()

            if(logger.isTraceEnabled())
                logger.trace("Submitting " + pipeline.getOperation().getSimpleName()
                             + " request on node " + node.getId() + " for key " + key);

            NonblockingStore store = nonblockingStores.get(node.getId());
            store.submitPutRequest(key, versionedCopy, transforms, callback, timeoutMs);
        }

        try {
            boolean preferredSatisfied = false;
            while(true) {
View Full Code Here

Examples of voldemort.store.nonblockingstore.NonblockingStore.submitPutRequest()

                failureDetector.recordSuccess(node, (System.nanoTime() - startNs) / Time.NS_PER_MS);

            }
        };
        nonblockingStore.submitPutRequest(slopKey, slopVersioned, null, callback, timeoutMs);
    }

    /**
     * Send a hint of a request originally meant for the failed node to another
     * node in the ring, as selected by the {@link HintedHandoffStrategy}
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.