NAME
SYNOPSIS
DESCRIPTION
CTL NAMESPACE
CTL EXTERNAL CONFIGURATION
SEE ALSO
pmemlog_ctl_getU()/pmemlog_ctl_getW(), pmemlog_ctl_setU()/pmemlog_ctl_setW(), pmemlog_ctl_execU()/pmemlog_ctl_execW() – Query and modify libpmemlog internal behavior (EXPERIMENTAL)
#include <libpmemlog.h>
int pmemlog_ctl_getU(PMEMlogpool *plp, const char *name, void *arg); (EXPERIMENTAL)
int pmemlog_ctl_getW(PMEMlogpool *plp, const wchar_t *name, void *arg); (EXPERIMENTAL)
int pmemlog_ctl_setU(PMEMlogpool *plp, const char *name, void *arg); (EXPERIMENTAL)
int pmemlog_ctl_setW(PMEMlogpool *plp, const wchar_t *name, void *arg); (EXPERIMENTAL)
int pmemlog_ctl_execU(PMEMlogpool *plp, const char *name, void *arg); (EXPERIMENTAL)
int pmemlog_ctl_execW(PMEMlogpool *plp, const wchar_t *name, void *arg); (EXPERIMENTAL)
NOTE: The PMDK API supports UNICODE. If the PMDK_UTF8_API macro is defined, basic API functions are expanded to the UTF-8 API with postfix U. Otherwise they are expanded to the UNICODE API with postfix W.
The pmemlog_ctl_getU()/pmemlog_ctl_getW(), pmemlog_ctl_setU()/pmemlog_ctl_setW() and pmemlog_ctl_execU()/pmemlog_ctl_execW() functions provide a uniform interface for querying and modifying the internal behavior of libpmemlog(7) through the control (CTL) namespace.
See more in pmem_ctl(5) man page.
prefault.at_create | rw | global | int | int | - | boolean |
If set, every page of the pool will be touched and written to when the pool is created, in order to trigger page allocation and minimize the performance impact of pagefaults. Affects only the pmemlog_createU()/pmemlog_createW() function.
Always returns 0.
prefault.at_open | rw | global | int | int | - | boolean |
If set, every page of the pool will be touched and written to when the pool is opened, in order to trigger page allocation and minimize the performance impact of pagefaults. Affects only the pmemlog_openU()/pmemlog_openW() function.
Always returns 0.
sds.at_create | rw | global | int | int | - | boolean |
If set, force-enables or force-disables SDS feature during pool creation. Affects only the pmemlog_createU()/pmemlog_createW() function. See pmempool_feature_query(3) for informations about SDS (SHUTDOWN_STATE) feature.
Always returns 0.
In addition to direct function call, each write entry point can also be set using two alternative methods.
The first method is to load a configuration directly from the PMEMLOG_CONF environment variable.
The second method of loading an external configuration is to set the PMEMLOG_CONF_FILE environment variable to point to a file that contains a sequence of ctl queries.
See more in pmem_ctl(5) man page.
libpmemlog(7), pmem_ctl(5) and http://pmem.io
The contents of this web site and the associated GitHub repositories are BSD-licensed open source.