mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
c009ce7dd0
This is a backport of commit4489a89c71
in order to remove the test innodb.redo_log_during_checkpoint that would cause trouble in the DBUG subsystem invoked by safe_mutex_lock() via log_checkpoint(). Before commit7cffb5f6e8
these mutexes were of different type. The following options were introduced in commit2e814d4702
(mariadb-10.2.2) and have little use: innodb_disable_resize_buffer_pool_debug had no effect even in MariaDB 10.2.2 or MySQL 5.7.9. It was introduced in mysql/mysql-server@5c4094cf49 to work around a problem that was fixed in mysql/mysql-server@2957ae4f99 (but the parameter was not removed). innodb_page_cleaner_disabled_debug and innodb_master_thread_disabled_debug are only used by the test innodb.redo_log_during_checkpoint that will be removed as part of this commit. innodb_dict_stats_disabled_debug is only used by that test, and it is redundant because one could simply use innodb_stats_persistent=OFF or the STATS_PERSISTENT=0 attribute of the table in the test to achieve the same effect.
109 lines
3.9 KiB
C
109 lines
3.9 KiB
C
/*****************************************************************************
|
|
|
|
Copyright (c) 2012, 2017, Oracle and/or its affiliates. All Rights Reserved.
|
|
Copyright (c) 2017, 2022, 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 include/dict0stats_bg.h
|
|
Code used for background table and index stats gathering.
|
|
|
|
Created Apr 26, 2012 Vasil Dimov
|
|
*******************************************************/
|
|
|
|
#ifndef dict0stats_bg_h
|
|
#define dict0stats_bg_h
|
|
|
|
#include "dict0types.h"
|
|
#include "os0thread.h"
|
|
|
|
#ifdef HAVE_PSI_INTERFACE
|
|
extern mysql_pfs_key_t dict_stats_recalc_pool_mutex_key;
|
|
#endif /* HAVE_PSI_INTERFACE */
|
|
|
|
/*****************************************************************//**
|
|
Delete a given table from the auto recalc pool.
|
|
dict_stats_recalc_pool_del() */
|
|
void
|
|
dict_stats_recalc_pool_del(
|
|
/*=======================*/
|
|
const dict_table_t* table); /*!< in: table to remove */
|
|
|
|
/** Yield the data dictionary latch when waiting
|
|
for the background thread to stop accessing a table.
|
|
@param trx transaction holding the data dictionary locks */
|
|
#define DICT_BG_YIELD(trx) do { \
|
|
row_mysql_unlock_data_dictionary(trx); \
|
|
os_thread_sleep(250000); \
|
|
row_mysql_lock_data_dictionary(trx); \
|
|
} while (0)
|
|
|
|
/*****************************************************************//**
|
|
Request the background collection of statistics to stop for a table.
|
|
@retval true when no background process is active
|
|
@retval false when it is not safe to modify the table definition */
|
|
UNIV_INLINE
|
|
bool
|
|
dict_stats_stop_bg(
|
|
/*===============*/
|
|
dict_table_t* table) /*!< in/out: table */
|
|
{
|
|
ut_ad(!srv_read_only_mode);
|
|
ut_ad(mutex_own(&dict_sys.mutex));
|
|
|
|
if (!(table->stats_bg_flag & BG_STAT_IN_PROGRESS)) {
|
|
return(true);
|
|
}
|
|
|
|
table->stats_bg_flag |= BG_STAT_SHOULD_QUIT;
|
|
return(false);
|
|
}
|
|
|
|
/*****************************************************************//**
|
|
Wait until background stats thread has stopped using the specified table.
|
|
The caller must have locked the data dictionary using
|
|
row_mysql_lock_data_dictionary() and this function may unlock it temporarily
|
|
and restore the lock before it exits.
|
|
The background stats thread is guaranteed not to start using the specified
|
|
table after this function returns and before the caller unlocks the data
|
|
dictionary because it sets the BG_STAT_IN_PROGRESS bit in table->stats_bg_flag
|
|
under dict_sys.mutex. */
|
|
void
|
|
dict_stats_wait_bg_to_stop_using_table(
|
|
/*===================================*/
|
|
dict_table_t* table, /*!< in/out: table */
|
|
trx_t* trx); /*!< in/out: transaction to use for
|
|
unlocking/locking the data dict */
|
|
/*****************************************************************//**
|
|
Initialize global variables needed for the operation of dict_stats_thread().
|
|
Must be called before dict_stats task is started. */
|
|
void dict_stats_init();
|
|
|
|
/*****************************************************************//**
|
|
Free resources allocated by dict_stats_thread_init(), must be called
|
|
after dict_stats task has exited. */
|
|
void dict_stats_deinit();
|
|
|
|
/** Start the dict stats timer. */
|
|
void dict_stats_start();
|
|
|
|
/** Shut down the dict_stats timer. */
|
|
void dict_stats_shutdown();
|
|
|
|
/** Reschedule dict stats timer to run now. */
|
|
void dict_stats_schedule_now();
|
|
|
|
#endif /* dict0stats_bg_h */
|