/* -*- mode: C; c-basic-offset: 4 -*- */ #ident "Copyright (c) 2009-2010 Tokutek Inc. All rights reserved." #ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it." #ident "$Id$" /*********** * The purpose of this file is to implement the high-level logic for * taking a checkpoint. * * There are three locks used for taking a checkpoint. They are listed below. * * NOTE: The reader-writer locks may be held by either multiple clients * or the checkpoint function. (The checkpoint function has the role * of the writer, the clients have the reader roles.) * * - multi_operation_lock * This is a new reader-writer lock. * This lock is held by the checkpoint function only for as long as is required to * to set all the "pending" bits and to create the checkpoint-in-progress versions * of the header and translation table (btt). * The following operations must take the multi_operation_lock: * - insertion into multiple indexes * - "replace-into" (matching delete and insert on a single key) * * - checkpoint_safe_lock * This is a new reader-writer lock. * This lock is held for the entire duration of the checkpoint. * It is used to prevent more than one checkpoint from happening at a time * (the checkpoint function is non-re-entrant), and to prevent certain operations * that should not happen during a checkpoint. * The following operations must take the checkpoint_safe lock: * - delete a dictionary * - rename a dictionary * The application can use this lock to disable checkpointing during other sensitive * operations, such as making a backup copy of the database. * * - ydb_big_lock * This is the existing lock used to serialize all access to tokudb. * This lock is held by the checkpoint function only for as long as is required to * to set all the "pending" bits and to create the checkpoint-in-progress versions * of the header and translation table (btt). * * Once the "pending" bits are set and the snapshots are taken of the header and btt, * most normal database operations are permitted to resume. * * * *****/ #include #include #include "brttypes.h" #include "cachetable.h" #include "log-internal.h" #include "logger.h" #include "checkpoint.h" static CHECKPOINT_STATUS_S status; static LSN last_completed_checkpoint_lsn; static toku_pthread_rwlock_t checkpoint_safe_lock; static toku_pthread_rwlock_t multi_operation_lock; // Call through function pointers because this layer has no access to ydb lock functions. static void (*ydb_lock)(void) = NULL; static void (*ydb_unlock)(void) = NULL; static BOOL initialized = FALSE; // sanity check // Note following static functions are called from checkpoint internal logic only, // and use the "writer" calls for locking and unlocking. static int multi_operation_lock_init(void) { int r = toku_pthread_rwlock_init(&multi_operation_lock, NULL); assert(r == 0); return r; } static int multi_operation_lock_destroy(void) { int r = toku_pthread_rwlock_destroy(&multi_operation_lock); assert(r == 0); return r; } static void multi_operation_checkpoint_lock(void) { int r = toku_pthread_rwlock_wrlock(&multi_operation_lock); assert(r == 0); } static void multi_operation_checkpoint_unlock(void) { int r = toku_pthread_rwlock_wrunlock(&multi_operation_lock); assert(r == 0); } static int checkpoint_safe_lock_init(void) { int r = toku_pthread_rwlock_init(&checkpoint_safe_lock, NULL); assert(r == 0); return r; } static int checkpoint_safe_lock_destroy(void) { int r = toku_pthread_rwlock_destroy(&checkpoint_safe_lock); assert(r == 0); return r; } static void checkpoint_safe_checkpoint_lock(void) { int r = toku_pthread_rwlock_wrlock(&checkpoint_safe_lock); assert(r == 0); } static void checkpoint_safe_checkpoint_unlock(void) { int r = toku_pthread_rwlock_wrunlock(&checkpoint_safe_lock); assert(r == 0); } // toku_xxx_client_(un)lock() functions are only called from client code, // never from checkpoint code, and use the "reader" interface to the lock functions. void toku_multi_operation_client_lock(void) { int r = toku_pthread_rwlock_rdlock(&multi_operation_lock); assert(r == 0); } void toku_multi_operation_client_unlock(void) { int r = toku_pthread_rwlock_rdunlock(&multi_operation_lock); assert(r == 0); } void toku_checkpoint_safe_client_lock(void) { toku_multi_operation_client_lock(); int r = toku_pthread_rwlock_rdlock(&checkpoint_safe_lock); assert(r == 0); } void toku_checkpoint_safe_client_unlock(void) { int r = toku_pthread_rwlock_rdunlock(&checkpoint_safe_lock); assert(r == 0); toku_multi_operation_client_unlock(); } void toku_checkpoint_get_status(CHECKPOINT_STATUS s) { *s = status; } // Initialize the checkpoint mechanism, must be called before any client operations. int toku_checkpoint_init(void (*ydb_lock_callback)(void), void (*ydb_unlock_callback)(void)) { int r = 0; ydb_lock = ydb_lock_callback; ydb_unlock = ydb_unlock_callback; if (r==0) r = multi_operation_lock_init(); if (r==0) r = checkpoint_safe_lock_init(); if (r==0) initialized = TRUE; return r; } int toku_checkpoint_destroy(void) { int r = 0; if (r==0) r = multi_operation_lock_destroy(); if (r==0) r = checkpoint_safe_lock_destroy(); initialized = FALSE; return r; } // Take a checkpoint of all currently open dictionaries int toku_checkpoint(CACHETABLE ct, TOKULOGGER logger, void (*callback_f)(void*), void * extra, void (*callback2_f)(void*), void * extra2) { int r; status.footprint = 10; assert(initialized); multi_operation_checkpoint_lock(); status.footprint = 20; checkpoint_safe_checkpoint_lock(); status.footprint = 30; ydb_lock(); status.footprint = 40; status.time_last_checkpoint_begin = time(NULL); r = toku_cachetable_begin_checkpoint(ct, logger); multi_operation_checkpoint_unlock(); ydb_unlock(); status.footprint = 50; if (r==0) { if (callback_f) callback_f(extra); // callback is called with checkpoint_safe_lock still held r = toku_cachetable_end_checkpoint(ct, logger, ydb_lock, ydb_unlock, callback2_f, extra2); } if (r==0 && logger) { last_completed_checkpoint_lsn = logger->last_completed_checkpoint_lsn; r = toku_logger_maybe_trim_log(logger, last_completed_checkpoint_lsn); status.last_lsn = last_completed_checkpoint_lsn.lsn; } status.footprint = 60; status.time_last_checkpoint_end = time(NULL); status.time_last_checkpoint_begin_complete = status.time_last_checkpoint_begin; checkpoint_safe_checkpoint_unlock(); status.footprint = 0; if (r == 0) status.checkpoint_count++; else status.checkpoint_count_fail++; return r; }