DbEnv.txn_checkpoint
|
|
import com.sleepycat.db.*;
int
public void txn_checkpoint(int kbyte, int min, int flags)
throws DbException;
Description
If there has been database environment activity since the last checkpoint,
the DbEnv.txn_checkpoint method flushes the underlying memory pool, writes a
checkpoint record to the log, and then flushes the log.
If kbyte or min is non-zero, the checkpoint is done only
if more than min minutes have passed since the last checkpoint
or if more than kbyte kilobytes of log data have been written
since the last checkpoint.
The flags value must be set to 0 or
the following value:
- Db.DB_FORCE
- Force a checkpoint record, even if there has been no activity since the
last checkpoint.
The DbEnv.txn_checkpoint method throws an exception that encapsulates a non-zero error value on
failure.
Errors
The DbEnv.txn_checkpoint method may fail and throw an exception encapsulating a non-zero error for the following conditions:
- EINVAL
- An invalid flag value or parameter was specified.
The DbEnv.txn_checkpoint 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 DbEnv.txn_checkpoint method may fail and
throw a DbRunRecoveryException,
in which case all subsequent Berkeley DB calls will fail in the same way.
Class
DbEnv, DbTxn
See Also
Transaction Subsystem and Related Methods
Copyright Sleepycat Software
|