Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
MDEV-18353 Shutdown may miss to wait for connection thread
* count CONNECT objects too * wait for all CONNECT objects to disappear (to be converted to THDs) before killing THDs away
- Loading branch information
Showing
7 changed files
with
57 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| [1tpc] | ||
| --thread-handling=one-thread-per-connection | ||
|
|
||
| [pot] | ||
| --thread-handling=pool-of-threads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # | ||
| # MDEV-18353 Shutdown may miss to wait for connection thread | ||
| # | ||
| call mtr.add_suppression('Thread .* did not exit'); | ||
| set @old_dbug=@@global.debug_dbug; | ||
| set global debug_dbug='+d,CONNECT_wait'; | ||
| select variable_value into @cons from information_schema.global_status where variable_name='connections'; | ||
| # restart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| source include/not_windows.inc; | ||
| source include/not_embedded.inc; | ||
| source include/have_debug.inc; | ||
| --echo # | ||
| --echo # MDEV-18353 Shutdown may miss to wait for connection thread | ||
| --echo # | ||
| call mtr.add_suppression('Thread .* did not exit'); | ||
| set @old_dbug=@@global.debug_dbug; | ||
| set global debug_dbug='+d,CONNECT_wait'; | ||
| select variable_value into @cons from information_schema.global_status where variable_name='connections'; | ||
| exec $MYSQL -e 'select sleep(3600)' >/dev/null 2>&1 &; | ||
| let $wait_condition= select variable_value>@cons from information_schema.global_status where variable_name='connections'; | ||
| source include/wait_condition.inc; | ||
| source include/restart_mysqld.inc; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters