2013-04-17 00:00:59 -04:00
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
# ident "$Id$"
2013-04-17 00:01:35 -04:00
/*
COPYING CONDITIONS NOTICE :
This program is free software ; you can redistribute it and / or modify
it under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation , and provided that the
following conditions are met :
* Redistributions of source code must retain this COPYING
CONDITIONS NOTICE , the COPYRIGHT NOTICE ( below ) , the
DISCLAIMER ( below ) , the UNIVERSITY PATENT NOTICE ( below ) , the
PATENT MARKING NOTICE ( below ) , and the PATENT RIGHTS
GRANT ( below ) .
* Redistributions in binary form must reproduce this COPYING
CONDITIONS NOTICE , the COPYRIGHT NOTICE ( below ) , the
DISCLAIMER ( below ) , the UNIVERSITY PATENT NOTICE ( below ) , the
PATENT MARKING NOTICE ( below ) , and the PATENT RIGHTS
GRANT ( below ) in the documentation and / or other materials
provided with the distribution .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 51 Franklin Street , Fifth Floor , Boston , MA
02110 - 1301 , USA .
COPYRIGHT NOTICE :
TokuDB , Tokutek Fractal Tree Indexing Library .
Copyright ( C ) 2007 - 2013 Tokutek , Inc .
DISCLAIMER :
This program is distributed in the hope that it will be useful , but
WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
General Public License for more details .
UNIVERSITY PATENT NOTICE :
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 .
PATENT MARKING NOTICE :
This software is covered by US Patent No . 8 , 185 , 551.
2013-10-04 16:49:53 -04:00
This software is covered by US Patent No . 8 , 489 , 638.
2013-04-17 00:01:35 -04:00
PATENT RIGHTS GRANT :
2013-04-17 00:01:36 -04:00
" THIS IMPLEMENTATION " means the copyrightable works distributed by
2013-04-17 00:01:35 -04:00
Tokutek as part of the Fractal Tree project .
" PATENT CLAIMS " means the claims of patents that are owned or
licensable by Tokutek , both currently or in the future ; and that in
the absence of this license would be infringed by THIS
IMPLEMENTATION or by using or running THIS IMPLEMENTATION .
" PATENT CHALLENGE " shall mean a challenge to the validity ,
patentability , enforceability and / or non - infringement of any of the
PATENT CLAIMS or otherwise opposing any of the PATENT CLAIMS .
Tokutek hereby grants to you , for the term and geographical scope of
the PATENT CLAIMS , a non - exclusive , no - charge , royalty - free ,
irrevocable ( except as stated in this section ) patent license to
make , have made , use , offer to sell , sell , import , transfer , and
otherwise run , modify , and propagate the contents of THIS
IMPLEMENTATION , where such license applies only to the PATENT
CLAIMS . This grant does not include claims that would be infringed
only as a consequence of further modifications of THIS
IMPLEMENTATION . If you or your agent or licensee institute or order
or agree to the institution of patent litigation against any entity
( including a cross - claim or counterclaim in a lawsuit ) alleging that
THIS IMPLEMENTATION constitutes direct or contributory patent
infringement , or inducement of patent infringement , then any rights
granted to you under this License shall terminate as of the date
such litigation is filed . If you or your agent or exclusive
licensee institute or order or agree to the institution of a PATENT
CHALLENGE , then Tokutek may terminate any rights granted to you
under this License .
*/
2013-04-17 00:01:35 -04:00
# ident "Copyright (c) 2007-2013 Tokutek Inc. All rights reserved."
2013-04-17 00:00:59 -04:00
# 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."
2013-04-17 00:00:05 -04:00
/* The goal of this test. Make sure that inserts stay behind deletes. */
# include "test.h"
2013-04-17 00:01:15 -04:00
2013-04-17 00:00:35 -04:00
# include <ft-cachetable-wrappers.h>
# include "ft-flusher.h"
# include "ft-flusher-internal.h"
2013-04-17 00:00:05 -04:00
# include "checkpoint.h"
static TOKUTXN const null_txn = 0 ;
static DB * const null_db = 0 ;
enum { NODESIZE = 1024 , KSIZE = NODESIZE - 100 , TOKU_PSIZE = 20 } ;
CACHETABLE ct ;
2013-04-17 00:00:35 -04:00
FT_HANDLE t ;
2013-04-17 00:00:05 -04:00
2013-04-17 00:01:01 -04:00
bool checkpoint_called ;
bool checkpoint_callback_called ;
2013-04-17 00:00:05 -04:00
toku_pthread_t checkpoint_tid ;
2013-04-17 00:01:21 -04:00
// callback functions for toku_ft_flush_some_child
2013-04-17 00:00:05 -04:00
static bool
dont_destroy_bn ( void * UU ( extra ) )
{
return false ;
}
2013-04-17 00:00:35 -04:00
static bool recursively_flush_should_not_happen ( FTNODE UU ( child ) , void * UU ( extra ) ) {
2013-04-17 00:01:01 -04:00
assert ( false ) ;
2013-04-17 00:00:05 -04:00
}
2013-04-17 00:00:35 -04:00
static int child_to_flush ( FT UU ( h ) , FTNODE parent , void * UU ( extra ) ) {
2013-04-17 00:00:05 -04:00
assert ( parent - > height = = 1 ) ;
assert ( parent - > n_children = = 2 ) ;
return 0 ;
}
2013-04-17 00:00:35 -04:00
static void dummy_update_status ( FTNODE UU ( child ) , int UU ( dirtied ) , void * UU ( extra ) ) {
2013-04-17 00:00:05 -04:00
}
static void checkpoint_callback ( void * UU ( extra ) ) {
usleep ( 1 * 1024 * 1024 ) ;
2013-04-17 00:01:01 -04:00
checkpoint_callback_called = true ;
2013-04-17 00:00:05 -04:00
}
static void * do_checkpoint ( void * arg ) {
// first verify that checkpointed_data is correct;
if ( verbose ) printf ( " starting a checkpoint \n " ) ;
2013-04-17 00:01:03 -04:00
CHECKPOINTER cp = toku_cachetable_get_checkpointer ( ct ) ;
int r = toku_checkpoint ( cp , NULL , checkpoint_callback , NULL , NULL , NULL , CLIENT_CHECKPOINT ) ;
2013-04-17 00:00:05 -04:00
assert_zero ( r ) ;
if ( verbose ) printf ( " completed a checkpoint \n " ) ;
return arg ;
}
static void flusher_callback ( int state , void * extra ) {
int desired_state = * ( int * ) extra ;
if ( verbose ) {
printf ( " state %d \n " , state ) ;
}
if ( state = = desired_state ) {
2013-04-17 00:01:01 -04:00
checkpoint_called = true ;
2013-04-17 00:00:05 -04:00
int r = toku_pthread_create ( & checkpoint_tid , NULL , do_checkpoint , NULL ) ;
assert_zero ( r ) ;
while ( ! checkpoint_callback_called ) {
usleep ( 1 * 1024 * 1024 ) ;
}
}
}
static void
doit ( int state ) {
BLOCKNUM node_root ;
BLOCKNUM node_leaves [ 2 ] ;
int r ;
2013-04-17 00:01:01 -04:00
checkpoint_called = false ;
checkpoint_callback_called = false ;
2013-04-17 00:00:05 -04:00
toku_flusher_thread_set_callback ( flusher_callback , & state ) ;
2013-04-17 00:01:08 -04:00
toku_cachetable_create ( & ct , 500 * 1024 * 1024 , ZERO_LSN , NULL_LOGGER ) ;
2013-04-17 00:00:35 -04:00
unlink ( " foo3.ft_handle " ) ;
unlink ( " bar3.ft_handle " ) ;
2013-04-17 00:00:05 -04:00
// note the basement node size is 5 times the node size
// this is done to avoid rebalancing when writing a leaf
// node to disk
2013-04-17 00:00:35 -04:00
r = toku_open_ft_handle ( " foo3.ft_handle " , 1 , & t , NODESIZE , 5 * NODESIZE , TOKU_DEFAULT_COMPRESSION_METHOD , ct , null_txn , toku_builtin_compare_fun ) ;
2013-04-17 00:00:05 -04:00
assert ( r = = 0 ) ;
toku_testsetup_initialize ( ) ; // must precede any other toku_testsetup calls
r = toku_testsetup_leaf ( t , & node_leaves [ 0 ] , 1 , NULL , NULL ) ;
assert ( r = = 0 ) ;
r = toku_testsetup_leaf ( t , & node_leaves [ 1 ] , 1 , NULL , NULL ) ;
assert ( r = = 0 ) ;
char * pivots [ 1 ] ;
pivots [ 0 ] = toku_strdup ( " kkkkk " ) ;
int pivot_len = 6 ;
r = toku_testsetup_nonleaf ( t , 1 , & node_root , 2 , node_leaves , pivots , & pivot_len ) ;
assert ( r = = 0 ) ;
r = toku_testsetup_root ( t , node_root ) ;
assert ( r = = 0 ) ;
char dummy_val [ NODESIZE / 2 - 50 ] ;
memset ( dummy_val , 0 , sizeof ( dummy_val ) ) ;
r = toku_testsetup_insert_to_leaf (
t ,
node_leaves [ 0 ] ,
" a " ,
2 ,
NULL ,
0
) ;
assert_zero ( r ) ;
r = toku_testsetup_insert_to_leaf (
t ,
node_leaves [ 1 ] ,
" x " ,
2 ,
dummy_val ,
sizeof ( dummy_val )
) ;
assert_zero ( r ) ;
r = toku_testsetup_insert_to_leaf (
t ,
node_leaves [ 1 ] ,
" y " ,
2 ,
dummy_val ,
sizeof ( dummy_val )
) ;
assert_zero ( r ) ;
r = toku_testsetup_insert_to_leaf (
t ,
node_leaves [ 1 ] ,
" z " ,
2 ,
NULL ,
0
) ;
assert_zero ( r ) ;
// at this point, we have inserted two leafentries,
// one in each leaf node. A flush should invoke a merge
struct flusher_advice fa ;
flusher_advice_init (
& fa ,
child_to_flush ,
dont_destroy_bn ,
recursively_flush_should_not_happen ,
default_merge_child ,
dummy_update_status ,
default_pick_child_after_split ,
NULL
) ;
// hack to get merge going
2013-04-17 00:00:35 -04:00
FTNODE node = NULL ;
2013-04-17 00:00:05 -04:00
toku_pin_node_with_min_bfe ( & node , node_leaves [ 0 ] , t ) ;
2013-04-17 00:01:01 -04:00
BLB_SEQINSERT ( node , node - > n_children - 1 ) = false ;
2013-04-17 00:00:36 -04:00
toku_unpin_ftnode ( t - > ft , node ) ;
2013-04-17 00:00:05 -04:00
toku_pin_node_with_min_bfe ( & node , node_leaves [ 1 ] , t ) ;
2013-04-17 00:01:01 -04:00
BLB_SEQINSERT ( node , node - > n_children - 1 ) = false ;
2013-04-17 00:00:36 -04:00
toku_unpin_ftnode ( t - > ft , node ) ;
2013-04-17 00:00:05 -04:00
2013-04-17 00:00:35 -04:00
struct ftnode_fetch_extra bfe ;
2013-04-17 00:00:36 -04:00
fill_bfe_for_min_read ( & bfe , t - > ft ) ;
2013-04-17 00:00:35 -04:00
toku_pin_ftnode_off_client_thread (
2013-04-17 00:00:36 -04:00
t - > ft ,
2013-04-17 00:00:05 -04:00
node_root ,
2013-04-17 00:00:36 -04:00
toku_cachetable_hash ( t - > ft - > cf , node_root ) ,
2013-04-17 00:00:05 -04:00
& bfe ,
2013-04-17 00:01:03 -04:00
PL_WRITE_EXPENSIVE ,
2013-04-17 00:00:05 -04:00
0 ,
NULL ,
& node
) ;
assert ( node - > height = = 1 ) ;
assert ( node - > n_children = = 2 ) ;
// do the flush
2013-04-17 00:01:21 -04:00
toku_ft_flush_some_child ( t - > ft , node , & fa ) ;
2013-04-17 00:00:05 -04:00
assert ( checkpoint_callback_called ) ;
// now let's pin the root again and make sure it is has rebalanced
2013-04-17 00:00:35 -04:00
toku_pin_ftnode_off_client_thread (
2013-04-17 00:00:36 -04:00
t - > ft ,
2013-04-17 00:00:05 -04:00
node_root ,
2013-04-17 00:00:36 -04:00
toku_cachetable_hash ( t - > ft - > cf , node_root ) ,
2013-04-17 00:00:05 -04:00
& bfe ,
2013-04-17 00:01:03 -04:00
PL_WRITE_EXPENSIVE ,
2013-04-17 00:00:05 -04:00
0 ,
NULL ,
& node
) ;
assert ( node - > height = = 1 ) ;
assert ( node - > n_children = = 2 ) ;
2013-04-17 00:00:36 -04:00
toku_unpin_ftnode ( t - > ft , node ) ;
2013-04-17 00:00:05 -04:00
void * ret ;
r = toku_pthread_join ( checkpoint_tid , & ret ) ;
assert_zero ( r ) ;
//
// now the dictionary has been checkpointed
// copy the file to something with a new name,
// open it, and verify that the state of what is
// checkpointed is what we expect
//
2013-04-17 00:00:35 -04:00
r = system ( " cp foo3.ft_handle bar3.ft_handle " ) ;
2013-04-17 00:00:05 -04:00
assert_zero ( r ) ;
2013-04-17 00:00:35 -04:00
FT_HANDLE c_ft ;
2013-04-17 00:00:05 -04:00
// note the basement node size is 5 times the node size
// this is done to avoid rebalancing when writing a leaf
// node to disk
2013-04-17 00:00:35 -04:00
r = toku_open_ft_handle ( " bar3.ft_handle " , 0 , & c_ft , NODESIZE , 5 * NODESIZE , TOKU_DEFAULT_COMPRESSION_METHOD , ct , null_txn , toku_builtin_compare_fun ) ;
2013-04-17 00:00:05 -04:00
assert ( r = = 0 ) ;
//
// now pin the root, verify that the state is what we expect
//
2013-04-17 00:00:36 -04:00
fill_bfe_for_full_read ( & bfe , c_ft - > ft ) ;
2013-04-17 00:00:35 -04:00
toku_pin_ftnode_off_client_thread (
2013-04-17 00:00:36 -04:00
c_ft - > ft ,
2013-04-17 00:00:05 -04:00
node_root ,
2013-04-17 00:00:36 -04:00
toku_cachetable_hash ( c_ft - > ft - > cf , node_root ) ,
2013-04-17 00:00:05 -04:00
& bfe ,
2013-04-17 00:01:03 -04:00
PL_WRITE_EXPENSIVE ,
2013-04-17 00:00:05 -04:00
0 ,
NULL ,
& node
) ;
assert ( node - > height = = 1 ) ;
assert ( ! node - > dirty ) ;
BLOCKNUM left_child , right_child ;
assert ( node - > n_children = = 2 ) ;
left_child = BP_BLOCKNUM ( node , 0 ) ;
right_child = BP_BLOCKNUM ( node , 1 ) ;
2013-04-17 00:00:36 -04:00
toku_unpin_ftnode_off_client_thread ( c_ft - > ft , node ) ;
2013-04-17 00:00:05 -04:00
// now let's verify the leaves are what we expect
2013-04-17 00:00:35 -04:00
toku_pin_ftnode_off_client_thread (
2013-04-17 00:00:36 -04:00
c_ft - > ft ,
2013-04-17 00:00:05 -04:00
left_child ,
2013-04-17 00:00:36 -04:00
toku_cachetable_hash ( c_ft - > ft - > cf , left_child ) ,
2013-04-17 00:00:05 -04:00
& bfe ,
2013-04-17 00:01:03 -04:00
PL_WRITE_EXPENSIVE ,
2013-04-17 00:00:05 -04:00
0 ,
NULL ,
& node
) ;
assert ( node - > height = = 0 ) ;
assert ( ! node - > dirty ) ;
assert ( node - > n_children = = 1 ) ;
2014-02-04 11:08:30 -05:00
assert ( BLB_DATA ( node , 0 ) - > omt_size ( ) = = 2 ) ;
2013-04-17 00:00:36 -04:00
toku_unpin_ftnode_off_client_thread ( c_ft - > ft , node ) ;
2013-04-17 00:00:05 -04:00
2013-04-17 00:00:35 -04:00
toku_pin_ftnode_off_client_thread (
2013-04-17 00:00:36 -04:00
c_ft - > ft ,
2013-04-17 00:00:05 -04:00
right_child ,
2013-04-17 00:00:36 -04:00
toku_cachetable_hash ( c_ft - > ft - > cf , right_child ) ,
2013-04-17 00:00:05 -04:00
& bfe ,
2013-04-17 00:01:03 -04:00
PL_WRITE_EXPENSIVE ,
2013-04-17 00:00:05 -04:00
0 ,
NULL ,
& node
) ;
assert ( node - > height = = 0 ) ;
assert ( ! node - > dirty ) ;
assert ( node - > n_children = = 1 ) ;
2014-02-04 11:08:30 -05:00
assert ( BLB_DATA ( node , 0 ) - > omt_size ( ) = = 2 ) ;
2013-04-17 00:00:36 -04:00
toku_unpin_ftnode_off_client_thread ( c_ft - > ft , node ) ;
2013-04-17 00:00:05 -04:00
DBT k ;
struct check_pair pair1 = { 2 , " a " , 0 , NULL , 0 } ;
2013-04-17 00:00:35 -04:00
r = toku_ft_lookup ( c_ft , toku_fill_dbt ( & k , " a " , 2 ) , lookup_checkf , & pair1 ) ;
2013-04-17 00:00:05 -04:00
assert ( r = = 0 ) ;
struct check_pair pair2 = { 2 , " x " , sizeof ( dummy_val ) , dummy_val , 0 } ;
2013-04-17 00:00:35 -04:00
r = toku_ft_lookup ( c_ft , toku_fill_dbt ( & k , " x " , 2 ) , lookup_checkf , & pair2 ) ;
2013-04-17 00:00:05 -04:00
assert ( r = = 0 ) ;
struct check_pair pair3 = { 2 , " y " , sizeof ( dummy_val ) , dummy_val , 0 } ;
2013-04-17 00:00:35 -04:00
r = toku_ft_lookup ( c_ft , toku_fill_dbt ( & k , " y " , 2 ) , lookup_checkf , & pair3 ) ;
2013-04-17 00:00:05 -04:00
assert ( r = = 0 ) ;
struct check_pair pair4 = { 2 , " z " , 0 , NULL , 0 } ;
2013-04-17 00:00:35 -04:00
r = toku_ft_lookup ( c_ft , toku_fill_dbt ( & k , " z " , 2 ) , lookup_checkf , & pair4 ) ;
2013-04-17 00:00:05 -04:00
assert ( r = = 0 ) ;
2013-04-17 00:00:35 -04:00
r = toku_close_ft_handle_nolsn ( t , 0 ) ; assert ( r = = 0 ) ;
r = toku_close_ft_handle_nolsn ( c_ft , 0 ) ; assert ( r = = 0 ) ;
2013-04-17 00:01:08 -04:00
toku_cachetable_close ( & ct ) ;
2013-04-17 00:00:05 -04:00
toku_free ( pivots [ 0 ] ) ;
}
int
test_main ( int argc __attribute__ ( ( __unused__ ) ) , const char * argv [ ] __attribute__ ( ( __unused__ ) ) ) {
default_parse_args ( argc , argv ) ;
2013-04-17 00:00:35 -04:00
doit ( ft_flush_aflter_rebalance ) ;
2013-04-17 00:00:05 -04:00
return 0 ;
}