Package com.hazelcast.partition
Interface LocalReplicationStats
public interface LocalReplicationStats
Local statistics related to partition data replication.
Partition data are replicated across members either because a new member becomes owner of a partition replica (usually the term migration is used for this data replication action) or because the member that owns a backup replica determined it may be out of sync with the partition owner and requests partition data replication.
- Since:
- 5.0
-
Method Summary
Modifier and TypeMethodDescriptionlong
long
long
long
-
Method Details
-
getDifferentialPartitionReplicationCount
long getDifferentialPartitionReplicationCount()- Returns:
- count of differential partition replications originating from this member.
-
getFullPartitionReplicationCount
long getFullPartitionReplicationCount()- Returns:
- count of full partition replications originating from this member.
-
getDifferentialReplicationRecordCount
long getDifferentialReplicationRecordCount()- Returns:
- count of records replicated due to differential partition replications originating from this member.
-
getFullReplicationRecordCount
long getFullReplicationRecordCount()- Returns:
- count of records replicated due to full partition replications originating from this member.
-