Uses of Class
voldemort.store.slop.Slop

Packages that use Slop
voldemort.client.protocol.admin Classes that abstract admin based Voldemort requests. 
voldemort.serialization Code for mapping objects to bytes and bytes to objects. 
voldemort.store.routed A store implmentation that handles routing to nodes, and repairing obsolete values detected on those nodes. 
voldemort.store.slop A store implementation that falls back on storing values in additional nodes not in the preference list when nodes are unavailable. 
 

Uses of Slop in voldemort.client.protocol.admin
 

Method parameters in voldemort.client.protocol.admin with type arguments of type Slop
 void AdminClient.StreamingStoreOperations.updateSlopEntries(int nodeId, java.util.Iterator<Versioned<Slop>> entryIterator)
          Update slops which may be meant for multiple stores
 

Uses of Slop in voldemort.serialization
 

Methods in voldemort.serialization that return Slop
 Slop SlopSerializer.toObject(byte[] bytes)
           
 

Methods in voldemort.serialization with parameters of type Slop
 byte[] SlopSerializer.toBytes(Slop slop)
           
 

Uses of Slop in voldemort.store.routed
 

Method parameters in voldemort.store.routed with type arguments of type Slop
 RoutedStore RoutedStoreFactory.create(Cluster cluster, StoreDefinition storeDefinition, java.util.Map<java.lang.Integer,Store<ByteArray,byte[],byte[]>> nodeStores, java.util.Map<java.lang.Integer,NonblockingStore> nonblockingStores, java.util.Map<java.lang.Integer,Store<ByteArray,Slop,byte[]>> slopStores, java.util.Map<java.lang.Integer,NonblockingStore> nonblockingSlopStores, boolean repairReads, int clientZoneId, FailureDetector failureDetector)
           
 RoutedStore RoutedStoreFactory.create(Cluster cluster, StoreDefinition storeDefinition, java.util.Map<java.lang.Integer,Store<ByteArray,byte[],byte[]>> nodeStores, java.util.Map<java.lang.Integer,NonblockingStore> nonblockingStores, java.util.Map<java.lang.Integer,Store<ByteArray,Slop,byte[]>> slopStores, java.util.Map<java.lang.Integer,NonblockingStore> nonblockingSlopStores, boolean repairReads, int clientZoneId, FailureDetector failureDetector, boolean jmxEnabled, int jmxId)
           
 

Constructor parameters in voldemort.store.routed with type arguments of type Slop
PipelineRoutedStore(java.lang.String name, java.util.Map<java.lang.Integer,Store<ByteArray,byte[],byte[]>> innerStores, java.util.Map<java.lang.Integer,NonblockingStore> nonblockingStores, java.util.Map<java.lang.Integer,Store<ByteArray,Slop,byte[]>> slopStores, java.util.Map<java.lang.Integer,NonblockingStore> nonblockingSlopStores, Cluster cluster, StoreDefinition storeDef, boolean repairReads, int clientZoneId, TimeoutConfig timeoutConfig, FailureDetector failureDetector, boolean jmxEnabled, int jmxId)
          Create a PipelineRoutedStore
 

Uses of Slop in voldemort.store.slop
 

Methods in voldemort.store.slop that return types with arguments of type Slop
 StorageEngine<ByteArray,Slop,byte[]> SlopStorageEngine.asSlopStore()
           
 

Methods in voldemort.store.slop with parameters of type Slop
 void HintedHandoff.sendHintParallel(Node failedNode, Version version, Slop slop)
          Like HintedHandoff.sendHintSerial(voldemort.cluster.Node, voldemort.versioning.Version, Slop) , but doesn't block the pipeline.
 boolean HintedHandoff.sendHintSerial(Node failedNode, Version version, Slop slop)
          Send a hint of a request originally meant for the failed node to another node in the ring, as selected by the HintedHandoffStrategy implementation passed in the constructor
 

Constructor parameters in voldemort.store.slop with type arguments of type Slop
HintedHandoff(FailureDetector failureDetector, java.util.Map<java.lang.Integer,Store<ByteArray,Slop,byte[]>> slopStores, java.util.Map<java.lang.Integer,NonblockingStore> nonblockingSlopStores, HintedHandoffStrategy handoffStrategy, java.util.List<Node> failedNodes, long timeoutMs)
          Create a Hinted Handoff object
 



Jay Kreps, Roshan Sumbaly, Alex Feinberg, Bhupesh Bansal, Lei Gao, Chinmay Soman, Vinoth Chandar, Zhongjie Wu