Commit ce2fbd9e authored by unknown's avatar unknown

WL#3071 Maria checkpoint

background page flushing was using dfile even when it wanted to flush
the index file.


storage/maria/ma_checkpoint.c:
  * filter_flush_data_file* functions are in fact for the index file too,
  renaming them.
  * flush of index file was using dfile (bad copy-paste)
parent f134f91f
...@@ -67,19 +67,19 @@ struct st_filter_param ...@@ -67,19 +67,19 @@ struct st_filter_param
}; /**< information to determine which dirty pages should be flushed */ }; /**< information to determine which dirty pages should be flushed */
static enum pagecache_flush_filter_result static enum pagecache_flush_filter_result
filter_flush_data_file_medium(enum pagecache_page_type type, filter_flush_file_medium(enum pagecache_page_type type,
pgcache_page_no_t page, pgcache_page_no_t page,
LSN rec_lsn, void *arg); LSN rec_lsn, void *arg);
static enum pagecache_flush_filter_result static enum pagecache_flush_filter_result
filter_flush_data_file_full(enum pagecache_page_type type, filter_flush_file_full(enum pagecache_page_type type,
pgcache_page_no_t page, pgcache_page_no_t page,
LSN rec_lsn, void *arg); LSN rec_lsn, void *arg);
static enum pagecache_flush_filter_result static enum pagecache_flush_filter_result
filter_flush_data_file_indirect(enum pagecache_page_type type, filter_flush_file_indirect(enum pagecache_page_type type,
pgcache_page_no_t page, pgcache_page_no_t page,
LSN rec_lsn, void *arg); LSN rec_lsn, void *arg);
static enum pagecache_flush_filter_result static enum pagecache_flush_filter_result
filter_flush_data_file_evenly(enum pagecache_page_type type, filter_flush_file_evenly(enum pagecache_page_type type,
pgcache_page_no_t pageno, pgcache_page_no_t pageno,
LSN rec_lsn, void *arg); LSN rec_lsn, void *arg);
static int really_execute_checkpoint(void); static int really_execute_checkpoint(void);
...@@ -460,7 +460,7 @@ void ma_checkpoint_end(void) ...@@ -460,7 +460,7 @@ void ma_checkpoint_end(void)
*/ */
static enum pagecache_flush_filter_result static enum pagecache_flush_filter_result
filter_flush_data_file_medium(enum pagecache_page_type type, filter_flush_file_medium(enum pagecache_page_type type,
pgcache_page_no_t pageno, pgcache_page_no_t pageno,
LSN rec_lsn, void *arg) LSN rec_lsn, void *arg)
{ {
...@@ -484,7 +484,7 @@ filter_flush_data_file_medium(enum pagecache_page_type type, ...@@ -484,7 +484,7 @@ filter_flush_data_file_medium(enum pagecache_page_type type,
*/ */
static enum pagecache_flush_filter_result static enum pagecache_flush_filter_result
filter_flush_data_file_full(enum pagecache_page_type type, filter_flush_file_full(enum pagecache_page_type type,
pgcache_page_no_t pageno, pgcache_page_no_t pageno,
LSN rec_lsn __attribute__ ((unused)), LSN rec_lsn __attribute__ ((unused)),
void *arg) void *arg)
...@@ -508,7 +508,7 @@ filter_flush_data_file_full(enum pagecache_page_type type, ...@@ -508,7 +508,7 @@ filter_flush_data_file_full(enum pagecache_page_type type,
*/ */
static enum pagecache_flush_filter_result static enum pagecache_flush_filter_result
filter_flush_data_file_indirect(enum pagecache_page_type type filter_flush_file_indirect(enum pagecache_page_type type
__attribute__ ((unused)), __attribute__ ((unused)),
pgcache_page_no_t pageno, pgcache_page_no_t pageno,
LSN rec_lsn __attribute__ ((unused)), LSN rec_lsn __attribute__ ((unused)),
...@@ -524,11 +524,11 @@ filter_flush_data_file_indirect(enum pagecache_page_type type ...@@ -524,11 +524,11 @@ filter_flush_data_file_indirect(enum pagecache_page_type type
/** /**
@brief dirty-page filtering criteria for background flushing thread. @brief dirty-page filtering criteria for background flushing thread.
We flush data pages which have been dirty since the previous checkpoint We flush data/index pages which have been dirty since the previous
(this is the two-checkpoint rule: the REDO phase will not have to start checkpoint (this is the two-checkpoint rule: the REDO phase will not have
from earlier than the next-to-last checkpoint), and all dirty bitmap to start from earlier than the next-to-last checkpoint), and no
pages. But we flush no more than a certain number of pages (to have an bitmap pages. But we flush no more than a certain number of pages (to have
even flushing, no write burst). an even flushing, no write burst).
@param type Page's type @param type Page's type
@param pageno Page's number @param pageno Page's number
...@@ -537,7 +537,7 @@ filter_flush_data_file_indirect(enum pagecache_page_type type ...@@ -537,7 +537,7 @@ filter_flush_data_file_indirect(enum pagecache_page_type type
*/ */
static enum pagecache_flush_filter_result static enum pagecache_flush_filter_result
filter_flush_data_file_evenly(enum pagecache_page_type type, filter_flush_file_evenly(enum pagecache_page_type type,
pgcache_page_no_t pageno __attribute__ ((unused)), pgcache_page_no_t pageno __attribute__ ((unused)),
LSN rec_lsn, void *arg) LSN rec_lsn, void *arg)
{ {
...@@ -671,11 +671,11 @@ pthread_handler_t ma_checkpoint_background(void *arg) ...@@ -671,11 +671,11 @@ pthread_handler_t ma_checkpoint_background(void *arg)
int res= int res=
flush_pagecache_blocks_with_filter(maria_pagecache, flush_pagecache_blocks_with_filter(maria_pagecache,
dfile, FLUSH_KEEP_LAZY, dfile, FLUSH_KEEP_LAZY,
filter_flush_data_file_evenly, filter_flush_file_evenly,
&filter_param); &filter_param);
if (unlikely(res & PCFLUSH_ERROR)) if (unlikely(res & PCFLUSH_ERROR))
fprintf(stderr, "Maria engine: warning - background page flush" fprintf(stderr, "Maria engine: warning - background data page"
" failed\n"); " flush failed\n");
if (filter_param.max_pages == 0) /* bunch all flushed, sleep */ if (filter_param.max_pages == 0) /* bunch all flushed, sleep */
break; /* and we will continue with the same file */ break; /* and we will continue with the same file */
dfile++; /* otherwise all this file is flushed, move to next file */ dfile++; /* otherwise all this file is flushed, move to next file */
...@@ -692,12 +692,12 @@ pthread_handler_t ma_checkpoint_background(void *arg) ...@@ -692,12 +692,12 @@ pthread_handler_t ma_checkpoint_background(void *arg)
{ {
int res= int res=
flush_pagecache_blocks_with_filter(maria_pagecache, flush_pagecache_blocks_with_filter(maria_pagecache,
dfile, FLUSH_KEEP_LAZY, kfile, FLUSH_KEEP_LAZY,
filter_flush_data_file_evenly, filter_flush_file_evenly,
&filter_param); &filter_param);
if (unlikely(res & PCFLUSH_ERROR)) if (unlikely(res & PCFLUSH_ERROR))
fprintf(stderr, "Maria engine: warning - background page flush" fprintf(stderr, "Maria engine: warning - background index page"
" failed\n"); " flush failed\n");
if (filter_param.max_pages == 0) /* bunch all flushed, sleep */ if (filter_param.max_pages == 0) /* bunch all flushed, sleep */
break; /* and we will continue with the same file */ break; /* and we will continue with the same file */
kfile++; /* otherwise all this file is flushed, move to next file */ kfile++; /* otherwise all this file is flushed, move to next file */
...@@ -854,13 +854,13 @@ static int collect_tables(LEX_STRING *str, LSN checkpoint_start_log_horizon) ...@@ -854,13 +854,13 @@ static int collect_tables(LEX_STRING *str, LSN checkpoint_start_log_horizon)
switch(checkpoint_in_progress) switch(checkpoint_in_progress)
{ {
case CHECKPOINT_MEDIUM: case CHECKPOINT_MEDIUM:
filter= &filter_flush_data_file_medium; filter= &filter_flush_file_medium;
break; break;
case CHECKPOINT_FULL: case CHECKPOINT_FULL:
filter= &filter_flush_data_file_full; filter= &filter_flush_file_full;
break; break;
case CHECKPOINT_INDIRECT: case CHECKPOINT_INDIRECT:
filter= &filter_flush_data_file_indirect; filter= &filter_flush_file_indirect;
break; break;
default: default:
DBUG_ASSERT(0); DBUG_ASSERT(0);
......
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