Db.stat

APIRef

import com.sleepycat.db.*;

public Object stat(int flags) throws DbException;

Description

The Db.stat method creates a statistical structure and fills it with statistics for the database.

The flags value must be set to 0 or one of the following values:

Db.DB_CACHED_COUNTS
Return a cached count of the keys and records in a database. The Db.DB_CACHED_COUNTS flag has been deprecated in favor of the Db.DB_FAST_STAT flag. Please update your applications.

Db.DB_FAST_STAT
Return only the values which do not require traversal of the database. Fields returned when this flag is set are noted with an asterisk (*) below.

Among other things, this flag makes it possible for applications to request key and record counts without incurring the performance penalty of traversing the entire database. If the underlying database is of type Recno, or of type Btree and the database was created with the Db.DB_RECNUM flag, the count of keys will be exact. Otherwise, the count of keys will be the value saved the last time the database was traversed, or 0 if no count of keys has ever been made. If the underlying database is of type Recno, the count of data items will be exact, otherwise, the count of data items will be the value saved the last time the database was traversed, or 0 if no count of data items has ever been done.

Db.DB_RECORDCOUNT
Return a count of the records in a Btree or Recno Access Method database. The Db.DB_RECORDCOUNT flag has been deprecated in favor of the Db.DB_FAST_STAT flag. Please update your applications.

If the Db.DB_FAST_STAT flag has not been specified, the Db.stat method will access some of or all the pages in the database, incurring a severe performance penalty as well as possibly flushing the underlying buffer pool.

In the presence of multiple threads or processes accessing an active database, the information returned by Db.stat may be out-of-date.

If the database was not opened read-only and the Db.DB_FAST_STAT flag was not specified, the cached key and record numbers will be updated after the statistical information has been gathered.

The Db.stat method cannot be transaction-protected. For this reason, it should be called in a thread of control that has no open cursors or active transactions.

The Db.stat method throws an exception that encapsulates a non-zero error value on failure.

Hash Statistics

In the case of a Hash database, the statistics are returned in an instance of DbHashStat. The data fields are available from DbHashStat:

public int hash_magic*
Magic number that identifies the file as a Hash file.
public int hash_version*
The version of the Hash database.
public int hash_nkeys*
The number of unique keys in the database. If Db.DB_FAST_STAT was specified the count will be the last saved value unless it has never been calculated, in which case it will be 0.
public int hash_ndata*
The number of key/data pairs in the database. If Db.DB_FAST_STAT was specified the count will be the last saved value unless it has never been calculated, in which case it will be 0.
public int hash_pagesize*
The underlying Hash database page (and bucket) size, in bytes.
public int hash_nelem*
The estimated size of the hash table specified at database-creation time.
public int hash_ffactor*
The desired fill factor (number of items per bucket) specified at database-creation time.
public int hash_buckets*
The number of hash buckets.
public int hash_free
The number of pages on the free list.
public int hash_bfree
The number of bytes free on bucket pages.
public int hash_bigpages
The number of big key/data pages.
public int hash_big_bfree
The number of bytes free on big item pages.
public int hash_overflows
The number of overflow pages (overflow pages are pages that contain items that did not fit in the main bucket page).
public int hash_ovfl_free
The number of bytes free on overflow pages.
public int hash_dup
The number of duplicate pages.
public int hash_dup_free
The number of bytes free on duplicate pages.

Btree and Recno Statistics

In the case of a Btree or Recno database, the statistics are returned in an instance of DbBtreeStat. The data fields are available from DbBtreeStat:

public int bt_magic*
Magic number that identifies the file as a Btree database.
public int bt_version*
The version of the Btree database.
public int bt_nkeys*
For the Btree Access Method, the number of unique keys in the database. If Db.DB_FAST_STAT was specified and the database was created with the Db.DB_RECNUM flag, the count will be exact, otherwise, the count will be the last saved value unless it has never been calculated, in which case it will be 0.

For the Recno Access Method, the exact number of records in the database.

public int bt_ndata*
For the Btree Access Method, the number of key/data pairs in the database. If Db.DB_FAST_STAT was specified the count will be the last saved value unless it has never been calculated, in which case it will be 0.

For the Recno Access Method, the exact number of records in the database. If the database has been configured to not renumber records during deletion, the count of records will only reflect undeleted records.

public int bt_pagesize*
Underlying database page size, in bytes.
public int bt_minkey*
The minimum keys per page.
public int bt_re_len*
The length of fixed-length records.
public int bt_re_pad*
The padding byte value for fixed-length records.
public int bt_levels
Number of levels in the database.
public int bt_int_pg
Number of database internal pages.
public int bt_leaf_pg
Number of database leaf pages.
public int bt_dup_pg
Number of database duplicate pages.
public int bt_over_pg
Number of database overflow pages.
public int bt_free
Number of pages on the free list.
public int bt_int_pgfree
Number of bytes free in database internal pages.
public int bt_leaf_pgfree
Number of bytes free in database leaf pages.
public int bt_dup_pgfree
Number of bytes free in database duplicate pages.
public int bt_over_pgfree
Number of bytes free in database overflow pages.

Queue Statistics

In the case of a Queue database, the statistics are returned in an instance of DbQueueStat. The data fields are available from DbQueueStat:

public int qs_magic*
Magic number that identifies the file as a Queue file.
public int qs_version*
The version of the Queue file type.
public int qs_nkeys*
The number of records in the database. If Db.DB_FAST_STAT was specified the count will be the last saved value unless it has never been calculated, in which case it will be 0.
public int qs_ndata*
The number of records in the database. If Db.DB_FAST_STAT was specified the count will be the last saved value unless it has never been calculated, in which case it will be 0.
public int qs_pagesize*
Underlying database page size, in bytes.
public int qs_extentsize*
Underlying database extent size, in pages.
public int qs_pages
Number of pages in the database.
public int qs_re_len*
The length of the records.
public int qs_re_pad*
The padding byte value for the records.
public int qs_pgfree
Number of bytes free in database pages.
public int qs_start
Start offset.
public int qs_first_recno*
First undeleted record in the database.
public int qs_cur_recno*
Last allocated record number in the database.

The Db.stat method throws an exception that encapsulates a non-zero error value on failure.

Errors

The Db.stat method may fail and throw an exception for errors specified for other Berkeley DB and C library or system methods. If a catastrophic error has occurred, the Db.stat method may fail and throw a DbRunRecoveryException, in which case all subsequent Berkeley DB calls will fail in the same way.

Class

Db

See Also

Db.associate, Db.close, Db.cursor, Db.del, Db.fd, Db.get, Db.pget, Db.get_byteswapped, Db.get_type, Db.join, Db.key_range, Db.open, Db.put, Db.remove, Db.rename, Db.set_append_recno, Db.set_bt_minkey, Db.set_cachesize, Db.set_errcall, Db.set_errpfx, Db.set_feedback, Db.set_flags, Db.set_h_ffactor, Db.set_h_nelem, Db.set_lorder, Db.set_pagesize, Db.set_q_extentsize, Db.set_re_delim, Db.set_re_len, Db.set_re_pad, Db.set_re_source, Db.stat, Db.sync, Db.truncate, Db.upgrade, and Db.verify.

APIRef

Copyright Sleepycat Software