Commit 568e32c8 authored by unknown's avatar unknown

Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-maria

into  gbichot4.local:/home/mysql_src/mysql-maria-tmp


storage/maria/ma_loghandler.c:
  Auto merged
parents 494409bd 63ff9877
...@@ -2401,9 +2401,7 @@ static int ha_maria_init(void *p) ...@@ -2401,9 +2401,7 @@ static int ha_maria_init(void *p)
MYSQL_VERSION_ID, server_id, maria_log_pagecache, MYSQL_VERSION_ID, server_id, maria_log_pagecache,
TRANSLOG_DEFAULT_FLAGS) || TRANSLOG_DEFAULT_FLAGS) ||
maria_recover() || maria_recover() ||
ma_checkpoint_init(FALSE) || ma_checkpoint_init(FALSE);
/* One checkpoint after Recovery */
ma_checkpoint_execute(CHECKPOINT_FULL, FALSE);
maria_multi_threaded= TRUE; maria_multi_threaded= TRUE;
return res; return res;
} }
......
...@@ -217,6 +217,9 @@ my_bool _ma_bitmap_init(MARIA_SHARE *share, File file) ...@@ -217,6 +217,9 @@ my_bool _ma_bitmap_init(MARIA_SHARE *share, File file)
bitmap->page= ~(ulonglong) 0; bitmap->page= ~(ulonglong) 0;
bitmap->used_size= bitmap->total_size; bitmap->used_size= bitmap->total_size;
bfill(bitmap->map, share->block_size, 255); bfill(bitmap->map, share->block_size, 255);
#ifndef DBUG_OFF
memcpy(bitmap->map + bitmap->block_size, bitmap->map, bitmap->block_size);
#endif
if (share->state.first_bitmap_with_space == ~(ulonglong) 0) if (share->state.first_bitmap_with_space == ~(ulonglong) 0)
{ {
/* Start scanning for free space from start of file */ /* Start scanning for free space from start of file */
......
...@@ -390,6 +390,7 @@ void ma_checkpoint_end(void) ...@@ -390,6 +390,7 @@ void ma_checkpoint_end(void)
pthread_mutex_unlock(&LOCK_checkpoint); pthread_mutex_unlock(&LOCK_checkpoint);
my_free((uchar *)dfiles, MYF(MY_ALLOW_ZERO_PTR)); my_free((uchar *)dfiles, MYF(MY_ALLOW_ZERO_PTR));
my_free((uchar *)kfiles, MYF(MY_ALLOW_ZERO_PTR)); my_free((uchar *)kfiles, MYF(MY_ALLOW_ZERO_PTR));
dfiles= kfiles= NULL;
pthread_mutex_destroy(&LOCK_checkpoint); pthread_mutex_destroy(&LOCK_checkpoint);
pthread_cond_destroy(&COND_checkpoint); pthread_cond_destroy(&COND_checkpoint);
checkpoint_inited= FALSE; checkpoint_inited= FALSE;
...@@ -563,6 +564,8 @@ pthread_handler_t ma_checkpoint_background(void *arg __attribute__((unused))) ...@@ -563,6 +564,8 @@ pthread_handler_t ma_checkpoint_background(void *arg __attribute__((unused)))
TRANSLOG_ADDRESS log_horizon_at_last_checkpoint= LSN_IMPOSSIBLE; TRANSLOG_ADDRESS log_horizon_at_last_checkpoint= LSN_IMPOSSIBLE;
ulonglong pagecache_flushes_at_last_checkpoint= 0; ulonglong pagecache_flushes_at_last_checkpoint= 0;
struct timespec abstime; struct timespec abstime;
LINT_INIT(kfile);
LINT_INIT(dfile);
switch((sleeps++) % time_between_checkpoints) switch((sleeps++) % time_between_checkpoints)
{ {
case 0: case 0:
...@@ -731,6 +734,7 @@ static int collect_tables(LEX_STRING *str, LSN checkpoint_start_log_horizon) ...@@ -731,6 +734,7 @@ static int collect_tables(LEX_STRING *str, LSN checkpoint_start_log_horizon)
*state_copies_end, /**< cache ends here */ *state_copies_end, /**< cache ends here */
*state_copy; /**< iterator in cache */ *state_copy; /**< iterator in cache */
TRANSLOG_ADDRESS state_copies_horizon; /**< horizon of states' _copies_ */ TRANSLOG_ADDRESS state_copies_horizon; /**< horizon of states' _copies_ */
LINT_INIT(state_copies_horizon);
DBUG_ENTER("collect_tables"); DBUG_ENTER("collect_tables");
/* let's make a list of distinct shares */ /* let's make a list of distinct shares */
......
...@@ -95,7 +95,8 @@ int maria_delete_all_rows(MARIA_HA *info) ...@@ -95,7 +95,8 @@ int maria_delete_all_rows(MARIA_HA *info)
The operations above on the index/data file will be forced to disk at The operations above on the index/data file will be forced to disk at
Checkpoint or maria_close() time. So we can reset: Checkpoint or maria_close() time. So we can reset:
*/ */
info->trn->rec_lsn= LSN_IMPOSSIBLE; if (log_record)
info->trn->rec_lsn= LSN_IMPOSSIBLE;
VOID(_ma_writeinfo(info,WRITEINFO_UPDATE_KEYFILE)); VOID(_ma_writeinfo(info,WRITEINFO_UPDATE_KEYFILE));
#ifdef HAVE_MMAP #ifdef HAVE_MMAP
......
...@@ -140,8 +140,13 @@ int maria_lock_database(MARIA_HA *info, int lock_type) ...@@ -140,8 +140,13 @@ int maria_lock_database(MARIA_HA *info, int lock_type)
} }
info->opt_flag&= ~(READ_CACHE_USED | WRITE_CACHE_USED); info->opt_flag&= ~(READ_CACHE_USED | WRITE_CACHE_USED);
info->lock_type= F_UNLCK; info->lock_type= F_UNLCK;
/* verify that user of the table cleaned up after itself */ /*
DBUG_ASSERT(share->now_transactional == share->base.born_transactional); Verify that user of the table cleaned up after itself. Not in
recovery, as for example maria_extra(HA_EXTRA_PREPARE_FOR_RENAME) may
call us here, with transactionality temporarily disabled.
*/
DBUG_ASSERT(maria_in_recovery ||
share->now_transactional == share->base.born_transactional);
break; break;
case F_RDLCK: case F_RDLCK:
if (info->lock_type == F_WRLCK) if (info->lock_type == F_WRLCK)
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
DBUG_PRINT("error", E); \ DBUG_PRINT("error", E); \
printf E; \ printf E; \
putchar('\n'); \ putchar('\n'); \
DBUG_ASSERT(0); \
} while(0); } while(0);
/* Maximum length of compressed LSNs (the worst case of whole LSN storing) */ /* Maximum length of compressed LSNs (the worst case of whole LSN storing) */
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include "ma_recovery.h" #include "ma_recovery.h"
#include "ma_blockrec.h" #include "ma_blockrec.h"
#include "trnman.h" #include "trnman.h"
#include "ma_checkpoint.h"
struct st_trn_for_recovery /* used only in the REDO phase */ struct st_trn_for_recovery /* used only in the REDO phase */
{ {
...@@ -106,7 +107,7 @@ static int new_table(uint16 sid, const char *name, ...@@ -106,7 +107,7 @@ static int new_table(uint16 sid, const char *name,
static int new_page(File fileid, pgcache_page_no_t pageid, LSN rec_lsn, static int new_page(File fileid, pgcache_page_no_t pageid, LSN rec_lsn,
struct st_dirty_page *dirty_page); struct st_dirty_page *dirty_page);
static int close_all_tables(void); static int close_all_tables(void);
static my_bool close_one_table(const char *name, LSN addr); static my_bool close_one_table(const char *name, TRANSLOG_ADDRESS addr);
static void print_redo_phase_progress(TRANSLOG_ADDRESS addr); static void print_redo_phase_progress(TRANSLOG_ADDRESS addr);
/** @brief global [out] buffer for translog_read_record(); never shrinks */ /** @brief global [out] buffer for translog_read_record(); never shrinks */
...@@ -169,7 +170,7 @@ int maria_recover(void) ...@@ -169,7 +170,7 @@ int maria_recover(void)
#endif #endif
tprint(trace_file, "TRACE of the last MARIA recovery from mysqld\n"); tprint(trace_file, "TRACE of the last MARIA recovery from mysqld\n");
DBUG_ASSERT(maria_pagecache->inited); DBUG_ASSERT(maria_pagecache->inited);
res= maria_apply_log(LSN_IMPOSSIBLE, TRUE, trace_file, TRUE, TRUE); res= maria_apply_log(LSN_IMPOSSIBLE, TRUE, trace_file, TRUE, TRUE, TRUE);
if (!res) if (!res)
tprint(trace_file, "SUCCESS\n"); tprint(trace_file, "SUCCESS\n");
if (trace_file) if (trace_file)
...@@ -186,8 +187,9 @@ int maria_recover(void) ...@@ -186,8 +187,9 @@ int maria_recover(void)
LSN_IMPOSSIBLE means "use last checkpoint" LSN_IMPOSSIBLE means "use last checkpoint"
@param apply if log records should be applied or not @param apply if log records should be applied or not
@param trace_file trace file where progress/debug messages will go @param trace_file trace file where progress/debug messages will go
@param skip_DDLs Should DDL records (CREATE/RENAME/DROP/REPAIR) @param skip_DDLs_arg Should DDL records (CREATE/RENAME/DROP/REPAIR)
be skipped by the REDO phase or not be skipped by the REDO phase or not
@param take_checkpoints Should we take checkpoints or not.
@todo This trace_file thing is primitive; soon we will make it similar to @todo This trace_file thing is primitive; soon we will make it similar to
ma_check_print_warning() etc, and a successful recovery does not need to ma_check_print_warning() etc, and a successful recovery does not need to
...@@ -199,7 +201,8 @@ int maria_recover(void) ...@@ -199,7 +201,8 @@ int maria_recover(void)
*/ */
int maria_apply_log(LSN from_lsn, my_bool apply, FILE *trace_file, int maria_apply_log(LSN from_lsn, my_bool apply, FILE *trace_file,
my_bool should_run_undo_phase, my_bool skip_DDLs_arg) my_bool should_run_undo_phase, my_bool skip_DDLs_arg,
my_bool take_checkpoints)
{ {
int error= 0; int error= 0;
uint unfinished_trans; uint unfinished_trans;
...@@ -207,6 +210,8 @@ int maria_apply_log(LSN from_lsn, my_bool apply, FILE *trace_file, ...@@ -207,6 +210,8 @@ int maria_apply_log(LSN from_lsn, my_bool apply, FILE *trace_file,
DBUG_ASSERT(apply || !should_run_undo_phase); DBUG_ASSERT(apply || !should_run_undo_phase);
DBUG_ASSERT(!maria_multi_threaded); DBUG_ASSERT(!maria_multi_threaded);
/* checkpoints can happen only if TRNs have been built */
DBUG_ASSERT(should_run_undo_phase || !take_checkpoints);
all_active_trans= (struct st_trn_for_recovery *) all_active_trans= (struct st_trn_for_recovery *)
my_malloc((SHORT_TRID_MAX + 1) * sizeof(struct st_trn_for_recovery), my_malloc((SHORT_TRID_MAX + 1) * sizeof(struct st_trn_for_recovery),
MYF(MY_ZEROFILL)); MYF(MY_ZEROFILL));
...@@ -260,28 +265,34 @@ int maria_apply_log(LSN from_lsn, my_bool apply, FILE *trace_file, ...@@ -260,28 +265,34 @@ int maria_apply_log(LSN from_lsn, my_bool apply, FILE *trace_file,
else else
{ {
from_lsn= parse_checkpoint_record(last_checkpoint_lsn); from_lsn= parse_checkpoint_record(last_checkpoint_lsn);
if (from_lsn == LSN_IMPOSSIBLE)
goto err;
from_lsn= translog_next_LSN(from_lsn, LSN_IMPOSSIBLE);
if (from_lsn == LSN_ERROR) if (from_lsn == LSN_ERROR)
goto err; goto err;
/*
from_lsn LSN_IMPOSSIBLE will be correctly processed
by run_redo_phase()
*/
} }
} }
if (run_redo_phase(from_lsn, apply)) if (run_redo_phase(from_lsn, apply))
goto err; goto err;
unfinished_trans= end_of_redo_phase(should_run_undo_phase); if ((unfinished_trans=
if (unfinished_trans == (uint)-1) end_of_redo_phase(should_run_undo_phase)) == (uint)-1)
goto err; goto err;
if (take_checkpoints)
{
/*
We take a checkpoint as it can save future recovery work if we crash
during the UNDO phase. But we don't flush pages, as UNDOs will change
them again probably.
*/
if (ma_checkpoint_init(FALSE) ||
ma_checkpoint_execute(CHECKPOINT_INDIRECT, FALSE))
goto err;
}
if (should_run_undo_phase) if (should_run_undo_phase)
{ {
if (run_undo_phase(unfinished_trans)) if (run_undo_phase(unfinished_trans))
return 1; goto err;
} }
else if (unfinished_trans > 0) else if (unfinished_trans > 0)
tprint(tracef, "WARNING: %u unfinished transactions; some tables may be" tprint(tracef, "WARNING: %u unfinished transactions; some tables may be"
...@@ -294,7 +305,13 @@ int maria_apply_log(LSN from_lsn, my_bool apply, FILE *trace_file, ...@@ -294,7 +305,13 @@ int maria_apply_log(LSN from_lsn, my_bool apply, FILE *trace_file,
if (close_all_tables()) if (close_all_tables())
goto err; goto err;
/* If inside ha_maria, a checkpoint will soon be taken and save our work */ if (take_checkpoints)
{
/* No dirty pages, all tables are closed, no active transactions, save: */
if (ma_checkpoint_execute(CHECKPOINT_FULL, FALSE))
goto err;
}
goto end; goto end;
err: err:
error= 1; error= 1;
...@@ -311,6 +328,7 @@ end: ...@@ -311,6 +328,7 @@ end:
my_free(log_record_buffer.str, MYF(MY_ALLOW_ZERO_PTR)); my_free(log_record_buffer.str, MYF(MY_ALLOW_ZERO_PTR));
log_record_buffer.str= NULL; log_record_buffer.str= NULL;
log_record_buffer.length= 0; log_record_buffer.length= 0;
ma_checkpoint_end();
if (tracef != stdout && redo_phase_message_printed) if (tracef != stdout && redo_phase_message_printed)
{ {
ulonglong old_now= now; ulonglong old_now= now;
...@@ -372,7 +390,14 @@ prototype_redo_exec_hook(LONG_TRANSACTION_ID) ...@@ -372,7 +390,14 @@ prototype_redo_exec_hook(LONG_TRANSACTION_ID)
if (long_trid != 0) if (long_trid != 0)
{ {
LSN ulsn= all_active_trans[sid].undo_lsn; LSN ulsn= all_active_trans[sid].undo_lsn;
if (ulsn != LSN_IMPOSSIBLE) /*
If the first record of that transaction is after 'rec', it's probably
because that transaction was found in the checkpoint record, and then
it's ok, we can forget about that transaction (we'll meet it later
again in the REDO phase) and replace it with the one in 'rec'.
*/
if ((ulsn != LSN_IMPOSSIBLE) &&
(cmp_translog_addr(ulsn, rec->lsn) < 0))
{ {
char llbuf[22]; char llbuf[22];
llstr(long_trid, llbuf); llstr(long_trid, llbuf);
...@@ -442,6 +467,11 @@ prototype_redo_exec_hook(REDO_CREATE_TABLE) ...@@ -442,6 +467,11 @@ prototype_redo_exec_hook(REDO_CREATE_TABLE)
} }
name= log_record_buffer.str; name= log_record_buffer.str;
tprint(tracef, "Table '%s'", name); tprint(tracef, "Table '%s'", name);
/*
TRUNCATE TABLE and REPAIR USE_FRM call maria_create(), so below we can
find a REDO_CREATE_TABLE for a table which we have open, that's why we
need to look for any open instances and close them first.
*/
if (close_one_table(name, rec->lsn)) if (close_one_table(name, rec->lsn))
{ {
tprint(tracef, " got error %d on close\n", my_errno); tprint(tracef, " got error %d on close\n", my_errno);
...@@ -620,10 +650,6 @@ prototype_redo_exec_hook(REDO_RENAME_TABLE) ...@@ -620,10 +650,6 @@ prototype_redo_exec_hook(REDO_RENAME_TABLE)
if (info) if (info)
{ {
MARIA_SHARE *share= info->s; MARIA_SHARE *share= info->s;
/*
We may have open instances on this table. But it does not matter, the
maria_extra() below will take care of them.
*/
if (!share->base.born_transactional) if (!share->base.born_transactional)
{ {
tprint(tracef, ", is not transactional, ignoring renaming\n"); tprint(tracef, ", is not transactional, ignoring renaming\n");
...@@ -645,12 +671,7 @@ prototype_redo_exec_hook(REDO_RENAME_TABLE) ...@@ -645,12 +671,7 @@ prototype_redo_exec_hook(REDO_RENAME_TABLE)
ALERT_USER(); ALERT_USER();
goto end; goto end;
} }
/* if (close_one_table(info->s->open_file_name, rec->lsn) ||
This maria_extra() call serves to signal that old open instances of
this table should not be used anymore, and (only on Windows) to close
open files so they can be renamed
*/
if (maria_extra(info, HA_EXTRA_PREPARE_FOR_RENAME, NULL) ||
maria_close(info)) maria_close(info))
goto end; goto end;
info= NULL; info= NULL;
...@@ -822,10 +843,6 @@ prototype_redo_exec_hook(REDO_DROP_TABLE) ...@@ -822,10 +843,6 @@ prototype_redo_exec_hook(REDO_DROP_TABLE)
if (info) if (info)
{ {
MARIA_SHARE *share= info->s; MARIA_SHARE *share= info->s;
/*
We may have open instances on this table. But it does not matter, the
maria_extra() below will take care of them.
*/
if (!share->base.born_transactional) if (!share->base.born_transactional)
{ {
tprint(tracef, ", is not transactional, ignoring removal\n"); tprint(tracef, ", is not transactional, ignoring removal\n");
...@@ -847,12 +864,7 @@ prototype_redo_exec_hook(REDO_DROP_TABLE) ...@@ -847,12 +864,7 @@ prototype_redo_exec_hook(REDO_DROP_TABLE)
ALERT_USER(); ALERT_USER();
goto end; goto end;
} }
/* if (close_one_table(info->s->open_file_name, rec->lsn) ||
This maria_extra() call serves to signal that old open instances of
this table should not be used anymore, and (only on Windows) to close
open files so they can be deleted
*/
if (maria_extra(info, HA_EXTRA_PREPARE_FOR_DROP, NULL) ||
maria_close(info)) maria_close(info))
goto end; goto end;
info= NULL; info= NULL;
...@@ -942,7 +954,7 @@ static int new_table(uint16 sid, const char *name, ...@@ -942,7 +954,7 @@ static int new_table(uint16 sid, const char *name,
{ {
tprint(tracef, ", is absent (must have been dropped later?)" tprint(tracef, ", is absent (must have been dropped later?)"
" or its header is so corrupted that we cannot open it;" " or its header is so corrupted that we cannot open it;"
" we skip it\n"); " we skip it");
error= 0; error= 0;
goto end; goto end;
} }
...@@ -1692,8 +1704,6 @@ err: ...@@ -1692,8 +1704,6 @@ err:
@brief Informs about any aborted groups or unfinished transactions, @brief Informs about any aborted groups or unfinished transactions,
prepares for the UNDO phase if needed. prepares for the UNDO phase if needed.
@param prepare_for_undo_phase
@note Observe that it may init trnman. @note Observe that it may init trnman.
*/ */
static uint end_of_redo_phase(my_bool prepare_for_undo_phase) static uint end_of_redo_phase(my_bool prepare_for_undo_phase)
...@@ -1773,24 +1783,6 @@ static uint end_of_redo_phase(my_bool prepare_for_undo_phase) ...@@ -1773,24 +1783,6 @@ static uint end_of_redo_phase(my_bool prepare_for_undo_phase)
translog_assign_id_to_share_from_recovery(info->s, sid); translog_assign_id_to_share_from_recovery(info->s, sid);
} }
} }
#if 0 /* will be enabled soon */
if (prepare_for_undo_phase)
{
/*
We take a checkpoint as it can save future recovery work if we crash
soon. But we don't flush pages, as UNDOs would change them again
probably.
*/
if (ma_checkpoint_init(FALSE))
return -1;
int res= ma_checkpoint_execute(CHECKPOINT_INDIRECT, FALSE);
ma_checkpoint_end();
if (res)
unfinished= -1;
}
#endif
return unfinished; return unfinished;
} }
...@@ -1984,17 +1976,18 @@ static MARIA_HA *get_MARIA_HA_from_UNDO_record(const ...@@ -1984,17 +1976,18 @@ static MARIA_HA *get_MARIA_HA_from_UNDO_record(const
@brief Parses checkpoint record. @brief Parses checkpoint record.
Builds from it the dirty_pages list (a hash), opens tables and maps them to Builds from it the dirty_pages list (a hash), opens tables and maps them to
their 2-byte IDs, recreates transactions (not real TRNs though). their 2-byte IDs, recreates transactions (not real TRNs though).
@return From where in the log the REDO phase should start @return LSN from where in the log the REDO phase should start
@retval LSN_IMPOSSIBLE error @retval LSN_ERROR error
@retval other ok @retval other ok
*/ */
static LSN parse_checkpoint_record(LSN lsn) static LSN parse_checkpoint_record(LSN lsn)
{ {
ulong i; ulong i;
TRANSLOG_HEADER_BUFFER rec; TRANSLOG_HEADER_BUFFER rec;
TRANSLOG_ADDRESS start_address;
tprint(tracef, "Loading data from checkpoint record at LSN (%lu,0x%lx)\n", tprint(tracef, "Loading data from checkpoint record at LSN (%lu,0x%lx)\n",
LSN_IN_PARTS(lsn)); LSN_IN_PARTS(lsn));
...@@ -2003,7 +1996,7 @@ static LSN parse_checkpoint_record(LSN lsn) ...@@ -2003,7 +1996,7 @@ static LSN parse_checkpoint_record(LSN lsn)
if (len == RECHEADER_READ_ERROR) if (len == RECHEADER_READ_ERROR)
{ {
tprint(tracef, "Cannot find checkpoint record where it should be\n"); tprint(tracef, "Cannot find checkpoint record where it should be\n");
return LSN_IMPOSSIBLE; return LSN_ERROR;
} }
enlarge_buffer(&rec); enlarge_buffer(&rec);
...@@ -2013,11 +2006,11 @@ static LSN parse_checkpoint_record(LSN lsn) ...@@ -2013,11 +2006,11 @@ static LSN parse_checkpoint_record(LSN lsn)
rec.record_length) rec.record_length)
{ {
tprint(tracef, "Failed to read record\n"); tprint(tracef, "Failed to read record\n");
return LSN_IMPOSSIBLE; return LSN_ERROR;
} }
char *ptr= log_record_buffer.str; char *ptr= log_record_buffer.str;
checkpoint_start= lsn_korr(ptr); start_address= lsn_korr(ptr);
ptr+= LSN_STORE_SIZE; ptr+= LSN_STORE_SIZE;
/* transactions */ /* transactions */
...@@ -2031,7 +2024,7 @@ static LSN parse_checkpoint_record(LSN lsn) ...@@ -2031,7 +2024,7 @@ static LSN parse_checkpoint_record(LSN lsn)
how much brain juice and discussions there was to come to writing this how much brain juice and discussions there was to come to writing this
line line
*/ */
set_if_smaller(checkpoint_start, minimum_rec_lsn_of_active_transactions); set_if_smaller(start_address, minimum_rec_lsn_of_active_transactions);
for (i= 0; i < nb_active_transactions; i++) for (i= 0; i < nb_active_transactions; i++)
{ {
...@@ -2073,7 +2066,7 @@ static LSN parse_checkpoint_record(LSN lsn) ...@@ -2073,7 +2066,7 @@ static LSN parse_checkpoint_record(LSN lsn)
ptr+= name_len; ptr+= name_len;
strnmov(name, ptr, sizeof(name)); strnmov(name, ptr, sizeof(name));
if (new_table(sid, name, kfile, dfile, first_log_write_lsn)) if (new_table(sid, name, kfile, dfile, first_log_write_lsn))
return LSN_IMPOSSIBLE; return LSN_ERROR;
} }
/* dirty pages */ /* dirty pages */
...@@ -2084,13 +2077,13 @@ static LSN parse_checkpoint_record(LSN lsn) ...@@ -2084,13 +2077,13 @@ static LSN parse_checkpoint_record(LSN lsn)
offsetof(struct st_dirty_page, file_and_page_id), offsetof(struct st_dirty_page, file_and_page_id),
sizeof(((struct st_dirty_page *)NULL)->file_and_page_id), sizeof(((struct st_dirty_page *)NULL)->file_and_page_id),
NULL, NULL, 0)) NULL, NULL, 0))
return LSN_IMPOSSIBLE; return LSN_ERROR;
dirty_pages_pool= dirty_pages_pool=
(struct st_dirty_page *)my_malloc(nb_dirty_pages * (struct st_dirty_page *)my_malloc(nb_dirty_pages *
sizeof(struct st_dirty_page), sizeof(struct st_dirty_page),
MYF(MY_WME)); MYF(MY_WME));
if (unlikely(dirty_pages_pool == NULL)) if (unlikely(dirty_pages_pool == NULL))
return LSN_IMPOSSIBLE; return LSN_ERROR;
struct st_dirty_page *next_dirty_page_in_pool= dirty_pages_pool; struct st_dirty_page *next_dirty_page_in_pool= dirty_pages_pool;
LSN minimum_rec_lsn_of_dirty_pages= LSN_MAX; LSN minimum_rec_lsn_of_dirty_pages= LSN_MAX;
for (i= 0; i < nb_dirty_pages ; i++) for (i= 0; i < nb_dirty_pages ; i++)
...@@ -2102,7 +2095,7 @@ static LSN parse_checkpoint_record(LSN lsn) ...@@ -2102,7 +2095,7 @@ static LSN parse_checkpoint_record(LSN lsn)
LSN rec_lsn= lsn_korr(ptr); LSN rec_lsn= lsn_korr(ptr);
ptr+= LSN_STORE_SIZE; ptr+= LSN_STORE_SIZE;
if (new_page(fileid, pageid, rec_lsn, next_dirty_page_in_pool++)) if (new_page(fileid, pageid, rec_lsn, next_dirty_page_in_pool++))
return LSN_IMPOSSIBLE; return LSN_ERROR;
set_if_smaller(minimum_rec_lsn_of_dirty_pages, rec_lsn); set_if_smaller(minimum_rec_lsn_of_dirty_pages, rec_lsn);
} }
/* after that, there will be no insert/delete into the hash */ /* after that, there will be no insert/delete into the hash */
...@@ -2113,10 +2106,23 @@ static LSN parse_checkpoint_record(LSN lsn) ...@@ -2113,10 +2106,23 @@ static LSN parse_checkpoint_record(LSN lsn)
if (ptr != (log_record_buffer.str + log_record_buffer.length)) if (ptr != (log_record_buffer.str + log_record_buffer.length))
{ {
tprint(tracef, "checkpoint record corrupted\n"); tprint(tracef, "checkpoint record corrupted\n");
return LSN_IMPOSSIBLE; return LSN_ERROR;
} }
set_if_smaller(checkpoint_start, minimum_rec_lsn_of_dirty_pages); set_if_smaller(start_address, minimum_rec_lsn_of_dirty_pages);
/*
Find LSN higher or equal to this TRANSLOG_ADDRESS, suitable for
translog_read_record() functions
*/
checkpoint_start= translog_next_LSN(start_address, LSN_IMPOSSIBLE);
if (checkpoint_start == LSN_IMPOSSIBLE)
{
/*
There must be a problem, as our checkpoint record exists and is >= the
address which is stored in its first bytes, which is >= start_address.
*/
return LSN_ERROR;
}
return checkpoint_start; return checkpoint_start;
} }
...@@ -2169,35 +2175,30 @@ end: ...@@ -2169,35 +2175,30 @@ end:
} }
/* Close one table during redo phase */ /**
@brief Close all table instances with a certain name which are present in
all_tables.
@param name Name of table
@param addr Log address passed to prepare_table_for_close()
*/
static my_bool close_one_table(const char *open_name, LSN addr) static my_bool close_one_table(const char *name, TRANSLOG_ADDRESS addr)
{ {
my_bool res= 0; my_bool res= 0;
LIST *pos;
/* There are no other threads using the tables, so we don't need any locks */ /* There are no other threads using the tables, so we don't need any locks */
for (pos=maria_open_list ; pos ;) struct st_table_for_recovery *internal_table, *end;
for (internal_table= all_tables, end= internal_table + SHARE_ID_MAX + 1;
internal_table < end ;
internal_table++)
{ {
MARIA_HA *info= (MARIA_HA*) pos->data; MARIA_HA *info= internal_table->info;
MARIA_SHARE *share= info->s; if ((info != NULL) && !strcmp(info->s->open_file_name, name))
pos= pos->next;
if (!strcmp(share->open_file_name, open_name))
{ {
struct st_table_for_recovery *internal_table, *end;
for (internal_table= all_tables, end= internal_table + SHARE_ID_MAX + 1;
internal_table < end ;
internal_table++)
{
if (internal_table->info == info)
{
internal_table->info= 0;
break;
}
}
prepare_table_for_close(info, addr); prepare_table_for_close(info, addr);
if (maria_close(info)) if (maria_close(info))
res= 1; res= 1;
internal_table->info= NULL;
} }
} }
return res; return res;
......
...@@ -26,5 +26,6 @@ ...@@ -26,5 +26,6 @@
C_MODE_START C_MODE_START
int maria_recover(void); int maria_recover(void);
int maria_apply_log(LSN lsn, my_bool apply, FILE *trace_file, int maria_apply_log(LSN lsn, my_bool apply, FILE *trace_file,
my_bool execute_undo_phase, my_bool skip_DDLs); my_bool execute_undo_phase, my_bool skip_DDLs,
my_bool take_checkpoints);
C_MODE_END C_MODE_END
...@@ -103,7 +103,7 @@ int main(int argc, char **argv) ...@@ -103,7 +103,7 @@ int main(int argc, char **argv)
fprintf(stdout, "TRACE of the last maria_read_log\n"); fprintf(stdout, "TRACE of the last maria_read_log\n");
if (maria_apply_log(lsn, opt_apply, opt_silent ? NULL : stdout, if (maria_apply_log(lsn, opt_apply, opt_silent ? NULL : stdout,
opt_apply_undo, FALSE)) opt_apply_undo, FALSE, FALSE))
goto err; goto err;
fprintf(stdout, "%s: SUCCESS\n", my_progname_short); fprintf(stdout, "%s: SUCCESS\n", my_progname_short);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment