mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
d20a4da23d
buf_read_page_low(): Use 64-bit arithmetics when computing the file byte offset. In other calls to fil_space_t::io() the offset was being computed correctly, for example by buf_page_t::physical_offset().
796 lines
25 KiB
C++
796 lines
25 KiB
C++
/*****************************************************************************
|
|
|
|
Copyright (c) 1995, 2017, Oracle and/or its affiliates. All Rights Reserved.
|
|
Copyright (c) 2015, 2021, MariaDB Corporation.
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
Foundation; version 2 of the License.
|
|
|
|
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.
|
|
|
|
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-1335 USA
|
|
|
|
*****************************************************************************/
|
|
|
|
/**************************************************//**
|
|
@file buf/buf0rea.cc
|
|
The database buffer read
|
|
|
|
Created 11/5/1995 Heikki Tuuri
|
|
*******************************************************/
|
|
|
|
#include "univ.i"
|
|
#include <mysql/service_thd_wait.h>
|
|
|
|
#include "buf0rea.h"
|
|
#include "fil0fil.h"
|
|
#include "mtr0mtr.h"
|
|
#include "buf0buf.h"
|
|
#include "buf0flu.h"
|
|
#include "buf0lru.h"
|
|
#include "buf0buddy.h"
|
|
#include "buf0dblwr.h"
|
|
#include "ibuf0ibuf.h"
|
|
#include "log0recv.h"
|
|
#include "trx0sys.h"
|
|
#include "os0file.h"
|
|
#include "srv0start.h"
|
|
#include "srv0srv.h"
|
|
|
|
/** If there are buf_pool.curr_size per the number below pending reads, then
|
|
read-ahead is not done: this is to prevent flooding the buffer pool with
|
|
i/o-fixed buffer blocks */
|
|
#define BUF_READ_AHEAD_PEND_LIMIT 2
|
|
|
|
/** Remove the sentinel block for the watch before replacing it with a
|
|
real block. watch_unset() or watch_occurred() will notice
|
|
that the block has been replaced with the real block.
|
|
@param watch sentinel */
|
|
inline void buf_pool_t::watch_remove(buf_page_t *watch)
|
|
{
|
|
mysql_mutex_assert_owner(&buf_pool.mutex);
|
|
ut_ad(hash_lock_get(watch->id())->is_write_locked());
|
|
ut_a(watch_is_sentinel(*watch));
|
|
if (watch->buf_fix_count())
|
|
{
|
|
ut_ad(watch->in_page_hash);
|
|
ut_d(watch->in_page_hash= false);
|
|
HASH_DELETE(buf_page_t, hash, &page_hash, watch->id().fold(), watch);
|
|
watch->set_buf_fix_count(0);
|
|
}
|
|
ut_ad(!watch->in_page_hash);
|
|
watch->set_state(BUF_BLOCK_NOT_USED);
|
|
watch->id_= page_id_t(~0ULL);
|
|
}
|
|
|
|
/** Initialize a page for read to the buffer buf_pool. If the page is
|
|
(1) already in buf_pool, or
|
|
(2) if we specify to read only ibuf pages and the page is not an ibuf page, or
|
|
(3) if the space is deleted or being deleted,
|
|
then this function does nothing.
|
|
Sets the io_fix flag to BUF_IO_READ and sets a non-recursive exclusive lock
|
|
on the buffer frame. The io-handler must take care that the flag is cleared
|
|
and the lock released later.
|
|
@param[in] mode BUF_READ_IBUF_PAGES_ONLY, ...
|
|
@param[in] page_id page id
|
|
@param[in] zip_size ROW_FORMAT=COMPRESSED page size, or 0
|
|
@param[in] unzip whether the uncompressed page is
|
|
requested (for ROW_FORMAT=COMPRESSED)
|
|
@return pointer to the block
|
|
@retval NULL in case of an error */
|
|
static buf_page_t* buf_page_init_for_read(ulint mode, const page_id_t page_id,
|
|
ulint zip_size, bool unzip)
|
|
{
|
|
mtr_t mtr;
|
|
|
|
if (mode == BUF_READ_IBUF_PAGES_ONLY)
|
|
{
|
|
/* It is a read-ahead within an ibuf routine */
|
|
ut_ad(!ibuf_bitmap_page(page_id, zip_size));
|
|
ibuf_mtr_start(&mtr);
|
|
|
|
if (!recv_no_ibuf_operations && !ibuf_page(page_id, zip_size, &mtr))
|
|
{
|
|
ibuf_mtr_commit(&mtr);
|
|
return nullptr;
|
|
}
|
|
}
|
|
else
|
|
ut_ad(mode == BUF_READ_ANY_PAGE);
|
|
|
|
buf_page_t *bpage= nullptr;
|
|
buf_block_t *block= nullptr;
|
|
if (!zip_size || unzip || recv_recovery_is_on())
|
|
{
|
|
block= buf_LRU_get_free_block(false);
|
|
block->initialise(page_id, zip_size);
|
|
/* We set a pass-type x-lock on the frame because then
|
|
the same thread which called for the read operation
|
|
(and is running now at this point of code) can wait
|
|
for the read to complete by waiting for the x-lock on
|
|
the frame; if the x-lock were recursive, the same
|
|
thread would illegally get the x-lock before the page
|
|
read is completed. The x-lock will be released
|
|
in buf_page_read_complete() by the io-handler thread. */
|
|
rw_lock_x_lock_gen(&block->lock, BUF_IO_READ);
|
|
}
|
|
|
|
const ulint fold= page_id.fold();
|
|
|
|
mysql_mutex_lock(&buf_pool.mutex);
|
|
|
|
buf_page_t *hash_page= buf_pool.page_hash_get_low(page_id, fold);
|
|
if (hash_page && !buf_pool.watch_is_sentinel(*hash_page))
|
|
{
|
|
/* The page is already in the buffer pool. */
|
|
if (block)
|
|
{
|
|
rw_lock_x_unlock_gen(&block->lock, BUF_IO_READ);
|
|
buf_LRU_block_free_non_file_page(block);
|
|
}
|
|
goto func_exit;
|
|
}
|
|
|
|
if (UNIV_LIKELY(block != nullptr))
|
|
{
|
|
bpage= &block->page;
|
|
|
|
/* Insert into the hash table of file pages */
|
|
page_hash_latch *hash_lock= buf_pool.page_hash.lock_get(fold);
|
|
hash_lock->write_lock();
|
|
|
|
if (hash_page)
|
|
{
|
|
/* Preserve the reference count. */
|
|
auto buf_fix_count= hash_page->buf_fix_count();
|
|
ut_a(buf_fix_count > 0);
|
|
block->page.add_buf_fix_count(buf_fix_count);
|
|
buf_pool.watch_remove(hash_page);
|
|
}
|
|
|
|
block->page.set_io_fix(BUF_IO_READ);
|
|
block->page.set_state(BUF_BLOCK_FILE_PAGE);
|
|
ut_ad(!block->page.in_page_hash);
|
|
ut_d(block->page.in_page_hash= true);
|
|
HASH_INSERT(buf_page_t, hash, &buf_pool.page_hash, fold, bpage);
|
|
hash_lock->write_unlock();
|
|
|
|
/* The block must be put to the LRU list, to the old blocks */
|
|
buf_LRU_add_block(bpage, true/* to old blocks */);
|
|
|
|
if (UNIV_UNLIKELY(zip_size))
|
|
{
|
|
/* buf_pool.mutex may be released and reacquired by
|
|
buf_buddy_alloc(). We must defer this operation until after the
|
|
block descriptor has been added to buf_pool.LRU and
|
|
buf_pool.page_hash. */
|
|
block->page.zip.data= static_cast<page_zip_t*>
|
|
(buf_buddy_alloc(zip_size));
|
|
|
|
/* To maintain the invariant
|
|
block->in_unzip_LRU_list == block->page.belongs_to_unzip_LRU()
|
|
we have to add this block to unzip_LRU
|
|
after block->page.zip.data is set. */
|
|
ut_ad(block->page.belongs_to_unzip_LRU());
|
|
buf_unzip_LRU_add_block(block, TRUE);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* The compressed page must be allocated before the
|
|
control block (bpage), in order to avoid the
|
|
invocation of buf_buddy_relocate_block() on
|
|
uninitialized data. */
|
|
bool lru= false;
|
|
void *data= buf_buddy_alloc(zip_size, &lru);
|
|
|
|
/* If buf_buddy_alloc() allocated storage from the LRU list,
|
|
it released and reacquired buf_pool.mutex. Thus, we must
|
|
check the page_hash again, as it may have been modified. */
|
|
if (UNIV_UNLIKELY(lru))
|
|
{
|
|
hash_page= buf_pool.page_hash_get_low(page_id, fold);
|
|
|
|
if (UNIV_UNLIKELY(hash_page && !buf_pool.watch_is_sentinel(*hash_page)))
|
|
{
|
|
/* The block was added by some other thread. */
|
|
buf_buddy_free(data, zip_size);
|
|
goto func_exit;
|
|
}
|
|
}
|
|
|
|
bpage= buf_page_alloc_descriptor();
|
|
|
|
page_zip_des_init(&bpage->zip);
|
|
page_zip_set_size(&bpage->zip, zip_size);
|
|
bpage->zip.data = (page_zip_t*) data;
|
|
|
|
bpage->init(BUF_BLOCK_ZIP_PAGE, page_id);
|
|
|
|
page_hash_latch *hash_lock= buf_pool.page_hash.lock_get(fold);
|
|
hash_lock->write_lock();
|
|
|
|
if (hash_page)
|
|
{
|
|
/* Preserve the reference count. It can be 0 if
|
|
buf_pool_t::watch_unset() is executing concurrently,
|
|
waiting for buf_pool.mutex, which we are holding. */
|
|
bpage->add_buf_fix_count(hash_page->buf_fix_count());
|
|
buf_pool.watch_remove(hash_page);
|
|
}
|
|
|
|
ut_ad(!bpage->in_page_hash);
|
|
ut_d(bpage->in_page_hash= true);
|
|
HASH_INSERT(buf_page_t, hash, &buf_pool.page_hash, fold, bpage);
|
|
bpage->set_io_fix(BUF_IO_READ);
|
|
hash_lock->write_unlock();
|
|
|
|
/* The block must be put to the LRU list, to the old blocks.
|
|
The zip size is already set into the page zip */
|
|
buf_LRU_add_block(bpage, true/* to old blocks */);
|
|
}
|
|
|
|
mysql_mutex_unlock(&buf_pool.mutex);
|
|
buf_pool.n_pend_reads++;
|
|
goto func_exit_no_mutex;
|
|
func_exit:
|
|
mysql_mutex_unlock(&buf_pool.mutex);
|
|
func_exit_no_mutex:
|
|
if (mode == BUF_READ_IBUF_PAGES_ONLY)
|
|
ibuf_mtr_commit(&mtr);
|
|
|
|
ut_ad(!bpage || bpage->in_file());
|
|
|
|
return bpage;
|
|
}
|
|
|
|
/** Low-level function which reads a page asynchronously from a file to the
|
|
buffer buf_pool if it is not already there, in which case does nothing.
|
|
Sets the io_fix flag and sets an exclusive lock on the buffer frame. The
|
|
flag is cleared and the x-lock released by an i/o-handler thread.
|
|
|
|
@param[out] err DB_SUCCESS or DB_TABLESPACE_DELETED
|
|
if we are trying
|
|
to read from a non-existent tablespace
|
|
@param[in,out] space tablespace
|
|
@param[in] sync true if synchronous aio is desired
|
|
@param[in] mode BUF_READ_IBUF_PAGES_ONLY, ...,
|
|
@param[in] page_id page id
|
|
@param[in] zip_size ROW_FORMAT=COMPRESSED page size, or 0
|
|
@param[in] unzip true=request uncompressed page
|
|
@return whether a read request was queued */
|
|
static
|
|
bool
|
|
buf_read_page_low(
|
|
dberr_t* err,
|
|
fil_space_t* space,
|
|
bool sync,
|
|
ulint mode,
|
|
const page_id_t page_id,
|
|
ulint zip_size,
|
|
bool unzip)
|
|
{
|
|
buf_page_t* bpage;
|
|
|
|
*err = DB_SUCCESS;
|
|
|
|
if (buf_dblwr.is_inside(page_id)) {
|
|
*err = DB_CORRUPTION;
|
|
nothing_read:
|
|
space->release();
|
|
return false;
|
|
}
|
|
|
|
if (sync) {
|
|
} else if (trx_sys_hdr_page(page_id)
|
|
|| ibuf_bitmap_page(page_id, zip_size)
|
|
|| (!recv_no_ibuf_operations
|
|
&& ibuf_page(page_id, zip_size, nullptr))) {
|
|
|
|
/* Trx sys header is so low in the latching order that we play
|
|
safe and do not leave the i/o-completion to an asynchronous
|
|
i/o-thread. Change buffer pages must always be read with
|
|
synchronous i/o, to make sure they do not get involved in
|
|
thread deadlocks. */
|
|
sync = true;
|
|
}
|
|
|
|
/* The following call will also check if the tablespace does not exist
|
|
or is being dropped; if we succeed in initing the page in the buffer
|
|
pool for read, then DISCARD cannot proceed until the read has
|
|
completed */
|
|
bpage = buf_page_init_for_read(mode, page_id, zip_size, unzip);
|
|
|
|
if (bpage == NULL) {
|
|
goto nothing_read;
|
|
}
|
|
|
|
ut_ad(bpage->in_file());
|
|
|
|
if (sync) {
|
|
thd_wait_begin(nullptr, THD_WAIT_DISKIO);
|
|
}
|
|
|
|
DBUG_LOG("ib_buf",
|
|
"read page " << page_id << " zip_size=" << zip_size
|
|
<< " unzip=" << unzip << ',' << (sync ? "sync" : "async"));
|
|
|
|
void* dst;
|
|
|
|
if (zip_size) {
|
|
dst = bpage->zip.data;
|
|
} else {
|
|
ut_a(bpage->state() == BUF_BLOCK_FILE_PAGE);
|
|
|
|
dst = ((buf_block_t*) bpage)->frame;
|
|
}
|
|
|
|
const ulint len = zip_size ? zip_size : srv_page_size;
|
|
|
|
auto fio = space->io(IORequest(sync
|
|
? IORequest::READ_SYNC
|
|
: IORequest::READ_ASYNC),
|
|
os_offset_t{page_id.page_no()} * len, len,
|
|
dst, bpage);
|
|
*err= fio.err;
|
|
|
|
if (UNIV_UNLIKELY(fio.err != DB_SUCCESS)) {
|
|
if (!sync || fio.err == DB_TABLESPACE_DELETED
|
|
|| fio.err == DB_IO_ERROR) {
|
|
buf_pool.corrupted_evict(bpage);
|
|
return false;
|
|
}
|
|
|
|
ut_error;
|
|
}
|
|
|
|
if (sync) {
|
|
thd_wait_end(NULL);
|
|
|
|
/* The i/o was already completed in space->io() */
|
|
*err = buf_page_read_complete(bpage, *fio.node);
|
|
space->release();
|
|
|
|
if (*err != DB_SUCCESS) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/** Applies a random read-ahead in buf_pool if there are at least a threshold
|
|
value of accessed pages from the random read-ahead area. Does not read any
|
|
page, not even the one at the position (space, offset), if the read-ahead
|
|
mechanism is not activated. NOTE 1: the calling thread may own latches on
|
|
pages: to avoid deadlocks this function must be written such that it cannot
|
|
end up waiting for these latches! NOTE 2: the calling thread must want
|
|
access to the page given: this rule is set to prevent unintended read-aheads
|
|
performed by ibuf routines, a situation which could result in a deadlock if
|
|
the OS does not support asynchronous i/o.
|
|
@param[in] page_id page id of a page which the current thread
|
|
wants to access
|
|
@param[in] zip_size ROW_FORMAT=COMPRESSED page size, or 0
|
|
@param[in] ibuf whether we are inside ibuf routine
|
|
@return number of page read requests issued; NOTE that if we read ibuf
|
|
pages, it may happen that the page at the given page number does not
|
|
get read even if we return a positive value! */
|
|
ulint
|
|
buf_read_ahead_random(const page_id_t page_id, ulint zip_size, bool ibuf)
|
|
{
|
|
if (!srv_random_read_ahead)
|
|
return 0;
|
|
|
|
if (srv_startup_is_before_trx_rollback_phase)
|
|
/* No read-ahead to avoid thread deadlocks */
|
|
return 0;
|
|
|
|
if (ibuf_bitmap_page(page_id, zip_size) || trx_sys_hdr_page(page_id))
|
|
/* If it is an ibuf bitmap page or trx sys hdr, we do no
|
|
read-ahead, as that could break the ibuf page access order */
|
|
return 0;
|
|
|
|
if (buf_pool.n_pend_reads > buf_pool.curr_size / BUF_READ_AHEAD_PEND_LIMIT)
|
|
return 0;
|
|
|
|
fil_space_t* space= fil_space_t::get(page_id.space());
|
|
if (!space)
|
|
return 0;
|
|
|
|
const uint32_t buf_read_ahead_area= buf_pool.read_ahead_area;
|
|
ulint count= 5 + buf_read_ahead_area / 8;
|
|
const page_id_t low= page_id - (page_id.page_no() % buf_read_ahead_area);
|
|
page_id_t high= low + buf_read_ahead_area;
|
|
high.set_page_no(std::min(high.page_no(), space->last_page_number()));
|
|
|
|
/* Count how many blocks in the area have been recently accessed,
|
|
that is, reside near the start of the LRU list. */
|
|
|
|
for (page_id_t i= low; i < high; ++i)
|
|
{
|
|
const ulint fold= i.fold();
|
|
page_hash_latch *hash_lock= buf_pool.page_hash.lock<false>(fold);
|
|
const buf_page_t *bpage= buf_pool.page_hash_get_low(i, fold);
|
|
bool found= bpage && bpage->is_accessed() && buf_page_peek_if_young(bpage);
|
|
hash_lock->read_unlock();
|
|
if (found && !--count)
|
|
goto read_ahead;
|
|
}
|
|
|
|
no_read_ahead:
|
|
space->release();
|
|
return 0;
|
|
|
|
read_ahead:
|
|
if (space->is_stopping())
|
|
goto no_read_ahead;
|
|
|
|
/* Read all the suitable blocks within the area */
|
|
const ulint ibuf_mode= ibuf ? BUF_READ_IBUF_PAGES_ONLY : BUF_READ_ANY_PAGE;
|
|
|
|
for (page_id_t i= low; i < high; ++i)
|
|
{
|
|
if (ibuf_bitmap_page(i, zip_size))
|
|
continue;
|
|
if (space->is_stopping())
|
|
break;
|
|
dberr_t err;
|
|
space->reacquire();
|
|
if (buf_read_page_low(&err, space, false, ibuf_mode, i, zip_size, false))
|
|
count++;
|
|
}
|
|
|
|
if (count)
|
|
DBUG_PRINT("ib_buf", ("random read-ahead %zu pages from %s: %u",
|
|
count, space->chain.start->name,
|
|
low.page_no()));
|
|
space->release();
|
|
|
|
/* Read ahead is considered one I/O operation for the purpose of
|
|
LRU policy decision. */
|
|
buf_LRU_stat_inc_io();
|
|
|
|
buf_pool.stat.n_ra_pages_read_rnd+= count;
|
|
srv_stats.buf_pool_reads.add(count);
|
|
return count;
|
|
}
|
|
|
|
/** High-level function which reads a page from a file to buf_pool
|
|
if it is not already there. Sets the io_fix and an exclusive lock
|
|
on the buffer frame. The flag is cleared and the x-lock
|
|
released by the i/o-handler thread.
|
|
@param[in] page_id page id
|
|
@param[in] zip_size ROW_FORMAT=COMPRESSED page size, or 0
|
|
@retval DB_SUCCESS if the page was read and is not corrupted,
|
|
@retval DB_PAGE_CORRUPTED if page based on checksum check is corrupted,
|
|
@retval DB_DECRYPTION_FAILED if page post encryption checksum matches but
|
|
after decryption normal page checksum does not match.
|
|
@retval DB_TABLESPACE_DELETED if tablespace .ibd file is missing */
|
|
dberr_t buf_read_page(const page_id_t page_id, ulint zip_size)
|
|
{
|
|
fil_space_t *space= fil_space_t::get(page_id.space());
|
|
if (!space)
|
|
{
|
|
ib::info() << "trying to read page " << page_id
|
|
<< " in nonexisting or being-dropped tablespace";
|
|
return DB_TABLESPACE_DELETED;
|
|
}
|
|
|
|
dberr_t err;
|
|
if (buf_read_page_low(&err, space, true, BUF_READ_ANY_PAGE,
|
|
page_id, zip_size, false))
|
|
srv_stats.buf_pool_reads.add(1);
|
|
|
|
buf_LRU_stat_inc_io();
|
|
return err;
|
|
}
|
|
|
|
/** High-level function which reads a page asynchronously from a file to the
|
|
buffer buf_pool if it is not already there. Sets the io_fix flag and sets
|
|
an exclusive lock on the buffer frame. The flag is cleared and the x-lock
|
|
released by the i/o-handler thread.
|
|
@param[in,out] space tablespace
|
|
@param[in] page_id page id
|
|
@param[in] zip_size ROW_FORMAT=COMPRESSED page size, or 0 */
|
|
void buf_read_page_background(fil_space_t *space, const page_id_t page_id,
|
|
ulint zip_size)
|
|
{
|
|
dberr_t err;
|
|
|
|
if (buf_read_page_low(&err, space, false, BUF_READ_ANY_PAGE,
|
|
page_id, zip_size, false)) {
|
|
srv_stats.buf_pool_reads.add(1);
|
|
}
|
|
|
|
switch (err) {
|
|
case DB_SUCCESS:
|
|
case DB_ERROR:
|
|
break;
|
|
case DB_TABLESPACE_DELETED:
|
|
ib::info() << "trying to read page " << page_id
|
|
<< " in the background"
|
|
" in a non-existing or being-dropped tablespace";
|
|
break;
|
|
case DB_PAGE_CORRUPTED:
|
|
case DB_DECRYPTION_FAILED:
|
|
ib::error()
|
|
<< "Background Page read failed to "
|
|
"read or decrypt " << page_id;
|
|
break;
|
|
default:
|
|
ib::fatal() << "Error " << err << " in background read of "
|
|
<< page_id;
|
|
}
|
|
|
|
/* We do not increment number of I/O operations used for LRU policy
|
|
here (buf_LRU_stat_inc_io()). We use this in heuristics to decide
|
|
about evicting uncompressed version of compressed pages from the
|
|
buffer pool. Since this function is called from buffer pool load
|
|
these IOs are deliberate and are not part of normal workload we can
|
|
ignore these in our heuristics. */
|
|
}
|
|
|
|
/** Applies linear read-ahead if in the buf_pool the page is a border page of
|
|
a linear read-ahead area and all the pages in the area have been accessed.
|
|
Does not read any page if the read-ahead mechanism is not activated. Note
|
|
that the algorithm looks at the 'natural' adjacent successor and
|
|
predecessor of the page, which on the leaf level of a B-tree are the next
|
|
and previous page in the chain of leaves. To know these, the page specified
|
|
in (space, offset) must already be present in the buf_pool. Thus, the
|
|
natural way to use this function is to call it when a page in the buf_pool
|
|
is accessed the first time, calling this function just after it has been
|
|
bufferfixed.
|
|
NOTE 1: as this function looks at the natural predecessor and successor
|
|
fields on the page, what happens, if these are not initialized to any
|
|
sensible value? No problem, before applying read-ahead we check that the
|
|
area to read is within the span of the space, if not, read-ahead is not
|
|
applied. An uninitialized value may result in a useless read operation, but
|
|
only very improbably.
|
|
NOTE 2: the calling thread may own latches on pages: to avoid deadlocks this
|
|
function must be written such that it cannot end up waiting for these
|
|
latches!
|
|
NOTE 3: the calling thread must want access to the page given: this rule is
|
|
set to prevent unintended read-aheads performed by ibuf routines, a situation
|
|
which could result in a deadlock if the OS does not support asynchronous io.
|
|
@param[in] page_id page id; see NOTE 3 above
|
|
@param[in] zip_size ROW_FORMAT=COMPRESSED page size, or 0
|
|
@param[in] ibuf whether if we are inside ibuf routine
|
|
@return number of page read requests issued */
|
|
ulint
|
|
buf_read_ahead_linear(const page_id_t page_id, ulint zip_size, bool ibuf)
|
|
{
|
|
/* check if readahead is disabled */
|
|
if (!srv_read_ahead_threshold)
|
|
return 0;
|
|
|
|
if (srv_startup_is_before_trx_rollback_phase)
|
|
/* No read-ahead to avoid thread deadlocks */
|
|
return 0;
|
|
|
|
if (buf_pool.n_pend_reads > buf_pool.curr_size / BUF_READ_AHEAD_PEND_LIMIT)
|
|
return 0;
|
|
|
|
const uint32_t buf_read_ahead_area= buf_pool.read_ahead_area;
|
|
const page_id_t low= page_id - (page_id.page_no() % buf_read_ahead_area);
|
|
const page_id_t high_1= low + (buf_read_ahead_area - 1);
|
|
|
|
/* We will check that almost all pages in the area have been accessed
|
|
in the desired order. */
|
|
const bool descending= page_id != low;
|
|
|
|
if (!descending && page_id != high_1)
|
|
/* This is not a border page of the area */
|
|
return 0;
|
|
|
|
if (ibuf_bitmap_page(page_id, zip_size) || trx_sys_hdr_page(page_id))
|
|
/* If it is an ibuf bitmap page or trx sys hdr, we do no
|
|
read-ahead, as that could break the ibuf page access order */
|
|
return 0;
|
|
|
|
fil_space_t *space= fil_space_t::get(page_id.space());
|
|
if (!space)
|
|
return 0;
|
|
|
|
if (high_1.page_no() > space->last_page_number())
|
|
{
|
|
/* The area is not whole. */
|
|
fail:
|
|
space->release();
|
|
return 0;
|
|
}
|
|
|
|
/* How many out of order accessed pages can we ignore
|
|
when working out the access pattern for linear readahead */
|
|
ulint count= std::min<ulint>(buf_pool_t::READ_AHEAD_PAGES -
|
|
srv_read_ahead_threshold,
|
|
uint32_t{buf_pool.read_ahead_area});
|
|
page_id_t new_low= low, new_high_1= high_1;
|
|
unsigned prev_accessed= 0;
|
|
for (page_id_t i= low; i <= high_1; ++i)
|
|
{
|
|
const ulint fold= i.fold();
|
|
page_hash_latch *hash_lock= buf_pool.page_hash.lock<false>(fold);
|
|
const buf_page_t* bpage= buf_pool.page_hash_get_low(i, fold);
|
|
if (i == page_id)
|
|
{
|
|
/* Read the natural predecessor and successor page addresses from
|
|
the page; NOTE that because the calling thread may have an x-latch
|
|
on the page, we do not acquire an s-latch on the page, this is to
|
|
prevent deadlocks. The hash_lock is only protecting the
|
|
buf_pool.page_hash for page i, not the bpage contents itself. */
|
|
if (!bpage)
|
|
{
|
|
hard_fail:
|
|
hash_lock->read_unlock();
|
|
goto fail;
|
|
}
|
|
const byte *f;
|
|
switch (UNIV_EXPECT(bpage->state(), BUF_BLOCK_FILE_PAGE)) {
|
|
case BUF_BLOCK_FILE_PAGE:
|
|
f= reinterpret_cast<const buf_block_t*>(bpage)->frame;
|
|
break;
|
|
case BUF_BLOCK_ZIP_PAGE:
|
|
f= bpage->zip.data;
|
|
break;
|
|
default:
|
|
goto hard_fail;
|
|
}
|
|
|
|
uint32_t prev= mach_read_from_4(my_assume_aligned<4>(f + FIL_PAGE_PREV));
|
|
uint32_t next= mach_read_from_4(my_assume_aligned<4>(f + FIL_PAGE_NEXT));
|
|
if (prev == FIL_NULL || next == FIL_NULL)
|
|
goto hard_fail;
|
|
page_id_t id= page_id;
|
|
if (descending)
|
|
{
|
|
if (id == high_1)
|
|
++id;
|
|
else if (next - 1 != page_id.page_no())
|
|
goto hard_fail;
|
|
else
|
|
id.set_page_no(prev);
|
|
}
|
|
else
|
|
{
|
|
if (prev + 1 != page_id.page_no())
|
|
goto hard_fail;
|
|
id.set_page_no(next);
|
|
}
|
|
|
|
new_low= id - (id.page_no() % buf_read_ahead_area);
|
|
new_high_1= new_low + (buf_read_ahead_area - 1);
|
|
|
|
if (id != new_low && id != new_high_1)
|
|
/* This is not a border page of the area: return */
|
|
goto hard_fail;
|
|
if (new_high_1.page_no() > space->last_page_number())
|
|
/* The area is not whole */
|
|
goto hard_fail;
|
|
}
|
|
else if (!bpage)
|
|
{
|
|
failed:
|
|
hash_lock->read_unlock();
|
|
if (--count)
|
|
continue;
|
|
goto fail;
|
|
}
|
|
|
|
const unsigned accessed= bpage->is_accessed();
|
|
if (!accessed)
|
|
goto failed;
|
|
/* Note that buf_page_t::is_accessed() returns the time of the
|
|
first access. If some blocks of the extent existed in the buffer
|
|
pool at the time of a linear access pattern, the first access
|
|
times may be nonmonotonic, even though the latest access times
|
|
were linear. The threshold (srv_read_ahead_factor) should help a
|
|
little against this. */
|
|
bool fail= prev_accessed &&
|
|
(descending ? prev_accessed > accessed : prev_accessed < accessed);
|
|
prev_accessed= accessed;
|
|
if (fail)
|
|
goto failed;
|
|
hash_lock->read_unlock();
|
|
}
|
|
|
|
/* If we got this far, read-ahead can be sensible: do it */
|
|
count= 0;
|
|
for (ulint ibuf_mode= ibuf ? BUF_READ_IBUF_PAGES_ONLY : BUF_READ_ANY_PAGE;
|
|
new_low <= new_high_1; ++new_low)
|
|
{
|
|
if (ibuf_bitmap_page(new_low, zip_size))
|
|
continue;
|
|
if (space->is_stopping())
|
|
break;
|
|
dberr_t err;
|
|
space->reacquire();
|
|
count+= buf_read_page_low(&err, space, false, ibuf_mode, new_low, zip_size,
|
|
false);
|
|
}
|
|
|
|
if (count)
|
|
DBUG_PRINT("ib_buf", ("random read-ahead %zu pages from %s: %u",
|
|
count, space->chain.start->name,
|
|
new_low.page_no()));
|
|
space->release();
|
|
|
|
/* Read ahead is considered one I/O operation for the purpose of
|
|
LRU policy decision. */
|
|
buf_LRU_stat_inc_io();
|
|
|
|
buf_pool.stat.n_ra_pages_read+= count;
|
|
return count;
|
|
}
|
|
|
|
/** @return whether a page has been freed */
|
|
inline bool fil_space_t::is_freed(uint32_t page)
|
|
{
|
|
std::lock_guard<std::mutex> freed_lock(freed_range_mutex);
|
|
return freed_ranges.contains(page);
|
|
}
|
|
|
|
/** Issues read requests for pages which recovery wants to read in.
|
|
@param[in] space_id tablespace id
|
|
@param[in] page_nos array of page numbers to read, with the
|
|
highest page number the last in the array
|
|
@param[in] n number of page numbers in the array */
|
|
void buf_read_recv_pages(ulint space_id, const uint32_t* page_nos, ulint n)
|
|
{
|
|
fil_space_t* space = fil_space_t::get(space_id);
|
|
|
|
if (!space) {
|
|
/* The tablespace is missing or unreadable: do nothing */
|
|
return;
|
|
}
|
|
|
|
const ulint zip_size = space->zip_size();
|
|
|
|
for (ulint i = 0; i < n; i++) {
|
|
|
|
/* Ignore if the page already present in freed ranges. */
|
|
if (space->is_freed(page_nos[i])) {
|
|
continue;
|
|
}
|
|
|
|
const page_id_t cur_page_id(space_id, page_nos[i]);
|
|
|
|
ulint limit = 0;
|
|
for (ulint j = 0; j < buf_pool.n_chunks; j++) {
|
|
limit += buf_pool.chunks[j].size / 2;
|
|
}
|
|
|
|
for (ulint count = 0; buf_pool.n_pend_reads >= limit; ) {
|
|
os_thread_sleep(10000);
|
|
|
|
if (!(++count % 1000)) {
|
|
|
|
ib::error()
|
|
<< "Waited for " << count / 100
|
|
<< " seconds for "
|
|
<< buf_pool.n_pend_reads
|
|
<< " pending reads";
|
|
}
|
|
}
|
|
|
|
dberr_t err;
|
|
space->reacquire();
|
|
buf_read_page_low(&err, space, false,
|
|
BUF_READ_ANY_PAGE, cur_page_id, zip_size,
|
|
true);
|
|
|
|
if (err == DB_DECRYPTION_FAILED || err == DB_PAGE_CORRUPTED) {
|
|
ib::error() << "Recovery failed to read or decrypt "
|
|
<< cur_page_id;
|
|
}
|
|
}
|
|
|
|
|
|
DBUG_PRINT("ib_buf", ("recovery read (%u pages) for %s", n,
|
|
space->chain.start->name));
|
|
space->release();
|
|
}
|