DB_ENV->set_mp_max_write API Ref

#include <db.h>

int DB_ENV->set_mp_max_write(DB_ENV *env, int maxwrite, db_timeout_t maxwrite_sleep);

int DB_ENV->get_mp_max_write(DB_ENV *env, int *maxwritep, db_timeout_t *maxwrite_sleepp);


Description: DB_ENV->set_mp_max_write

The DB_ENV->set_mp_max_write method limits the number of sequential write operations scheduled by the library when flushing dirty pages from the cache.

The database environment's maximum number of sequential write operations may also be configured using the environment's DB_CONFIG file. The syntax of the entry in that file is a single line with the string "set_mp_max_write", one or more whitespace characters, and the maximum number of sequential writes and the number of microseconds to sleep, also separated by whitespace characters. Because the DB_CONFIG file is read when the database environment is opened, it will silently overrule configuration done before that time.

The DB_ENV->set_mp_max_write method configures a database environment, not only operations performed using the specified DB_ENV handle.

The DB_ENV->set_mp_max_write method returns a non-zero error value on failure and 0 on success.

Parameters
maxwrite maxwrite_sleep

Errors

The DB_ENV->set_mp_max_write method may fail and return one of the following non-zero errors:


EINVAL

Description: DB_ENV->get_mp_max_write

The DB_ENV->get_mp_max_write method returns the current maximum number of sequential write operations and microseconds to pause.

The DB_ENV->get_mp_max_write method may be called at any time during the life of the application.

The DB_ENV->get_mp_max_write method returns a non-zero error value on failure and 0 on success.

Parameters
maxwritep maxwrite_sleepp


Class DB_ENV, DB_MPOOLFILE
See Also Memory Pools and Related Methods

APIRef

Copyright (c) 1996,2008 Oracle. All rights reserved.