Package org.infinispan.statetransfer
Class StateProviderImpl
java.lang.Object
org.infinispan.statetransfer.StateProviderImpl
- All Implemented Interfaces:
StateProvider
StateProvider implementation.- Since:
- 5.2
- Author:
- anistor@redhat.com
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Stringprotected intprotected CommandsFactoryprotected InternalDataContainer<Object, Object> protected DistributionManagerprotected InternalEntryFactoryprotected KeyPartitionerprotected LocalPublisherManager<?, ?> protected PersistenceManagerprotected RpcManagerprotected StateTransferLockprotected longprotected TransactionOriginatorChecker -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidaddTransfer(OutboundTransferTask transferTask) voidcancelOutboundTransfer(Address destination, int topologyId, org.infinispan.commons.util.IntSet segments) Cancel sending of cache entries that belong to the given set of segments.getTransactionsForSegments(Address destination, int requestTopologyId, org.infinispan.commons.util.IntSet segments) Gets the list of transactions that affect keys from the given segments.booleanprotected voidlogError(OutboundTransferTask task, Throwable t) protected voidonTaskCompletion(OutboundTransferTask transferTask) onTopologyUpdate(CacheTopology cacheTopology, boolean isRebalance) Receive notification of topology changes.protected io.reactivex.rxjava3.core.Flowable<SegmentPublisherSupplier.Notification<InternalCacheEntry<?, ?>>> readEntries(org.infinispan.commons.util.IntSet segments) voidstart()voidstartOutboundTransfer(Address destination, int requestTopologyId, org.infinispan.commons.util.IntSet segments, boolean applyState) Start to send cache entries that belong to the given set of segments.voidstop()Cancels all outbound state transfers.
-
Field Details
-
cacheName
-
rpcManager
-
commandsFactory
-
dataContainer
-
persistenceManager
-
stateTransferLock
-
entryFactory
-
keyPartitioner
-
distributionManager
-
transactionOriginatorChecker
-
localPublisherManager
-
timeout
protected long timeout -
chunkSize
protected int chunkSize
-
-
Constructor Details
-
StateProviderImpl
public StateProviderImpl()
-
-
Method Details
-
isStateTransferInProgress
public boolean isStateTransferInProgress()- Specified by:
isStateTransferInProgressin interfaceStateProvider
-
onTopologyUpdate
Description copied from interface:StateProviderReceive notification of topology changes. Cancels all outbound transfers to destinations that are no longer members. The other outbound transfers remain unaffected.- Specified by:
onTopologyUpdatein interfaceStateProvider- Parameters:
cacheTopology-isRebalance-
-
start
public void start()- Specified by:
startin interfaceStateProvider
-
stop
public void stop()Description copied from interface:StateProviderCancels all outbound state transfers. This is executed when the cache is shutting down.- Specified by:
stopin interfaceStateProvider
-
getTransactionsForSegments
public CompletionStage<List<TransactionInfo>> getTransactionsForSegments(Address destination, int requestTopologyId, org.infinispan.commons.util.IntSet segments) Description copied from interface:StateProviderGets the list of transactions that affect keys from the given segments. This is invoked in response to aStateTransferGetTransactionsCommand.- Specified by:
getTransactionsForSegmentsin interfaceStateProvider- Parameters:
destination- the address of the requesterrequestTopologyId- required topology before we can start collecting transactionssegments- only return transactions affecting these segments- Returns:
- a
CompletionStagethat completes with the list transactions and locks for the given segments
-
getClusterListenersToInstall
- Specified by:
getClusterListenersToInstallin interfaceStateProvider
-
startOutboundTransfer
public void startOutboundTransfer(Address destination, int requestTopologyId, org.infinispan.commons.util.IntSet segments, boolean applyState) Description copied from interface:StateProviderStart to send cache entries that belong to the given set of segments. This is invoked in response to aStateTransferStartCommand. If the applyState field is set to false, then upon delivery at the destination the cache entries are processed by aStateReceiverand are not applied to the local cache.- Specified by:
startOutboundTransferin interfaceStateProvider- Parameters:
destination- the address of the requesterrequestTopologyId-segments-applyState-
-
readEntries
protected io.reactivex.rxjava3.core.Flowable<SegmentPublisherSupplier.Notification<InternalCacheEntry<?,?>>> readEntries(org.infinispan.commons.util.IntSet segments) -
addTransfer
-
cancelOutboundTransfer
public void cancelOutboundTransfer(Address destination, int topologyId, org.infinispan.commons.util.IntSet segments) Description copied from interface:StateProviderCancel sending of cache entries that belong to the given set of segments. This is invoked in response to aStateTransferCancelCommand.- Specified by:
cancelOutboundTransferin interfaceStateProvider- Parameters:
destination- the address of the requestertopologyId-segments- the segments that we have to cancel transfer for
-
onTaskCompletion
-
logError
-