mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-6150 Speed up connection speed by moving creation of THD to new thread
Creating a CONNECT object on client connect and pass this to the working thread which creates the THD. Split LOCK_thread_count to different mutexes Added LOCK_thread_start to syncronize threads Moved most usage of LOCK_thread_count to dedicated functions Use next_thread_id() instead of thread_id++ Other things: - Thread id now starts from 1 instead of 2 - Added cast for thread_id as thread id is now of type my_thread_id - Made THD->host const (To ensure it's not changed) - Removed some DBUG_PRINT() about entering/exiting mutex as these was already logged by mutex code - Fixed that aborted_connects and connection_errors_internal are counted in all cases - Don't take locks for current_linfo when we set it (not needed as it was 0 before)
This commit is contained in:
@ -135,9 +135,7 @@ post_init_event_thread(THD *thd)
|
||||
}
|
||||
|
||||
thread_safe_increment32(&thread_count);
|
||||
mysql_mutex_lock(&LOCK_thread_count);
|
||||
threads.append(thd);
|
||||
mysql_mutex_unlock(&LOCK_thread_count);
|
||||
add_to_active_threads(thd);
|
||||
inc_thread_running();
|
||||
return FALSE;
|
||||
}
|
||||
@ -191,9 +189,7 @@ pre_init_event_thread(THD* thd)
|
||||
thd->net.read_timeout= slave_net_timeout;
|
||||
thd->variables.option_bits|= OPTION_AUTO_IS_NULL;
|
||||
thd->client_capabilities|= CLIENT_MULTI_RESULTS;
|
||||
mysql_mutex_lock(&LOCK_thread_count);
|
||||
thd->thread_id= thd->variables.pseudo_thread_id= thread_id++;
|
||||
mysql_mutex_unlock(&LOCK_thread_count);
|
||||
thd->thread_id= thd->variables.pseudo_thread_id= next_thread_id();
|
||||
|
||||
/*
|
||||
Guarantees that we will see the thread in SHOW PROCESSLIST though its
|
||||
@ -479,7 +475,7 @@ Event_scheduler::run(THD *thd)
|
||||
DBUG_ENTER("Event_scheduler::run");
|
||||
|
||||
sql_print_information("Event Scheduler: scheduler thread started with id %lu",
|
||||
thd->thread_id);
|
||||
(ulong) thd->thread_id);
|
||||
/*
|
||||
Recalculate the values in the queue because there could have been stops
|
||||
in executions of the scheduler and some times could have passed by.
|
||||
@ -669,13 +665,13 @@ Event_scheduler::stop()
|
||||
|
||||
state= STOPPING;
|
||||
DBUG_PRINT("info", ("Scheduler thread has id %lu",
|
||||
scheduler_thd->thread_id));
|
||||
(ulong) scheduler_thd->thread_id));
|
||||
/* Lock from delete */
|
||||
mysql_mutex_lock(&scheduler_thd->LOCK_thd_data);
|
||||
/* This will wake up the thread if it waits on Queue's conditional */
|
||||
sql_print_information("Event Scheduler: Killing the scheduler thread, "
|
||||
"thread id %lu",
|
||||
scheduler_thd->thread_id);
|
||||
(ulong) scheduler_thd->thread_id);
|
||||
scheduler_thd->awake(KILL_CONNECTION);
|
||||
mysql_mutex_unlock(&scheduler_thd->LOCK_thd_data);
|
||||
|
||||
@ -832,7 +828,8 @@ Event_scheduler::dump_internal_status()
|
||||
puts("");
|
||||
puts("Event scheduler status:");
|
||||
printf("State : %s\n", scheduler_states_names[state].str);
|
||||
printf("Thread id : %lu\n", scheduler_thd? scheduler_thd->thread_id : 0);
|
||||
printf("Thread id : %lu\n", scheduler_thd ?
|
||||
(ulong) scheduler_thd->thread_id : (ulong) 0);
|
||||
printf("LLA : %s:%u\n", mutex_last_locked_in_func,
|
||||
mutex_last_locked_at_line);
|
||||
printf("LUA : %s:%u\n", mutex_last_unlocked_in_func,
|
||||
|
Reference in New Issue
Block a user