mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
ddfd46fb56
git-svn-id: file:///svn/toku/tokudb@49391 c7de825b-a66e-492c-adef-691d508d4ae1
344 lines
10 KiB
C++
344 lines
10 KiB
C++
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
|
|
#ident "$Id$"
|
|
#ident "Copyright (c) 2007-2012 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."
|
|
|
|
#include <ft-cachetable-wrappers.h>
|
|
|
|
#include <fttypes.h>
|
|
#include <ft-flusher.h>
|
|
#include <ft-internal.h>
|
|
#include "ft.h"
|
|
|
|
static void
|
|
ftnode_get_key_and_fullhash(
|
|
BLOCKNUM* cachekey,
|
|
uint32_t* fullhash,
|
|
void* extra)
|
|
{
|
|
FT h = (FT) extra;
|
|
BLOCKNUM name;
|
|
toku_allocate_blocknum(h->blocktable, &name, h);
|
|
*cachekey = name;
|
|
*fullhash = toku_cachetable_hash(h->cf, name);
|
|
}
|
|
|
|
void
|
|
cachetable_put_empty_node_with_dep_nodes(
|
|
FT h,
|
|
uint32_t num_dependent_nodes,
|
|
FTNODE* dependent_nodes,
|
|
BLOCKNUM* name, //output
|
|
uint32_t* fullhash, //output
|
|
FTNODE* result)
|
|
{
|
|
FTNODE XMALLOC(new_node);
|
|
PAIR dependent_pairs[num_dependent_nodes];
|
|
enum cachetable_dirty dependent_dirty_bits[num_dependent_nodes];
|
|
for (uint32_t i = 0; i < num_dependent_nodes; i++) {
|
|
dependent_pairs[i] = dependent_nodes[i]->ct_pair;
|
|
dependent_dirty_bits[i] = (enum cachetable_dirty) dependent_nodes[i]->dirty;
|
|
}
|
|
|
|
toku_cachetable_put_with_dep_pairs(
|
|
h->cf,
|
|
ftnode_get_key_and_fullhash,
|
|
new_node,
|
|
make_pair_attr(sizeof(FTNODE)),
|
|
get_write_callbacks_for_node(h),
|
|
h,
|
|
num_dependent_nodes,
|
|
dependent_pairs,
|
|
dependent_dirty_bits,
|
|
name,
|
|
fullhash,
|
|
toku_node_save_ct_pair);
|
|
*result = new_node;
|
|
}
|
|
|
|
void
|
|
create_new_ftnode_with_dep_nodes(
|
|
FT ft,
|
|
FTNODE *result,
|
|
int height,
|
|
int n_children,
|
|
uint32_t num_dependent_nodes,
|
|
FTNODE* dependent_nodes)
|
|
{
|
|
uint32_t fullhash = 0;
|
|
BLOCKNUM name;
|
|
|
|
cachetable_put_empty_node_with_dep_nodes(
|
|
ft,
|
|
num_dependent_nodes,
|
|
dependent_nodes,
|
|
&name,
|
|
&fullhash,
|
|
result);
|
|
|
|
assert(ft->h->basementnodesize > 0);
|
|
if (height == 0) {
|
|
assert(n_children > 0);
|
|
}
|
|
|
|
toku_initialize_empty_ftnode(
|
|
*result,
|
|
name,
|
|
height,
|
|
n_children,
|
|
ft->h->layout_version,
|
|
ft->h->flags);
|
|
|
|
(*result)->fullhash = fullhash;
|
|
}
|
|
|
|
void
|
|
toku_create_new_ftnode (
|
|
FT_HANDLE t,
|
|
FTNODE *result,
|
|
int height,
|
|
int n_children)
|
|
{
|
|
return create_new_ftnode_with_dep_nodes(
|
|
t->ft,
|
|
result,
|
|
height,
|
|
n_children,
|
|
0,
|
|
NULL);
|
|
}
|
|
|
|
int
|
|
toku_pin_ftnode_batched(
|
|
FT_HANDLE brt,
|
|
BLOCKNUM blocknum,
|
|
uint32_t fullhash,
|
|
UNLOCKERS unlockers,
|
|
ANCESTORS ancestors,
|
|
const PIVOT_BOUNDS bounds,
|
|
FTNODE_FETCH_EXTRA bfe,
|
|
pair_lock_type lock_type,
|
|
bool apply_ancestor_messages, // this bool is probably temporary, for #3972, once we know how range query estimates work, will revisit this
|
|
FTNODE *node_p,
|
|
bool* msgs_applied)
|
|
{
|
|
void *node_v;
|
|
*msgs_applied = false;
|
|
pair_lock_type needed_lock_type = lock_type;
|
|
try_again_for_write_lock:
|
|
int r = toku_cachetable_get_and_pin_nonblocking_batched(
|
|
brt->ft->cf,
|
|
blocknum,
|
|
fullhash,
|
|
&node_v,
|
|
NULL,
|
|
get_write_callbacks_for_node(brt->ft),
|
|
toku_ftnode_fetch_callback,
|
|
toku_ftnode_pf_req_callback,
|
|
toku_ftnode_pf_callback,
|
|
needed_lock_type,
|
|
bfe, //read_extraargs
|
|
unlockers);
|
|
if (r==0) {
|
|
FTNODE node = static_cast<FTNODE>(node_v);
|
|
MSN max_msn_in_path;
|
|
bool needs_ancestors_messages = false;
|
|
if (apply_ancestor_messages && node->height == 0) {
|
|
needs_ancestors_messages = toku_ft_leaf_needs_ancestors_messages(brt->ft, node, ancestors, bounds, &max_msn_in_path);
|
|
if (needs_ancestors_messages && needed_lock_type == PL_READ) {
|
|
toku_unpin_ftnode_read_only(brt, node);
|
|
needed_lock_type = PL_WRITE_CHEAP;
|
|
goto try_again_for_write_lock;
|
|
}
|
|
}
|
|
if (apply_ancestor_messages && node->height == 0) {
|
|
if (needs_ancestors_messages) {
|
|
invariant(needed_lock_type != PL_READ);
|
|
toku_apply_ancestors_messages_to_node(brt, node, ancestors, bounds, msgs_applied);
|
|
} else {
|
|
// At this point, we aren't going to run
|
|
// toku_apply_ancestors_messages_to_node but that doesn't
|
|
// mean max_msn_applied shouldn't be updated if possible
|
|
// (this saves the CPU work involved in
|
|
// toku_ft_leaf_needs_ancestors_messages).
|
|
//
|
|
// We still have a read lock, so we have not resolved
|
|
// checkpointing. If the node is pending and dirty, we
|
|
// can't modify anything, including max_msn, until we
|
|
// resolve checkpointing. If we do, the node might get
|
|
// written out that way as part of a checkpoint with a
|
|
// root that was already written out with a smaller
|
|
// max_msn. During recovery, we would then inject a
|
|
// message based on the root's max_msn, and that message
|
|
// would get filtered by the leaf because it had too high
|
|
// a max_msn value. (see #5407)
|
|
//
|
|
// So for simplicity we only update the max_msn if the
|
|
// node is clean. That way, in order for the node to get
|
|
// written out, it would have to be dirtied. That
|
|
// requires a write lock, and a write lock requires you to
|
|
// resolve checkpointing.
|
|
if (!node->dirty) {
|
|
toku_ft_bn_update_max_msn(node, max_msn_in_path);
|
|
}
|
|
}
|
|
invariant(needed_lock_type != PL_READ || !*msgs_applied);
|
|
}
|
|
if ((lock_type != PL_READ) && node->height > 0) {
|
|
toku_move_ftnode_messages_to_stale(brt->ft, node);
|
|
}
|
|
*node_p = node;
|
|
// printf("%*sPin %ld\n", 8-node->height, "", blocknum.b);
|
|
} else {
|
|
assert(r==TOKUDB_TRY_AGAIN); // Any other error and we should bomb out ASAP.
|
|
// printf("%*sPin %ld try again\n", 8, "", blocknum.b);
|
|
}
|
|
return r;
|
|
}
|
|
|
|
void
|
|
toku_pin_ftnode_off_client_thread_and_maybe_move_messages(
|
|
FT h,
|
|
BLOCKNUM blocknum,
|
|
uint32_t fullhash,
|
|
FTNODE_FETCH_EXTRA bfe,
|
|
pair_lock_type lock_type,
|
|
uint32_t num_dependent_nodes,
|
|
FTNODE* dependent_nodes,
|
|
FTNODE *node_p,
|
|
bool move_messages)
|
|
{
|
|
toku_pin_ftnode_off_client_thread_batched_and_maybe_move_messages(
|
|
h,
|
|
blocknum,
|
|
fullhash,
|
|
bfe,
|
|
lock_type,
|
|
num_dependent_nodes,
|
|
dependent_nodes,
|
|
node_p,
|
|
move_messages
|
|
);
|
|
}
|
|
|
|
void
|
|
toku_pin_ftnode_off_client_thread(
|
|
FT h,
|
|
BLOCKNUM blocknum,
|
|
uint32_t fullhash,
|
|
FTNODE_FETCH_EXTRA bfe,
|
|
pair_lock_type lock_type,
|
|
uint32_t num_dependent_nodes,
|
|
FTNODE* dependent_nodes,
|
|
FTNODE *node_p)
|
|
{
|
|
toku_pin_ftnode_off_client_thread_and_maybe_move_messages(
|
|
h, blocknum, fullhash, bfe, lock_type, num_dependent_nodes, dependent_nodes, node_p, true);
|
|
}
|
|
|
|
void
|
|
toku_pin_ftnode_off_client_thread_batched_and_maybe_move_messages(
|
|
FT h,
|
|
BLOCKNUM blocknum,
|
|
uint32_t fullhash,
|
|
FTNODE_FETCH_EXTRA bfe,
|
|
pair_lock_type lock_type,
|
|
uint32_t num_dependent_nodes,
|
|
FTNODE* dependent_nodes,
|
|
FTNODE *node_p,
|
|
bool move_messages)
|
|
{
|
|
void *node_v;
|
|
PAIR dependent_pairs[num_dependent_nodes];
|
|
enum cachetable_dirty dependent_dirty_bits[num_dependent_nodes];
|
|
for (uint32_t i = 0; i < num_dependent_nodes; i++) {
|
|
dependent_pairs[i] = dependent_nodes[i]->ct_pair;
|
|
dependent_dirty_bits[i] = (enum cachetable_dirty) dependent_nodes[i]->dirty;
|
|
}
|
|
|
|
int r = toku_cachetable_get_and_pin_with_dep_pairs_batched(
|
|
h->cf,
|
|
blocknum,
|
|
fullhash,
|
|
&node_v,
|
|
NULL,
|
|
get_write_callbacks_for_node(h),
|
|
toku_ftnode_fetch_callback,
|
|
toku_ftnode_pf_req_callback,
|
|
toku_ftnode_pf_callback,
|
|
lock_type,
|
|
bfe,
|
|
num_dependent_nodes,
|
|
dependent_pairs,
|
|
dependent_dirty_bits
|
|
);
|
|
assert(r==0);
|
|
FTNODE node = (FTNODE) node_v;
|
|
if ((lock_type != PL_READ) && node->height > 0 && move_messages) {
|
|
toku_move_ftnode_messages_to_stale(h, node);
|
|
}
|
|
*node_p = node;
|
|
}
|
|
|
|
void
|
|
toku_pin_ftnode_off_client_thread_batched(
|
|
FT h,
|
|
BLOCKNUM blocknum,
|
|
uint32_t fullhash,
|
|
FTNODE_FETCH_EXTRA bfe,
|
|
pair_lock_type lock_type,
|
|
uint32_t num_dependent_nodes,
|
|
FTNODE* dependent_nodes,
|
|
FTNODE *node_p)
|
|
{
|
|
toku_pin_ftnode_off_client_thread_batched_and_maybe_move_messages(
|
|
h, blocknum, fullhash, bfe, lock_type, num_dependent_nodes, dependent_nodes, node_p, true);
|
|
}
|
|
|
|
int toku_maybe_pin_ftnode_clean(FT ft, BLOCKNUM blocknum, uint32_t fullhash, FTNODE *nodep) {
|
|
void *node_v;
|
|
int r = toku_cachetable_maybe_get_and_pin_clean(ft->cf, blocknum, fullhash, &node_v);
|
|
if (r != 0) {
|
|
goto cleanup;
|
|
}
|
|
CAST_FROM_VOIDP(*nodep, node_v);
|
|
if ((*nodep)->height > 0) {
|
|
toku_move_ftnode_messages_to_stale(ft, *nodep);
|
|
}
|
|
cleanup:
|
|
return r;
|
|
}
|
|
|
|
void
|
|
toku_unpin_ftnode_off_client_thread(FT ft, FTNODE node)
|
|
{
|
|
int r = toku_cachetable_unpin(
|
|
ft->cf,
|
|
node->ct_pair,
|
|
(enum cachetable_dirty) node->dirty,
|
|
make_ftnode_pair_attr(node)
|
|
);
|
|
assert(r==0);
|
|
}
|
|
|
|
void
|
|
toku_unpin_ftnode(FT ft, FTNODE node)
|
|
{
|
|
// printf("%*sUnpin %ld\n", 8-node->height, "", node->thisnodename.b);
|
|
//VERIFY_NODE(brt,node);
|
|
toku_unpin_ftnode_off_client_thread(ft, node);
|
|
}
|
|
|
|
void
|
|
toku_unpin_ftnode_read_only(FT_HANDLE brt, FTNODE node)
|
|
{
|
|
int r = toku_cachetable_unpin(
|
|
brt->ft->cf,
|
|
node->ct_pair,
|
|
(enum cachetable_dirty) node->dirty,
|
|
make_invalid_pair_attr()
|
|
);
|
|
assert(r==0);
|
|
}
|
|
|