mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Patch that refactors global read lock implementation and fixes
bug #57006 "Deadlock between HANDLER and FLUSH TABLES WITH READ LOCK" and bug #54673 "It takes too long to get readlock for 'FLUSH TABLES WITH READ LOCK'". The first bug manifested itself as a deadlock which occurred when a connection, which had some table open through HANDLER statement, tried to update some data through DML statement while another connection tried to execute FLUSH TABLES WITH READ LOCK concurrently. What happened was that FTWRL in the second connection managed to perform first step of GRL acquisition and thus blocked all upcoming DML. After that it started to wait for table open through HANDLER statement to be flushed. When the first connection tried to execute DML it has started to wait for GRL/the second connection creating deadlock. The second bug manifested itself as starvation of FLUSH TABLES WITH READ LOCK statements in cases when there was a constant stream of concurrent DML statements (in two or more connections). This has happened because requests for protection against GRL which were acquired by DML statements were ignoring presence of pending GRL and thus the latter was starved. This patch solves both these problems by re-implementing GRL using metadata locks. Similar to the old implementation acquisition of GRL in new implementation is two-step. During the first step we block all concurrent DML and DDL statements by acquiring global S metadata lock (each DML and DDL statement acquires global IX lock for its duration). During the second step we block commits by acquiring global S lock in COMMIT namespace (commit code acquires global IX lock in this namespace). Note that unlike in old implementation acquisition of protection against GRL in DML and DDL is semi-automatic. We assume that any statement which should be blocked by GRL will either open and acquires write-lock on tables or acquires metadata locks on objects it is going to modify. For any such statement global IX metadata lock is automatically acquired for its duration. The first problem is solved because waits for GRL become visible to deadlock detector in metadata locking subsystem and thus deadlocks like one in the first bug become impossible. The second problem is solved because global S locks which are used for GRL implementation are given preference over IX locks which are acquired by concurrent DML (and we can switch to fair scheduling in future if needed). Important change: FTWRL/GRL no longer blocks DML and DDL on temporary tables. Before this patch behavior was not consistent in this respect: in some cases DML/DDL statements on temporary tables were blocked while in others they were not. Since the main use cases for FTWRL are various forms of backups and temporary tables are not preserved during backups we have opted for consistently allowing DML/DDL on temporary tables during FTWRL/GRL. Important change: This patch changes thread state names which are used when DML/DDL of FTWRL is waiting for global read lock. It is now either "Waiting for global read lock" or "Waiting for commit lock" depending on the stage on which FTWRL is. Incompatible change: To solve deadlock in events code which was exposed by this patch we have to replace LOCK_event_metadata mutex with metadata locks on events. As result we have to prohibit DDL on events under LOCK TABLES. This patch also adds extensive test coverage for interaction of DML/DDL and FTWRL. Performance of new and old global read lock implementations in sysbench tests were compared. There were no significant difference between new and old implementations.
This commit is contained in:
130
sql/sql_base.cc
130
sql/sql_base.cc
@ -21,7 +21,7 @@
|
||||
#include "sql_priv.h"
|
||||
#include "unireg.h"
|
||||
#include "debug_sync.h"
|
||||
#include "lock.h" // broadcast_refresh, mysql_lock_remove,
|
||||
#include "lock.h" // mysql_lock_remove,
|
||||
// mysql_unlock_tables,
|
||||
// mysql_lock_have_duplicate
|
||||
#include "sql_show.h" // append_identifier
|
||||
@ -1285,20 +1285,12 @@ static void mark_used_tables_as_free_for_reuse(THD *thd, TABLE *table)
|
||||
|
||||
static void close_open_tables(THD *thd)
|
||||
{
|
||||
bool found_old_table= 0;
|
||||
|
||||
mysql_mutex_assert_not_owner(&LOCK_open);
|
||||
|
||||
DBUG_PRINT("info", ("thd->open_tables: 0x%lx", (long) thd->open_tables));
|
||||
|
||||
while (thd->open_tables)
|
||||
found_old_table|= close_thread_table(thd, &thd->open_tables);
|
||||
|
||||
if (found_old_table)
|
||||
{
|
||||
/* Tell threads waiting for refresh that something has happened */
|
||||
broadcast_refresh();
|
||||
}
|
||||
(void) close_thread_table(thd, &thd->open_tables);
|
||||
}
|
||||
|
||||
|
||||
@ -1364,11 +1356,6 @@ close_all_tables_for_name(THD *thd, TABLE_SHARE *share,
|
||||
/* Remove the table share from the cache. */
|
||||
tdc_remove_table(thd, TDC_RT_REMOVE_ALL, db, table_name,
|
||||
FALSE);
|
||||
/*
|
||||
There could be a FLUSH thread waiting
|
||||
on the table to go away. Wake it up.
|
||||
*/
|
||||
broadcast_refresh();
|
||||
}
|
||||
|
||||
|
||||
@ -2463,7 +2450,8 @@ open_table_get_mdl_lock(THD *thd, Open_table_context *ot_ctx,
|
||||
|
||||
mdl_request_shared.init(&mdl_request->key,
|
||||
(flags & MYSQL_OPEN_FORCE_SHARED_MDL) ?
|
||||
MDL_SHARED : MDL_SHARED_HIGH_PRIO);
|
||||
MDL_SHARED : MDL_SHARED_HIGH_PRIO,
|
||||
MDL_TRANSACTION);
|
||||
mdl_request= &mdl_request_shared;
|
||||
}
|
||||
|
||||
@ -2627,32 +2615,6 @@ bool open_table(THD *thd, TABLE_LIST *table_list, MEM_ROOT *mem_root,
|
||||
key_length= (create_table_def_key(thd, key, table_list, 1) -
|
||||
TMP_TABLE_KEY_EXTRA);
|
||||
|
||||
/*
|
||||
We need this to work for all tables, including temporary
|
||||
tables, for backwards compatibility. But not under LOCK
|
||||
TABLES, since under LOCK TABLES one can't use a non-prelocked
|
||||
table. This code only works for updates done inside DO/SELECT
|
||||
f1() statements, normal DML is handled by means of
|
||||
sql_command_flags.
|
||||
*/
|
||||
if (global_read_lock && table_list->lock_type >= TL_WRITE_ALLOW_WRITE &&
|
||||
! (flags & MYSQL_OPEN_IGNORE_GLOBAL_READ_LOCK) &&
|
||||
! thd->locked_tables_mode)
|
||||
{
|
||||
/*
|
||||
Someone has issued FLUSH TABLES WITH READ LOCK and we want
|
||||
a write lock. Wait until the lock is gone.
|
||||
*/
|
||||
if (thd->global_read_lock.wait_if_global_read_lock(thd, 1, 1))
|
||||
DBUG_RETURN(TRUE);
|
||||
|
||||
if (thd->open_tables && thd->open_tables->s->version != refresh_version)
|
||||
{
|
||||
(void)ot_ctx->request_backoff_action(Open_table_context::OT_REOPEN_TABLES,
|
||||
NULL);
|
||||
DBUG_RETURN(TRUE);
|
||||
}
|
||||
}
|
||||
/*
|
||||
Unless requested otherwise, try to resolve this table in the list
|
||||
of temporary tables of this thread. In MySQL temporary tables
|
||||
@ -2824,6 +2786,59 @@ bool open_table(THD *thd, TABLE_LIST *table_list, MEM_ROOT *mem_root,
|
||||
|
||||
if (! (flags & MYSQL_OPEN_HAS_MDL_LOCK))
|
||||
{
|
||||
/*
|
||||
We are not under LOCK TABLES and going to acquire write-lock/
|
||||
modify the base table. We need to acquire protection against
|
||||
global read lock until end of this statement in order to have
|
||||
this statement blocked by active FLUSH TABLES WITH READ LOCK.
|
||||
|
||||
We don't block acquire this protection under LOCK TABLES as
|
||||
such protection already acquired at LOCK TABLES time and
|
||||
not released until UNLOCK TABLES.
|
||||
|
||||
We don't block statements which modify only temporary tables
|
||||
as these tables are not preserved by backup by any form of
|
||||
backup which uses FLUSH TABLES WITH READ LOCK.
|
||||
|
||||
TODO: The fact that we sometimes acquire protection against
|
||||
GRL only when we encounter table to be write-locked
|
||||
slightly increases probability of deadlock.
|
||||
This problem will be solved once Alik pushes his
|
||||
temporary table refactoring patch and we can start
|
||||
pre-acquiring metadata locks at the beggining of
|
||||
open_tables() call.
|
||||
*/
|
||||
if (table_list->mdl_request.type >= MDL_SHARED_WRITE &&
|
||||
! (flags & (MYSQL_OPEN_IGNORE_GLOBAL_READ_LOCK |
|
||||
MYSQL_OPEN_FORCE_SHARED_MDL |
|
||||
MYSQL_OPEN_FORCE_SHARED_HIGH_PRIO_MDL |
|
||||
MYSQL_OPEN_SKIP_SCOPED_MDL_LOCK)) &&
|
||||
! ot_ctx->has_protection_against_grl())
|
||||
{
|
||||
MDL_request protection_request;
|
||||
MDL_deadlock_handler mdl_deadlock_handler(ot_ctx);
|
||||
|
||||
if (thd->global_read_lock.can_acquire_protection())
|
||||
DBUG_RETURN(TRUE);
|
||||
|
||||
protection_request.init(MDL_key::GLOBAL, "", "", MDL_INTENTION_EXCLUSIVE,
|
||||
MDL_STATEMENT);
|
||||
|
||||
/*
|
||||
Install error handler which if possible will convert deadlock error
|
||||
into request to back-off and restart process of opening tables.
|
||||
*/
|
||||
thd->push_internal_handler(&mdl_deadlock_handler);
|
||||
bool result= thd->mdl_context.acquire_lock(&protection_request,
|
||||
ot_ctx->get_timeout());
|
||||
thd->pop_internal_handler();
|
||||
|
||||
if (result)
|
||||
DBUG_RETURN(TRUE);
|
||||
|
||||
ot_ctx->set_has_protection_against_grl();
|
||||
}
|
||||
|
||||
if (open_table_get_mdl_lock(thd, ot_ctx, &table_list->mdl_request,
|
||||
flags, &mdl_ticket) ||
|
||||
mdl_ticket == NULL)
|
||||
@ -3379,7 +3394,6 @@ unlink_all_closed_tables(THD *thd, MYSQL_LOCK *lock, size_t reopen_count)
|
||||
|
||||
close_thread_table(thd, &thd->open_tables);
|
||||
}
|
||||
broadcast_refresh();
|
||||
}
|
||||
/* Exclude all closed tables from the LOCK TABLES list. */
|
||||
for (TABLE_LIST *table_list= m_locked_tables; table_list; table_list=
|
||||
@ -3856,7 +3870,8 @@ Open_table_context::Open_table_context(THD *thd, uint flags)
|
||||
LONG_TIMEOUT : thd->variables.lock_wait_timeout),
|
||||
m_flags(flags),
|
||||
m_action(OT_NO_ACTION),
|
||||
m_has_locks(thd->mdl_context.has_locks())
|
||||
m_has_locks(thd->mdl_context.has_locks()),
|
||||
m_has_protection_against_grl(FALSE)
|
||||
{}
|
||||
|
||||
|
||||
@ -4013,6 +4028,12 @@ recover_from_failed_open(THD *thd)
|
||||
for safety.
|
||||
*/
|
||||
m_failed_table= NULL;
|
||||
/*
|
||||
Reset flag indicating that we have already acquired protection
|
||||
against GRL. It is no longer valid as the corresponding lock was
|
||||
released by close_tables_for_reopen().
|
||||
*/
|
||||
m_has_protection_against_grl= FALSE;
|
||||
/* Prepare for possible another back-off. */
|
||||
m_action= OT_NO_ACTION;
|
||||
return result;
|
||||
@ -4551,11 +4572,20 @@ lock_table_names(THD *thd,
|
||||
if (schema_request == NULL)
|
||||
return TRUE;
|
||||
schema_request->init(MDL_key::SCHEMA, table->db, "",
|
||||
MDL_INTENTION_EXCLUSIVE);
|
||||
MDL_INTENTION_EXCLUSIVE,
|
||||
MDL_TRANSACTION);
|
||||
mdl_requests.push_front(schema_request);
|
||||
}
|
||||
/* Take the global intention exclusive lock. */
|
||||
global_request.init(MDL_key::GLOBAL, "", "", MDL_INTENTION_EXCLUSIVE);
|
||||
|
||||
/*
|
||||
Protect this statement against concurrent global read lock
|
||||
by acquiring global intention exclusive lock with statement
|
||||
duration.
|
||||
*/
|
||||
if (thd->global_read_lock.can_acquire_protection())
|
||||
return TRUE;
|
||||
global_request.init(MDL_key::GLOBAL, "", "", MDL_INTENTION_EXCLUSIVE,
|
||||
MDL_STATEMENT);
|
||||
mdl_requests.push_front(&global_request);
|
||||
}
|
||||
|
||||
@ -5362,7 +5392,7 @@ bool open_and_lock_tables(THD *thd, TABLE_LIST *tables,
|
||||
Prelocking_strategy *prelocking_strategy)
|
||||
{
|
||||
uint counter;
|
||||
MDL_ticket *mdl_savepoint= thd->mdl_context.mdl_savepoint();
|
||||
MDL_savepoint mdl_savepoint= thd->mdl_context.mdl_savepoint();
|
||||
DBUG_ENTER("open_and_lock_tables");
|
||||
DBUG_PRINT("enter", ("derived handling: %d", derived));
|
||||
|
||||
@ -5419,7 +5449,7 @@ bool open_normal_and_derived_tables(THD *thd, TABLE_LIST *tables, uint flags)
|
||||
{
|
||||
DML_prelocking_strategy prelocking_strategy;
|
||||
uint counter;
|
||||
MDL_ticket *mdl_savepoint= thd->mdl_context.mdl_savepoint();
|
||||
MDL_savepoint mdl_savepoint= thd->mdl_context.mdl_savepoint();
|
||||
DBUG_ENTER("open_normal_and_derived_tables");
|
||||
DBUG_ASSERT(!thd->fill_derived_tables());
|
||||
if (open_tables(thd, &tables, &counter, flags, &prelocking_strategy) ||
|
||||
@ -5676,7 +5706,7 @@ bool lock_tables(THD *thd, TABLE_LIST *tables, uint count,
|
||||
*/
|
||||
|
||||
void close_tables_for_reopen(THD *thd, TABLE_LIST **tables,
|
||||
MDL_ticket *start_of_statement_svp)
|
||||
const MDL_savepoint &start_of_statement_svp)
|
||||
{
|
||||
TABLE_LIST *first_not_own_table= thd->lex->first_not_own_table();
|
||||
TABLE_LIST *tmp;
|
||||
|
Reference in New Issue
Block a user