public interface WanReplicationService extends CoreService, StatisticsAwareService<LocalWanStats>
WanReplicationPublisher
instances
to replicate values to other clusters over the wide area network, so it has to deal with long
delays, slow uploads and higher latencies.Modifier and Type | Field and Description |
---|---|
static String |
SERVICE_NAME
Service name.
|
Modifier and Type | Method and Description |
---|---|
void |
addWanReplicationConfig(WanReplicationConfig wanConfig)
Adds a new
WanReplicationConfig to this member and creates the WanReplicationPublisher s specified
in the config. |
void |
checkWanReplicationQueues(String name) |
void |
clearQueues(String wanReplicationName,
String targetGroupName)
Clears WAN replication queues of the given wanReplicationName for the given target.
|
com.hazelcast.wan.impl.WanEventCounter |
getReceivedEventCounter(String serviceName)
Returns a counter of received and processed WAN replication events.
|
com.hazelcast.wan.impl.WanEventCounter |
getSentEventCounter(String serviceName)
Returns a counter of sent and processed WAN replication events.
|
WanReplicationPublisher |
getWanReplicationPublisher(String name)
Creates a new
WanReplicationPublisher by the given name. |
WanSyncState |
getWanSyncState()
Returns current status of WAN sync operation
|
void |
pause(String name,
String targetGroupName)
Pauses wan replication to target group for the called node
|
void |
removeWanEventCounters(String serviceName,
String dataStructureName)
Removes the WAN event counters for the given
dataStructureName . |
void |
resume(String name,
String targetGroupName)
Resumes wan replication to target group for the called node.
|
void |
shutdown()
Starts the shutdown process of the WAN replication service.
|
void |
syncAllMaps(String wanReplicationName,
String targetGroupName)
Initiate wan sync for all maps.
|
void |
syncMap(String wanReplicationName,
String targetGroupName,
String mapName)
Initiate wan sync for a specific map.
|
getStats
static final String SERVICE_NAME
WanReplicationPublisher getWanReplicationPublisher(String name)
WanReplicationPublisher
by the given name. If
the name already exists, returns the previous instance.name
- name of the WAN replication configurationvoid shutdown()
void pause(String name, String targetGroupName)
name
- name of WAN replication configurationtargetGroupName
- name of wan target cluster configvoid resume(String name, String targetGroupName)
name
- name of WAN replication configurationtargetGroupName
- name of wan target cluster configvoid checkWanReplicationQueues(String name)
void syncMap(String wanReplicationName, String targetGroupName, String mapName)
wanReplicationName
- the name of the wan replication configtargetGroupName
- the group name on the target clustermapName
- the map nameUnsupportedOperationException
- if the operation is not supported (not EE)InvalidConfigurationException
- if there is no WAN replication config for wanReplicationName
SyncFailedException
- if there is a sync request in progressvoid syncAllMaps(String wanReplicationName, String targetGroupName)
wanReplicationName
- the name of the wan replication configtargetGroupName
- the group name on the target clusterUnsupportedOperationException
- if the operation is not supported (not EE)InvalidConfigurationException
- if there is no WAN replication config for wanReplicationName
SyncFailedException
- if there is a sync request in progressvoid clearQueues(String wanReplicationName, String targetGroupName)
wanReplicationName
- the name of the wan replication configtargetGroupName
- the target cluster group namevoid addWanReplicationConfig(WanReplicationConfig wanConfig)
WanReplicationConfig
to this member and creates the WanReplicationPublisher
s specified
in the config.WanSyncState getWanSyncState()
com.hazelcast.wan.impl.WanEventCounter getReceivedEventCounter(String serviceName)
com.hazelcast.wan.impl.WanEventCounter getSentEventCounter(String serviceName)
Copyright © 2018 Hazelcast, Inc.. All rights reserved.