|
NAMElibpmemlog - persistent memory resident log fileSYNOPSIS
Library API versioning:
Managing library behavior:
Error handling:
Other library functions:A description of other libpmemlog functions can be found on the following manual pages:pmemlog_append(3), pmemlog_create(3), pmemlog_ctl_exec(3), pmemlog_ctl_get(3), pmemlog_ctl_set(3), pmemlog_nbyte(3), pmemlog_tell(3) DESCRIPTIONlibpmemlog provides a log file in persistent memory (pmem) such that additions to the log are appended atomically. This library is intended for applications using direct access storage (DAX), which is storage that supports load/store access without paging blocks from a block storage device. Some types of non-volatile memory DIMMs (NVDIMMs) provide this type of byte addressable access to storage. A persistent memory aware file system is typically used to expose the direct access to applications. Memory mapping a file from this type of file system results in the load/store, non-paged access to pmem. libpmemlog builds on thistype of memory mapped file.This library is for applications that need a persistent log file updated atomically (the updates cannot be torn by program interruption such as power failures). This library builds on the low-level pmem support provided by libpmem(7), handling the transactional update of the log, flushing to persistence, and recovery for the application. libpmemlog is one of a collection of persistent memory libraries available. The others are:
Under normal usage, libpmemlog will never print messages or intentionally cause the process to exit. The only exception to this is the debugging information, when enabled, as described under DEBUGGING AND ERROR HANDLING below. To use the pmem-resident log file provided by libpmemlog, a memory pool is first created. This is done with the pmemlog_create(3) function. The other functions mentioned above in SYNOPSIS section then operate on the resulting log memory pool. Once created, the memory pool is represented by an opaque handle, of type PMEMlogpool*, which is passed to most of the other functions from libpmemlog. Internally, libpmemlog will use either pmem_persist(3) or msync(2) when it needs to flush changes, depending on whether the memory pool appears to be persistent memory or a regular file (see the pmem_is_pmem(3) function in libpmem(7) for more information). There is no need for applications to flush changes directly when using the log memory API provided by libpmemlog. CAVEATSlibpmemlog relies on the library destructor being called from the main thread. For this reason, all functions that might trigger destruction (e.g. dlclose(3)) should be called in the main thread. Otherwise some of the resources associated with that thread might not be cleaned up properly.LIBRARY API VERSIONINGThis section describes how the library API is versioned, allowing applications to work with an evolving API.The pmemlog_check_version() function is used to determine whether the installed libpmemlog supports the version of the library API required by an application. The easiest way to do this is for the application to supply the compile-time version information provided by defines in <libpmemlog.h>, like this:
Any mismatch in the major version number is considered a failure, but a library with a newer minor version number will pass this check since increasing minor versions imply backwards compatibility. An application can also check specifically for the existence of an interface by checking for the version where that interface was introduced. These versions are documented in this man page as follows: unless otherwise specified, all interfaces described here are available in version 1.0 of the library. Interfaces added after version 1.0 will contain the text introduced in version x.y in the section of this manual describing the feature. On success, pmemlog_check_version() returns NULL. Otherwise, the return value is a static string describing the reason the version check failed. The string returned by pmemlog_check_version() must not be modified or freed. MANAGING LIBRARY BEHAVIORThe pmemlog_set_funcs() function allows an application to override memory allocation calls used internally by libpmemlog. Passing in NULL for any of the handlers will cause the libpmemlog default function to be used. The library does not make heavy use of the system malloc functions, but it does allocate approximately 4-8 kilobytes for each memory pool in use.DEBUGGING AND ERROR HANDLINGThe pmemlog_errormsg() function returns a pointer to a static buffer containing the last error message logged for the current thread. If errno was set, the error message may include a description of the corresponding error code as returned by strerror(3). The error message buffer is thread-local; errors encountered in one thread do not affect its value in other threads. The buffer is never cleared by any library function; its content is significant only when the return value of the immediately preceding call to a libpmemlog function indicated an error, or if errno was set. The application must not modify or free the error message string, but it may be modified by subsequent calls to other library functions.Two versions of libpmemlog are typically available on a development system. The normal version, accessed when a program is linked using the -lpmemlog option, is optimized for performance. That version skips checks that impact performance and never logs any trace information or performs any run-time assertions. A second version of libpmemlog, accessed when a program uses the libraries under /usr/lib/pmdk_debug, contains run-time assertions and trace points. The typical way to access the debug version is to set the environment variable LD_LIBRARY_PATH to /usr/lib/pmdk_debug or /usr/lib64/pmdk_debug, as appropriate. Debugging output is controlled using the following environment variables. These variables have no effect on the non-debug version of the library.
The value of PMEMLOG_LOG_LEVEL enables trace points in the debug version of the library, as follows:
Unless PMEMLOG_LOG_FILE is set, debugging output is written to stderr.
Specifies the name of a file name where all logging information should be written. If the last character in the name is “-”, the PID of the current process will be appended to the file name when the log file is created. If PMEMLOG_LOG_FILE is not set, logging output is written to stderr. See also libpmem(7) for information about other environment variables affecting libpmemlog behavior. EXAMPLEThe following example illustrates how the libpmemlog API is used.
See <http://pmem.io/pmdk/libpmemlog> for more examples using the libpmemlog API. BUGSUnlike libpmemobj(7), data replication is not supported in libpmemlog. Thus, specifying replica sections in pool set files is not allowed.ACKNOWLEDGEMENTSlibpmemlog builds on the persistent memory programming model recommended by the SNIA NVM Programming Technical Work Group: <http://snia.org/nvmp>SEE ALSOmsync(2), pmemlog_append(3), pmemlog_create(3), pmemlog_ctl_exec(3), pmemlog_ctl_get(3), pmemlog_ctl_set(3), pmemlog_nbyte(3), pmemlog_tell(3), strerror(3), libpmem(7), libpmemblk(7), libpmemobj(7) and <http://pmem.io>
Visit the GSP FreeBSD Man Page Interface. |