[MDEV-13792] innodb.purge_thread_shutdown failed in buildbot with wrong result (sporadic) Created: 2017-09-13 Updated: 2023-12-11 Resolved: 2023-12-11 |
|
| Status: | Closed |
| Project: | MariaDB Server |
| Component/s: | Tests |
| Affects Version/s: | 10.2, 10.3 |
| Fix Version/s: | 10.4.33, 10.5.24, 10.6.17, 10.11.7, 11.0.5, 11.1.4, 11.2.3 |
| Type: | Bug | Priority: | Minor |
| Reporter: | Alice Sherepa | Assignee: | Kristian Nielsen |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
http://buildbot.askmonty.org/buildbot/builders/kvm-fulltest2/builds/9567/steps/test_2/logs/stdio
|
| Comments |
| Comment by Kristian Nielsen [ 2023-12-11 ] |
|
From Zulip discussions: The test wants to show the list of running processes, to show which system threads and connection threads are running. The problem is that using the state to identify the thread doesn't work, as it changes as the thread is doing stuff (enter_state()). I would suggest to change the query to SELECT user FROM information_schema.processlist order by 1, this way the user-vs-system threads can be seen which I think is good enough. Or alternatively, include/wait_condition.inc with some condition that counts each kind of thread and compares with expected count. That would be equivalent, but not sure if that complexity is needed |
| Comment by Kristian Nielsen [ 2023-12-11 ] |
|
Pushed to 10.4. |