Package org.apache.geode.cache.control
Interface RebalanceResults
public interface RebalanceResults
The results of rebalancing
Cache resources.- Since:
- GemFire 6.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns aSetof detailed information about each partitioned region that was rebalanced.longReturns the total size, in bytes, of all of the buckets that were created as part of the rebalance operation.intReturns the total number of buckets created during the rebalance operation.longReturns the total time, in milliseconds, taken to create buckets.longReturns the total size, in bytes, of buckets that were transferred.intReturns the total number of buckets transferred.longReturns the total amount of time, in milliseconds, it took to transfer buckets.intReturns the total number of members on which command is executed.intReturns the total number of primaries that were transferred.longReturns the total time, in milliseconds, spent transferring primaries.longReturns the total time, in milliseconds, that the rebalance operation took.
-
Method Details
-
getPartitionRebalanceDetails
Set<PartitionRebalanceInfo> getPartitionRebalanceDetails()Returns aSetof detailed information about each partitioned region that was rebalanced.- Returns:
- a
Setof detailed information about each partitioned region that was rebalanced
-
getTotalTime
long getTotalTime()Returns the total time, in milliseconds, that the rebalance operation took.- Returns:
- the total time, in milliseconds, that the rebalance operation took
-
getTotalBucketCreatesCompleted
int getTotalBucketCreatesCompleted()Returns the total number of buckets created during the rebalance operation.- Returns:
- the total number of buckets created during the rebalance operation
-
getTotalBucketCreateBytes
long getTotalBucketCreateBytes()Returns the total size, in bytes, of all of the buckets that were created as part of the rebalance operation.- Returns:
- the total size, in bytes, of all of the buckets that were created as part of the rebalance operation
-
getTotalBucketCreateTime
long getTotalBucketCreateTime()Returns the total time, in milliseconds, taken to create buckets.- Returns:
- the total time, in milliseconds, taken to create buckets
-
getTotalBucketTransfersCompleted
int getTotalBucketTransfersCompleted()Returns the total number of buckets transferred.- Returns:
- the total number of buckets transferred
-
getTotalBucketTransferBytes
long getTotalBucketTransferBytes()Returns the total size, in bytes, of buckets that were transferred.- Returns:
- the total size, in bytes, of buckets that were transferred
-
getTotalBucketTransferTime
long getTotalBucketTransferTime()Returns the total amount of time, in milliseconds, it took to transfer buckets.- Returns:
- the total amount of time, in milliseconds, it took to transfer buckets
-
getTotalPrimaryTransfersCompleted
int getTotalPrimaryTransfersCompleted()Returns the total number of primaries that were transferred.- Returns:
- the total number of primaries that were transferred
-
getTotalPrimaryTransferTime
long getTotalPrimaryTransferTime()Returns the total time, in milliseconds, spent transferring primaries.- Returns:
- the total time, in milliseconds, spent transferring primaries
-
getTotalMembersExecutedOn
int getTotalMembersExecutedOn()Returns the total number of members on which command is executed.- Returns:
- the total number of members on which command is executed
-