public static final class Partition.Statistics extends java.lang.Object
Partition statistics are captured for the local node only, any operations done on remote nodes are not reflected in the stats. As an example, if the local node is a replica, and the node executes 10 object creates, the createCount will be set to 10. If objects are created on the active node, or on other replica nodes, the createCount will not be updated.
All partition statistics are reset each time an engine containing the highavailability component is restarted. They do not persist across engine restarts.
Modifier and Type | Field and Description |
---|---|
long |
asyncCreateFailures
The number of asynchronous create failures that occurred in
this partition.
|
long |
asyncDeleteFailures
The number of asynchronous delete failures that occurred in
this partition.
|
long |
asyncUpdateFailures
The number of asynchronous update failures that occurred in
this partition.
|
long |
createCount
The number of instances created in this partition.
|
long |
createFailures
The number of synchronous create failures that occurred in
this partition.
|
long |
deleteCount
The number of instances deleted in this partition.
|
long |
deleteFailures
The number of synchronous delete failures that occurred in
this partition.
|
long |
updateCount
The number of updates that have been applied to instance in this
partition.
|
long |
updateFailures
The number of synchronous update failures that occurred in
this partition.
|
public long createCount
public long updateCount
public long deleteCount
public long createFailures
public long updateFailures
public long deleteFailures
public long asyncCreateFailures
public long asyncUpdateFailures
public long asyncDeleteFailures