public class BtreeStats extends DatabaseStats
| Modifier and Type | Method and Description |
|---|---|
long[] |
getBINEntriesHistogram()
Returns an array representing a histogram of the number of Bottom
Internal Nodes with various percentages of non-deleted entry counts.
|
long[] |
getBINsByLevel()
Returns the count of Bottom Internal Nodes per level, indexed by level.
|
long |
getBottomInternalNodeCount()
Returns the number of Bottom Internal Nodes in the database btree.
|
long[] |
getDBINsByLevel()
Deprecated.
as of 5.0, returns an empty array.
|
long |
getDeletedLeafNodeCount()
Returns the number of deleted data records in the database btree that
are pending removal by the compressor.
|
long[] |
getDINsByLevel()
Deprecated.
as of 5.0, returns an empty array.
|
long |
getDupCountLeafNodeCount()
Deprecated.
as of 5.0, returns zero.
|
long |
getDuplicateBottomInternalNodeCount()
Deprecated.
as of 5.0, returns zero.
|
long |
getDuplicateInternalNodeCount()
Deprecated.
as of 5.0, returns zero.
|
int |
getDuplicateTreeMaxDepth()
Deprecated.
as of 5.0, returns zero.
|
long[] |
getINsByLevel()
Returns the count of Internal Nodes per level, indexed by level.
|
long |
getInternalNodeCount()
Returns the number of Internal Nodes in the database btree.
|
long |
getLeafNodeCount()
Returns the number of leaf nodes in the database tree, which can equal
the number of records.
|
int |
getMainTreeMaxDepth()
Returns the number of levels in the database btree.
|
long |
getRelatches()
Deprecated.
as of JE 18.1 and zero is always returned; use
EnvironmentStats.getRelatchesRequired() instead. |
int |
getRootSplits()
Deprecated.
as of JE 18.1 and zero is always returned; use
EnvironmentStats.getRootSplits() instead. |
java.lang.String |
toString()
Returns a String representation of the stats in the form of
<stat>=<value>
|
java.lang.String |
toStringVerbose()
Returns a String representation of the stats which includes stats
descriptions in addition to <stat>=<value>
|
public long getBottomInternalNodeCount()
public long getDuplicateBottomInternalNodeCount()
public long getDeletedLeafNodeCount()
public long getDupCountLeafNodeCount()
public long getInternalNodeCount()
public long getDuplicateInternalNodeCount()
public long getLeafNodeCount()
public int getMainTreeMaxDepth()
public int getDuplicateTreeMaxDepth()
public long[] getINsByLevel()
public long[] getBINsByLevel()
public long[] getBINEntriesHistogram()
element [0]: # BINs with 0% to 9% entries used by non-deleted values element [1]: # BINs with 10% to 19% entries used by non-deleted values element [2]: # BINs with 20% to 29% entries used by non-deleted values ... element [0]: # BINs with 90% to 100% entries used by non-deleted values
public long[] getDINsByLevel()
public long[] getDBINsByLevel()
public long getRelatches()
EnvironmentStats.getRelatchesRequired() instead.public int getRootSplits()
EnvironmentStats.getRootSplits() instead.public java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.String toStringVerbose()
Copyright (c) 2002, 2017 Oracle and/or its affiliates. All rights reserved.