Merge pull request #754 from percona/port_improved_pt-pmp

Port improved pt-pmp
This commit is contained in:
Sveta Smirnova
2024-01-29 13:12:37 +03:00
committed by GitHub
21 changed files with 2963 additions and 70 deletions

257
bin/pt-eustack-resolver Executable file
View File

@@ -0,0 +1,257 @@
#!/usr/bin/env perl
# This program is part of Percona Toolkit: http://www.percona.com/software/
# See "COPYRIGHT, LICENSE, AND WARRANTY" at the end of this file for legal
# notices and disclaimers.
use strict;
use Data::Dumper;
my $mmap;
sub load_mapping {
my ($pid)= @_;
my $FH;
if ($pid =~ /^[0-9]+$/) {
open $FH, '<', "/proc/$pid/maps"
or die "Failed to open /proc/$pid/maps: $!\n";
} else {
open $FH, '<', $pid
or die "Failed to open saved map file '$pid': $!\n";
}
my $arr= [];
while (<$FH>) {
next unless m/^([a-f0-9]+)-([a-f0-9]+) ..x. ([a-f0-9]+) [a-f0-9:]+ [0-9]+ +(.*)/;
push @$arr, { S => hex($1), E => hex($2), B => hex($3), F => $4 };
}
close $FH;
sort { $a->{S} <=> $b->{S} } @$arr;
$mmap= $arr;
}
my $syms= { };
sub get_image {
my ($addr)= @_;
# Ensure addr is defined
die "Address is undefined" unless defined $addr;
# Check if the global memory map is defined and is an array reference
die "Global memory map is undefined or not an array reference"
unless defined $mmap and ref($mmap) eq 'ARRAY';
for my $e (@$mmap) {
next if $e->{E} <= $addr;
last if $e->{S} > $addr;
# Found, look up.
return $e->{F};
}
return "";
}
die "Usage: $0 <pid>" unless @ARGV == 1;
my $pid= $ARGV[0];
load_mapping($pid);
open (my $STACK_TRACE, "eu-stack -q -p $pid 2>/dev/null|") or die "open(): $!";
my @lines= <$STACK_TRACE>;
close($STACK_TRACE);
my $frame_no= 0;
my %addr=();
my %sf=();
my $lwp;
for my $line (@lines) {
if ($line =~ /^TID ([0-9]+):/)
{
$frame_no= 0;
$lwp=$1;
}
elsif ($line =~ /^#[0-9]+?\s*0x([a-f0-9]+)/)
{
push @{$sf{$lwp}},$1;
$addr{$1}=[get_image(hex($1)),""];
} else {
#print $line;
}
}
my %inverse;
push @{ $inverse{ $addr{$_}->[0] } }, $_ for keys %addr;
foreach my $bin (keys %inverse)
{
my $addrs=join(" ",@{$inverse{$bin}});
my @resolved=();
@resolved=(`eu-addr2line --pretty-print -s -C -f -p $pid $addrs`);
my $idx=0;
foreach $a (@{$inverse{$bin}})
{
$addr{$a}->[1]=$resolved[$idx];
$addr{$a}->[1]=~ s/\n//;
$addr{$a}->[1]=~ s/at \?\?:0/from $addr{$a}->[0]/;
$idx++;
}
}
foreach $lwp (sort {$a<=>$b} keys %sf)
{
my $idx=0;
print "Thread $lwp (LWP $lwp):\n";
foreach $frame_no (@{$sf{$lwp}})
{
print join(" ","#".$idx, "0x".$frame_no,"in", $addr{$frame_no}->[1]),"\n";
$idx++;
}
print "\n";
}
# ############################################################################
# Documentation
# ############################################################################
=pod
=head1 NAME
pt-eustack-resolver - Get stack traces for a selected program with C<eu-stack>
and resolve symbols.
=head1 SYNOPSIS
Usage: pt-eustack-resolver <pid>
pt-eustack-resolver collects stack traces for the process with specified C<pid>.
=head1 RISKS
Percona Toolkit is mature, proven in the real world, and well tested,
but all database tools can pose a risk to the system and the database
server. Before using this tool, please:
=over
=item * Read the tool's documentation
=item * Review the tool's known L<"BUGS">
=item * Test the tool on a non-production server
=item * Backup your production server and verify the backups
=back
=head1 DESCRIPTION
pt-eustack-resolver is the tool that gets stack traces for a selected program
with C<eu-stack> and resolves symbols. This is companion tool for L<pt-pmp|pt-pmp.html>, called
when option C<--dumper=pteu> is specified.
C<eu-stack> is a tool from L<elfutils|https://sourceware.org/elfutils> package that
prints a stack for each thread in a process or core file. C<eu-stack> is faster
than gdb and have smaller overhead on the diagnosed process.
=head1 OUTPUT
Stack for each thread, formatted similarly to C<gdb thread apply all bt> output.
=head1 ATTENTION
Using <PTDEBUG> might expose passwords. When debug is enabled, all command line
parameters are shown in the output.
=head1 SYSTEM REQUIREMENTS
You need C<eu-stack> from the L<elfutils|https://sourceware.org/elfutils> package.
=head1 BUGS
For a list of known bugs, see L<https://jira.percona.com/projects/PT/issues>.
Please report bugs at L<https://jira.percona.com/projects/PT>.
Include the following information in your bug report:
=over
=item * Complete command-line used to run the tool
=item * Tool L<"--version">
=item * MySQL version of all servers involved
=item * Output from the tool including STDERR
=item * Input files (log/dump/config files, etc.)
=back
If possible, include debugging output by running the tool with C<PTDEBUG>;
see L<"ENVIRONMENT">.
=head1 DOWNLOADING
Visit L<http://www.percona.com/software/percona-toolkit/> to download the
latest release of Percona Toolkit. Or, get the latest release from the
command line:
wget percona.com/get/percona-toolkit.tar.gz
wget percona.com/get/percona-toolkit.rpm
wget percona.com/get/percona-toolkit.deb
You can also get individual tools from the latest release:
wget percona.com/get/TOOL
Replace C<TOOL> with the name of any tool.
=head1 AUTHORS
Alexey Stroganov
=head1 ACKNOWLEDGMENTS
Part of code for symbol resolving derived from resolve-stack-traces.pl script
(https://github.com/knielsen/knielsen-pmp)
=head1 ABOUT PERCONA TOOLKIT
This tool is part of Percona Toolkit, a collection of advanced command-line
tools for MySQL developed by Percona. Percona Toolkit was forked from two
projects in June, 2011: Maatkit and Aspersa. Those projects were created by
Baron Schwartz and primarily developed by him and Daniel Nichter. Visit
L<http://www.percona.com/software/> to learn about other free, open-source
software from Percona.
=head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2017-2024 Percona LLC and/or its affiliates.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
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; OR the Perl Artistic License. On UNIX and similar
systems, you can issue `man perlgpl' or `man perlartistic' to read these
licenses.
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., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION
pt-eustack-resolver 3.5.7
=cut

View File

@@ -567,91 +567,124 @@ set +u
# to pass the maxlen argument into this function to make maxlen testable.
aggregate_stacktrace() {
local maxlen=$1;
local tids=$2;
if [ "$tids" == "*" ]; then tids="" ; fi
shift
awk "
shift
awk -v tids=$tids -v dumper=$OPT_DUMPER "
BEGIN {
s = \"\";
n_tid=split(tids,tids_array,\",\");
}
/^Thread/ {
if ( s != \"\" ) {
/^Thread|^TID/ {
if ( s != \"\" && tid_found ~ 1 ) {
print s;
}
s = \"\";
c = 0;
tid_found=1;
if (n_tid>0)
{
tid_found=0;
tid=\$NF;
gsub(/)*:/,\"\",tid);
for (i=1;i<=n_tid;i++) { if ( tid ~ tids_array[i]){tid_found=1;} }
}
}
/^\#/ {
if ( \$2 ~ /0x/ ) {
if ( \$4 ~/void|const/ ) {
targ = \$5;
/^#/ {
if ( ${maxlen:-0} == 0 || c < ${maxlen:-0} ) {
if ( \$2 ~ /0x/ ) {
if (dumper ~ /^eu/) {
targ = \$3;
tfile= \$NF;
}
else {
if ( \$4 ~/void|const/ ) {
targ = \$5;
}
else {
targ = \$4;
tfile= \$NF;
}
}
if ( targ ~ /[<\\(]/ ) {
if (dumper ~ /eu/) {
while ( targ ~ /\\(/ ) {
if ( 0 == gsub(/\\(.*\$/, \"\", targ) ) {
break;
}
}
}
if ( dumper ~ /gdb/ ) {
targ = substr(\$0, index(\$0, \" in \") + 4);
if ( targ ~ / from / ) {
targ = substr(targ, 1, index(targ, \" from \") - 1);
}
if ( targ ~ / at / ) {
targ = substr(targ, 1, index(targ, \" at \") - 1);
}
}
# Shorten C++ templates, e.g. in t/samples/stacktrace-004.txt
while ( targ ~ />::/ ) {
if ( 0 == gsub(/<[^<>]*>/, \"\", targ) ) {
break;
}
}
# Further shorten argument lists.
while ( targ ~ /\\(/ ) {
if ( 0 == gsub(/\\([^()]*\\)/, \"\", targ) ) {
break;
}
}
# Remove void and const decorators.
gsub(/ ?(void|const) ?/, \"\", targ);
gsub(/ /, \"\", targ);
}
else if ( targ ~ /\\?\\?/ && \$2 ~ /[1-9]/ ) {
# Substitute ?? by the name of the library.
targ = \$NF;
while ( targ ~ /\\// ) {
targ = substr(targ, index(targ, \"/\") + 1);
}
targ = substr(targ, 1, index(targ, \".\") - 1);
targ = targ \"::??\";
}
}
else {
targ = \$4;
targ = \$2;
tfile= \$NF;
}
if ( targ ~ /[<\\(]/ ) {
targ = substr(\$0, index(\$0, \" in \") + 4);
if ( targ ~ / from / ) {
targ = substr(targ, 1, index(targ, \" from \") - 1);
}
if ( targ ~ / at / ) {
targ = substr(targ, 1, index(targ, \" at \") - 1);
}
# Shorten C++ templates, e.g. in t/samples/stacktrace-004.txt
while ( targ ~ />::/ ) {
if ( 0 == gsub(/<[^<>]*>/, \"\", targ) ) {
break;
}
}
# Further shorten argument lists.
while ( targ ~ /\\(/ ) {
if ( 0 == gsub(/\\([^()]*\\)/, \"\", targ) ) {
break;
}
}
# Remove void and const decorators.
gsub(/ ?(void|const) ?/, \"\", targ);
gsub(/ /, \"\", targ);
}
else if ( targ ~ /\\?\\?/ && \$2 ~ /[1-9]/ ) {
# Substitute ?? by the name of the library.
targ = \$NF;
while ( targ ~ /\\// ) {
targ = substr(targ, index(targ, \"/\") + 1);
}
targ = substr(targ, 1, index(targ, \".\") - 1);
targ = targ \"::??\";
}
}
else {
targ = \$2;
tfile= \$NF;
}
# get rid of long symbol names such as 'pthread_cond_wait@@GLIBC_2.3.2'
if ( targ ~ /@@/ ) {
fname = substr(targ, 1, index(targ, \"@@\") - 1);
}
else {
fname = targ;
if ( tfile ~ /^\// ) {
last=split(tfile,filen,/\//);
fname = targ \"(\" filen[last] \")\";
# get rid of long symbol names such as 'pthread_cond_wait@@GLIBC_2.3.2'
if ( targ ~ /@@/ ) {
fname = substr(targ, 1, index(targ, \"@@\") - 1);
}
else {
fname = targ
fname = targ;
if ( tfile ~ /^\// ) {
last=split(tfile,filen,/\//);
fname = targ \"(\" filen[last] \")\";
}
else {
fname = targ
}
}
}
if ( ${maxlen:-0} == 0 || c < ${maxlen:-0} ) {
if (s != \"\" ) {
s = s \",\" fname;
}
else {
s = fname;
}
c++;
}
c++;
}
END {
print s
if (tid_found ~ 1 ) {
print s
}
}
" "$@" | sort | uniq -c | sort -r -n -k 1,1
}
@@ -659,6 +692,10 @@ aggregate_stacktrace() {
# The main program to run.
main() {
local output_file="${OPT_SAVE_SAMPLES:-"$PT_TMPDIR/percona-toolkit"}"
if [ $OPT_READNEVER ] && [ $OPT_DUMPER != "gdb" ]; then
option_error "Option --readnever not supported for dumper ${OPT_DUMPER}, ignoring."
fi
if [ -z "$ARGV" ]; then
# There are no files to analyze, so we'll make one.
@@ -671,22 +708,63 @@ main() {
OPT_PID=$(ps -eaf | grep "$OPT_BINARY" | grep -v grep | awk '{print $2}' | head -n1);
fi
fi
DUMPER=""
if [ $OPT_DUMPER == "gdb" ]; then
if [ `_which gdb` ]; then
readnever=""
if [ $OPT_READNEVER ]; then
if gdb -nx --quiet --batch --readnever > /dev/null 2>&1; then
readnever="--readnever"
else
die "gdb does not support option --readnever. Exiting"
fi
fi
DUMPER="
gdb ${readnever} -ex 'set pagination 0' \
-ex 'thread apply all bt' \
-batch \
-p ${OPT_PID}
"
else
die "Can't find gdb binary. Exiting"
fi
elif [ $OPT_DUMPER == "eu" ]; then
if [ `_which eu-stack` ]; then
DUMPER="eu-stack -s -m -p ${OPT_PID} | sed -e '\$!N;s/\n //g;P;D' | sed -e 's/\(0x[[:xdigit:]]*\) -/\1 ??() -/'"
else
die "Can't find eu-stack binary from elfutils package. Exiting"
fi
elif [ $OPT_DUMPER == "pteu" ]; then
if [ `_which eu-stack` ] && [ `_which pt-eustack-resolver` ]; then
DUMPER="pt-eustack-resolver ${OPT_PID}"
else
if [ ! `_which eu-stack` ] && [ ! `_which pt-eustack-resolver` ]; then
die "Can't find eu-stack binary from elfutils package and pt-eustack-resolver tool in \$PATH. Exiting"
elif [ ! `_which eu-stack` ]; then
die "Can't find eu-stack binary from elfutils package. Exiting"
else
die "Can't find pt-eustack-resolver tool in \$PATH. Exiting"
fi
fi
else
die "Unknown dumper: ${OPT_DUMPER}. Exiting"
fi
date
for x in $(_seq $OPT_ITERATIONS); do
gdb -ex "set pagination 0" \
-ex "thread apply all bt" \
-batch \
-p $OPT_PID \
>> "$output_file"
date +'TS %N.%s %F %T' >> "$output_file"
sleep $OPT_INTERVAL
eval $DUMPER >> "$output_file"
date +'TS %N.%s %F %T' >> "$output_file"
sleep $OPT_INTERVAL
done
fi
if [ -z "$ARGV" ]; then
aggregate_stacktrace "$OPT_LINES" "$output_file"
aggregate_stacktrace "$OPT_LINES" "${OPT_TIDS}" "$output_file"
else
aggregate_stacktrace "$OPT_LINES" $ARGV
aggregate_stacktrace "$OPT_LINES" "${OPT_TIDS}" $ARGV
fi
}
@@ -782,6 +860,12 @@ short form: -b; type: string; default: mysqld
Which binary to trace.
=item --dumper
short form: -d; type: string; default: gdb
Which dumper use to get stack traces(gdb: gdb, eu: eu-stack, pteu: pt-eustack-resolver).
=item --help
Show help and exit.
@@ -810,12 +894,46 @@ short form: -p; type: int
Process ID of the process to trace; overrides L<"--binary">.
=item --readnever
Pass option C<--readnever> to C<gdb>. With this option C<gdb> will not read
symbol files, thus produce stack traces way faster. However, such traces may
not be sufficient for the diagnostic.
=item --save-samples
short form: -k; type: string
Keep the raw traces in this file after aggregation.
=item --tids
short form: -t; type: string; default: *
Extract traces only for specific tids.
This option uses regular expressions to select threads. For example, if the
collected stack trace has data for threads:
[New Thread 0x52173940 (LWP 23846)]
[New Thread 0x52132940 (LWP 23845)]
[New Thread 0x520f1940 (LWP 23844)]
[New Thread 0x520b0940 (LWP 23798)]
[New Thread 0x5206f940 (LWP 23776)]
[New Thread 0x5202e940 (LWP 23775)]
[New Thread 0x51fed940 (LWP 23774)]
[New Thread 0x51fac940 (LWP 23728)]
[New Thread 0x51f6b940 (LWP 23727)]
[New Thread 0x51f2a940 (LWP 21264)]
[New Thread 0x51ee9940 (LWP 21263)]
[New Thread 0x51ea8940 (LWP 21201)]
C<-t 21> will print stack traces for threads 21264, 21263, 21201
C<-t 21201,23846> will print stack traces for threads 21201, 23846
C<-t 21201,237.8> will print stack traces for threads 21201, 23798, 23728
=item --version
Show version and exit.

View File

@@ -50,6 +50,10 @@ An interactive I/O monitoring tool for GNU/Linux.
Find duplicate indexes and foreign keys on MySQL tables.
=item pt-eustack-resolver
Get stack traces for a selected program with eu-stack and resolve symbols.
=item pt-fifo-split
Split files and pipe lines to a fifo without really splitting.
@@ -66,6 +70,10 @@ Convert queries into fingerprints.
Log MySQL foreign key errors.
=item pt-galera-log-explainer
Filter, aggregate and summarize multiple galera logs together.
=item pt-heartbeat
Monitor MySQL replication delay.
@@ -78,6 +86,10 @@ Read queries from a log and analyze how they use indexes.
Watch process IO and print a table of file and I/O activity.
=item pt-k8s-debug-collector
Collect debug data from a k8s/OpenShift cluster.
=item pt-kill
Kill MySQL queries that match certain criteria.
@@ -94,6 +106,10 @@ Performs checks on MongoDB indexes
Reports query usage statistics by aggregating queries from MongoDB query profiler
=item pt-mongodb-summary
Collect information about a MongoDB cluster.
=item pt-mysql-summary
Summarize MySQL information nicely.
@@ -102,6 +118,10 @@ Summarize MySQL information nicely.
ALTER tables without locking them.
=item pt-pg-summary
Collect information about a PostgreSQL cluster.
=item pt-pmp
Aggregate GDB stack traces for a selected program.
@@ -110,6 +130,10 @@ Aggregate GDB stack traces for a selected program.
Analyze MySQL queries from logs, processlist, and tcpdump.
=item pt-secure-collect
Collect, sanitize, pack and encrypt data.
=item pt-show-grants
Canonicalize and print MySQL grants so you can effectively replicate, compare and version-control them.
@@ -545,7 +569,11 @@ Frank was a full-time Percona Toolkit developer employed by Percona until 2016.
=item Carlos Salguero
Carlos has been the project's lead developer since 2016. He is hired by Percona.
Carlos has been the project's lead developer since 2016 until 2022.
=item Sveta Smirnova
Sveta has been the project's lead developer since 2022.
=item Others

42
t/pt-pmp/pt-pmp-threads.t Normal file
View File

@@ -0,0 +1,42 @@
#!/usr/bin/env perl
BEGIN {
die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n"
unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH};
unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib";
};
use strict;
use warnings FATAL => 'all';
use English qw(-no_match_vars);
use PerconaTest;
use Test::More;
my $sample = "$trunk/t/pt-pmp/samples/stacktrace001.in";
ok(
no_diff(
"$trunk/bin/pt-pmp -t ^25 $sample",
"t/pt-pmp/samples/stacktrace001_t25.out",
),
'-t ^25 prints stack traces for threads those numbers start from 25'
) or diag($test_diff);
ok(
no_diff(
"$trunk/bin/pt-pmp -t 21201,23846 $sample",
"t/pt-pmp/samples/stacktrace001_t21201_23846.out",
),
'-t 21201,23846 prints stack traces for threads 21201,23846'
) or diag($test_diff);
ok(
no_diff(
"$trunk/bin/pt-pmp -t 21201,237.8 $sample",
"t/pt-pmp/samples/stacktrace001_t21201_237_8.out",
),
'-t 21201,237.8 prints stack traces for threads 21201, 23798, 23728'
) or diag($test_diff);
done_testing;

View File

@@ -37,4 +37,20 @@ ok(
"Limit 2 (stacktrace003-limit2.out)"
) or diag($test_diff);
ok(
no_diff(
"$trunk/bin/pt-pmp -d eu $sample/stacktrace006-eu.in",
"t/pt-pmp/samples/stacktrace006-eu-deu.out",
),
"eu-stack dump read correctly if option -d eu specified"
) or diag($test_diff);
ok(
no_diff(
"$trunk/bin/pt-pmp -d pteu $sample/stacktrace006-pteu.in",
"t/pt-pmp/samples/stacktrace006-pteu-dpteu.out",
),
"pt-eustack-resolver dump read correctly if option -d pteu specified"
) or diag($test_diff);
done_testing;

View File

@@ -0,0 +1 @@
3 __lll_mutex_lock_wait(libpthread.so.0),_L_mutex_lock_1133(libpthread.so.0),pthread_mutex_lock(libpthread.so.0),safe_mutex_lock,open_table,open_tables,open_and_lock_tables,mysql_execute_command,mysql_parse,dispatch_command,handle_one_connection,start_thread(libpthread.so.0),clone(libc.so.6)

View File

@@ -0,0 +1,2 @@
1 __lll_mutex_lock_wait(libpthread.so.0),_L_mutex_lock_1133(libpthread.so.0),pthread_mutex_lock(libpthread.so.0),safe_mutex_lock,open_table,open_tables,open_and_lock_tables,mysql_execute_command,mysql_parse,dispatch_command,handle_one_connection,start_thread(libpthread.so.0),clone(libc.so.6)
1 __lll_mutex_lock_wait(libpthread.so.0),_L_mutex_lock_1133(libpthread.so.0),pthread_mutex_lock(libpthread.so.0),safe_mutex_lock,close_thread_tables,dispatch_command,handle_one_connection,start_thread(libpthread.so.0),clone(libc.so.6)

View File

@@ -0,0 +1,4 @@
7 read(libpthread.so.0),vio_read(unistd.h:35),my_real_read,my_net_read,handle_one_connection,start_thread(libpthread.so.0),clone(libc.so.6)
2 pthread_cond_wait,safe_cond_wait,end_thread,handle_one_connection,start_thread(libpthread.so.0),clone(libc.so.6)
1 __lll_mutex_lock_wait(libpthread.so.0),_L_mutex_lock_1133(libpthread.so.0),pthread_mutex_lock(libpthread.so.0),safe_mutex_lock,open_table,open_tables,open_and_lock_tables,mysql_execute_command,mysql_parse,dispatch_command,handle_one_connection,start_thread(libpthread.so.0),clone(libc.so.6)
1 __lll_mutex_lock_wait(libpthread.so.0),_L_mutex_lock_1133(libpthread.so.0),pthread_mutex_lock(libpthread.so.0),safe_mutex_lock,close_thread_tables,dispatch_command,handle_one_connection,start_thread(libpthread.so.0),clone(libc.so.6)

View File

@@ -0,0 +1,32 @@
8 syscall,io_getevents(libaio.so.1.0.1),LinuxAIOHandler::collect(os0file.cc:2383:28),LinuxAIOHandler::poll(os0file.cc:2529:14),os_aio_handler(os0file.cc:2579:29),fil_aio_wait(fil0fil.cc:7979:28),io_handler_thread(srv0start.cc:250:17),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
3 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,os_event::wait_low(os0event.cc:185:30),srv_worker_thread(os0event.h:103:67),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
2 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,xpl::Cond::timed_wait(thr_cond.h:99:32),ngs::Scheduler_dynamic::wait_if_idle_then_delete_worker(scheduler.cc:196:56),ngs::Scheduler_dynamic::worker(scheduler.cc:243:44),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 ut_delay(ut0ut.cc:109:3),void(ib0mutex.h:494:15),buf_page_io_complete(buf0buf.cc:5928:7),fil_aio_wait(fil0fil.cc:8020:29),io_handler_thread(srv0start.cc:250:17),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __sigtimedwait,signal_hand(mysqld.cc:3833:29),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __poll,Mysqld_socket_listener::listen_for_connection_event(poll2.h:39:10),mysqld_main(connection_acceptor.h:64:75),__libc_start_call_main,__libc_start_main,_start(mysqld)
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,xpl::Broker_task::wait_for_data_and_swap_queues(synchronize.h:49:38),xpl::Broker_task::loop(broker_task.cc:92:32),ngs::Server::run_task(server.cc:83:18),std::_Function_handler<(server.cc:148:57),ngs::Scheduler_dynamic::worker(std_function.h:590:9),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,Per_thread_connection_handler::block_until_new_connection(thr_cond.h:108:27),handle_connection(connection_handler_per_thread.cc:340:77),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,os_event::wait_low(os0event.cc:185:30),buf_resize_thread(os0event.h:103:67),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,os_event::wait_low(os0event.cc:185:30),buf_dump_thread(os0event.h:103:67),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,Event_queue::cond_wait(thr_cond.h:108:27),Event_queue::get_top_for_execution_if_time(event_queue.cc:556:16),Event_scheduler::run(event_scheduler.cc:577:45),event_scheduler_thread(event_scheduler.cc:280:21),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,compress_gtid_table(thr_cond.h:108:27),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),srv_purge_coordinator_thread(srv0srv.cc:3356:33),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),srv_monitor_thread(os0event.h:121:32),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),srv_error_monitor_thread(srv0srv.cc:2084:25),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_write_up_to(os0event.ic:135:29),innobase_flush_logs(ha_innodb.cc:6113:27),plugin_foreach_with_mask(sql_plugin.cc:2765:29),plugin_foreach_with_mask(sql_plugin.cc:2778:34),ha_flush_logs(handler.cc:2543:7),MYSQL_BIN_LOG::fetch_and_process_flush_stage_queue(binlog.cc:8747:18),MYSQL_BIN_LOG::process_flush_stage_queue(binlog.cc:8772:56),MYSQL_BIN_LOG::ordered_commit(binlog.cc:9241:32),MYSQL_BIN_LOG::commit(binlog.cc:8609:28),ha_commit_trans(handler.cc:1772:39),trans_commit(transaction.cc:246:24),mysql_execute_command(sql_parse.cc:4506:23),Prepared_statement::execute(sql_prepare.cc:3646:33),Prepared_statement::execute_loop(sql_prepare.cc:3058:18),mysqld_stmt_execute(sql_prepare.cc:1914:23),dispatch_command(sql_parse.cc:2024:28),do_command(sql_parse.cc:1501:34),handle_connection(connection_handler_per_thread.cc:308:23),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_writer(os0event.ic:135:29),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_write_notifier(os0event.ic:135:29),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_flush_notifier(os0event.ic:135:29),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_files_governor(log0files_governor.cc:1372:27),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_checkpointer(log0chkp.cc:1025:37),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),lock_wait_timeout_thread(lock0wait.cc:1534:27),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),ib_wqueue_timedwait(ut0wqueue.cc:128:35),fts_optimize_thread(fts0opt.cc:2850:57),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),dict_stats_thread(os0event.h:121:32),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),Clone_persist_gtid::periodic_write(os0event.h:121:32),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),buf_flush_page_coordinator_thread(buf0flu.cc:2832:35),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,MYSQL_BIN_LOG::wait_for_update(thr_cond.h:99:32),Binlog_sender::wait_new_events(rpl_binlog_sender.cc:821:34),Binlog_sender::get_binlog_end_pos(rpl_binlog_sender.cc:539:33),Binlog_sender::send_binlog(rpl_binlog_sender.cc:510:46),Binlog_sender::run(rpl_binlog_sender.cc:413:20),mysql_binlog_send(rpl_source.cc:997:13),com_binlog_dump(rpl_source.cc:924:20),dispatch_command(sql_parse.cc:2349:30),do_command(sql_parse.cc:1501:34),handle_connection(connection_handler_per_thread.cc:308:23),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 fsync,os_file_fsync_posix(os0file.cc:2994:65),os_file_flush_func(os0file.cc:3137:28),Log_file_handle::fsync(os0file.ic:468:35),log_flush_low(log0write.cc:2443:36),log_flusher(log0write.cc:2534:22),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 fsync,os_file_fsync_posix(os0file.cc:2994:65),os_file_flush_func(os0file.cc:3137:28),Fil_shard::space_flush(os0file.ic:468:35),Fil_shard::flush_file_spaces(fil0fil.cc:8263:16),Fil_system::flush_file_spaces(fil0fil.cc:8271:29),Double_write::write_complete(buf0dblwr.cc:2622:32),buf_page_io_complete(buf0buf.cc:5976:31),fil_aio_wait(fil0fil.cc:8020:29),io_handler_thread(srv0start.cc:250:17),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 fsync,os_file_fsync_posix(os0file.cc:2994:65),os_file_flush_func(os0file.cc:3137:28),Double_write::write_dblwr_pages(os0file.ic:468:35),Double_write::write_pages(buf0dblwr.cc:2264:46),Double_write::enqueue(buf0dblwr.cc:563:16),dblwr::write(buf0dblwr.cc:678:19),buf_flush_page(buf0flu.cc:1255:29),buf_flush_page_and_try_neighbors(buf0flu.cc:1592:27),buf_flush_do_batch(buf0flu.cc:1813:41),buf_lru_manager_thread(buf0flu.cc:2272:21),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 epoll_wait,epoll_dispatch(epoll.c:465:8),event_base_loop(event.c:1998:9),ngs::Server::run_task(server.cc:83:18),std::_Function_handler<(server.cc:148:57),ngs::Scheduler_dynamic::worker(std_function.h:590:9),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 clock_nanosleep@GLIBC_2.2.5,__nanosleep,srv_master_thread(this_thread_sleep.h:82:20),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3

View File

@@ -0,0 +1,453 @@
PID 3441765 - process
TID 3441765:
#0 0x00007f2763f18bcf __poll - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/poll.c:29:10
#1 0x000055be68a34432 Mysqld_socket_listener::listen_for_connection_event() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/x86_64-linux-gnu/bits/poll2.h:39:10
#2 0x000055be68770708 mysqld_main(int, char**) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_acceptor.h:64:75
#3 0x00007f2763e29d90 __libc_start_call_main - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/nptl/libc_start_call_main.h:58:16
#4 0x00007f2763e29e40 __libc_start_main@@GLIBC_2.34 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../csu/libc-start.c:392:3
#5 0x000055be6859cfb5 _start - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld
TID 3441805:
#0 0x00007f2763f1e88d syscall - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 io_getevents - /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb LinuxAIOHandler::collect() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383:28
#3 0x000055be69b96712 LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529:14
#4 0x000055be69b99874 os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579:29
#5 0x000055be69e0f9cd fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979:28
#6 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#7 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#8 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#10 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441806:
#0 0x00007f2763f1e88d syscall - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 io_getevents - /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb LinuxAIOHandler::collect() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383:28
#3 0x000055be69b96712 LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529:14
#4 0x000055be69b99874 os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579:29
#5 0x000055be69e0f9cd fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979:28
#6 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#7 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#8 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#10 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441807:
#0 0x00007f2763f1e88d syscall - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 io_getevents - /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb LinuxAIOHandler::collect() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383:28
#3 0x000055be69b96712 LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529:14
#4 0x000055be69b99874 os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579:29
#5 0x000055be69e0f9cd fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979:28
#6 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#7 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#8 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#10 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441808:
#0 0x00007f2763f1e88d syscall - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 io_getevents - /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb LinuxAIOHandler::collect() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383:28
#3 0x000055be69b96712 LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529:14
#4 0x000055be69b99874 os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579:29
#5 0x000055be69e0f9cd fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979:28
#6 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#7 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#8 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#10 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441809:
#0 0x00007f2763f1e88d syscall - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 io_getevents - /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb LinuxAIOHandler::collect() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383:28
#3 0x000055be69b96712 LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529:14
#4 0x000055be69b99874 os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579:29
#5 0x000055be69e0f9cd fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979:28
#6 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#7 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#8 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#10 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441810:
#0 0x00007f2763f1e88d syscall - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 io_getevents - /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb LinuxAIOHandler::collect() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383:28
#3 0x000055be69b96712 LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529:14
#4 0x000055be69b99874 os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579:29
#5 0x000055be69e0f9cd fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979:28
#6 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#7 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#8 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#10 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441811:
#0 0x00007f2763f1e88d syscall - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 io_getevents - /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb LinuxAIOHandler::collect() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383:28
#3 0x000055be69b96712 LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529:14
#4 0x000055be69b99874 os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579:29
#5 0x000055be69e0f9cd fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979:28
#6 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#7 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#8 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#10 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441812:
#0 0x000055be69ca3725 ut_delay(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/ut/ut0ut.cc:109:3
#1 0x000055be69a96047 void mutex_enter_inline<PolicyMutex<TTASEventMutex<GenericPolicy> > >(PolicyMutex<TTASEventMutex<GenericPolicy> >*, ut::Location) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ib0mutex.h:494:15
#2 0x000055be69d0b54e buf_page_io_complete(buf_page_t*, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc:5928:7
#3 0x000055be69e0fb06 fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:8020:29
#4 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#5 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441813:
#0 0x00007f2763f1b8ab fsync - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/fsync.c:27:10
#1 0x000055be69b8b83d os_file_fsync_posix(int) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2994:65
#2 0x000055be69b8f658 os_file_flush_func(int) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:3137:28
#3 0x000055be69e113f3 Fil_shard::space_flush(unsigned int) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0file.ic:468:35
#4 0x000055be69e11791 Fil_shard::flush_file_spaces() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:8263:16
#5 0x000055be69e118bc Fil_system::flush_file_spaces() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:8271:29
#6 0x000055be69d0e48c Double_write::write_complete(buf_page_t*, buf_flush_t) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:2622:32
#7 0x000055be69d0b568 buf_page_io_complete(buf_page_t*, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc:5976:31
#8 0x000055be69e0fb06 fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:8020:29
#9 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#10 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#11 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#12 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#13 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441814:
#0 0x00007f2763f1e88d syscall - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 io_getevents - /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb LinuxAIOHandler::collect() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383:28
#3 0x000055be69b96712 LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529:14
#4 0x000055be69b99874 os_aio_handler(unsigned long, fil_node_t**, void**, IORequest*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579:29
#5 0x000055be69e0f9cd fil_aio_wait(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979:28
#6 0x000055be69c47aa8 io_handler_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250:17
#7 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#8 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#10 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441815:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69d28abb buf_flush_page_coordinator_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:2832:35
#5 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441816:
#0 0x00007f2763f1b8ab fsync - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/fsync.c:27:10
#1 0x000055be69b8b83d os_file_fsync_posix(int) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2994:65
#2 0x000055be69b8f658 os_file_flush_func(int) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:3137:28
#3 0x000055be69d0dc40 Double_write::write_dblwr_pages(buf_flush_t) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0file.ic:468:35
#4 0x000055be69d11448 Double_write::write_pages(buf_flush_t) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:2264:46
#5 0x000055be69d1c779 Double_write::enqueue(buf_flush_t, buf_page_t*, file::Block const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:563:16
#6 0x000055be69d1cb92 dblwr::write(buf_flush_t, buf_page_t*, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:678:19
#7 0x000055be69d22eb7 buf_flush_page(buf_pool_t*, buf_page_t*, buf_flush_t, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1255:29
#8 0x000055be69d258c3 buf_flush_page_and_try_neighbors(buf_page_t*, buf_flush_t, unsigned long, unsigned long*) [clone .isra.0] - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1592:27
#9 0x000055be69d26b1f buf_flush_do_batch(buf_pool_t*, buf_flush_t, unsigned long, unsigned long, unsigned long*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1813:41
#10 0x000055be69d27372 buf_lru_manager_thread(unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:2272:21
#11 0x000055be69c480e6 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#12 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#13 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#14 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441817:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69c447e0 srv_monitor_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:121:32
#5 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441818:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69b32bac log_checkpointer(log_t*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0chkp.cc:1025:37
#5 0x000055be69b50bae std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441819:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69b819eb log_flush_notifier(log_t*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.ic:135:29
#5 0x000055be69b50bae std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441820:
#0 0x00007f2763f1b8ab fsync - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/fsync.c:27:10
#1 0x000055be69b8b83d os_file_fsync_posix(int) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2994:65
#2 0x000055be69b8f658 os_file_flush_func(int) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:3137:28
#3 0x000055be69b48b64 Log_file_handle::fsync() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0file.ic:468:35
#4 0x000055be69b7afb8 log_flush_low(log_t&) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:2443:36
#5 0x000055be69b80b8c log_flusher(log_t*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:2534:22
#6 0x000055be69b50bae std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#7 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#8 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#9 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441821:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69b8139b log_write_notifier(log_t*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.ic:135:29
#5 0x000055be69b50bae std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441822:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69b804e3 log_writer(log_t*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.ic:135:29
#5 0x000055be69b50bae std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441823:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69b47d0d log_files_governor(log_t*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0files_governor.cc:1372:27
#5 0x000055be69b50bae std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441828:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69b2ccae lock_wait_timeout_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/lock/lock0wait.cc:1534:27
#5 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441829:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69c3b73d srv_error_monitor_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:2084:25
#5 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441830:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93a41 pthread_cond_wait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9f096 os_event::wait_low(long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185:30
#3 0x000055be69d06dde buf_resize_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103:67
#4 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#5 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#7 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441831:
#0 0x00007f2763ee57f8 clock_nanosleep@GLIBC_2.2.5 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/clock_nanosleep.c:78:7
#1 0x00007f2763eea677 __nanosleep - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/nanosleep.c:25:13
#2 0x000055be69c451b5 srv_master_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/this_thread_sleep.h:82:20
#3 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#4 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#5 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#6 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441832:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69dd5487 dict_stats_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:121:32
#5 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441833:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69ca525c ib_wqueue_timedwait(ib_wqueue_t*, std::chrono::duration<long, std::ratio<1l, 1000000l> >) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/ut/ut0wqueue.cc:128:35
#5 0x000055be69e57c9a fts_optimize_thread(ib_wqueue_t*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fts/fts0opt.cc:2850:57
#6 0x000055be69e4f42e std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(ib_wqueue_t*), ib_wqueue_t*> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#7 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#8 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#9 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441834:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be6a257885 xpl::Cond::timed_wait(xpl::Mutex&, unsigned long long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:99:32
#3 0x000055be6a27e5cd ngs::Scheduler_dynamic::wait_if_idle_then_delete_worker(unsigned long long&) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:196:56
#4 0x000055be6a27fb9c ngs::Scheduler_dynamic::worker() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:243:44
#5 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#6 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#7 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441835:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be6a257885 xpl::Cond::timed_wait(xpl::Mutex&, unsigned long long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:99:32
#3 0x000055be6a27e5cd ngs::Scheduler_dynamic::wait_if_idle_then_delete_worker(unsigned long long&) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:196:56
#4 0x000055be6a27fb9c ngs::Scheduler_dynamic::worker() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:243:44
#5 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#6 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#7 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441836:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93a41 pthread_cond_wait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be6a26affc xpl::Broker_task::wait_for_data_and_swap_queues(std::queue<ngs::Notice_descriptor, std::__cxx11::list<ngs::Notice_descriptor, std::allocator<ngs::Notice_descriptor> > >*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/helper/multithread/synchronize.h:49:38
#3 0x000055be6a26b791 xpl::Broker_task::loop() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/mq/broker_task.cc:92:32
#4 0x000055be6a2098b2 ngs::Server::run_task(std::shared_ptr<xpl::iface::Server_task>) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:83:18
#5 0x000055be6a20a494 std::_Function_handler<void (), ngs::Server::start_tasks()::{lambda()#1}>::_M_invoke(std::_Any_data const&) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:148:57
#6 0x000055be6a27fe95 ngs::Scheduler_dynamic::worker() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/std_function.h:590:9
#7 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#8 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#9 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441874:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93a41 pthread_cond_wait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9f096 os_event::wait_low(long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185:30
#3 0x000055be69d1f343 buf_dump_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103:67
#4 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#5 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#7 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441875:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69d6e459 Clone_persist_gtid::periodic_write() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:121:32
#5 0x000055be69d6ae4e std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(Clone_persist_gtid*), Clone_persist_gtid*> > >::_M_run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441876:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69c46523 srv_purge_coordinator_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:3356:33
#5 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#6 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441877:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93a41 pthread_cond_wait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9f096 os_event::wait_low(long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185:30
#3 0x000055be69c45a9c srv_worker_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103:67
#4 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#5 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#7 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441878:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93a41 pthread_cond_wait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9f096 os_event::wait_low(long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185:30
#3 0x000055be69c45a9c srv_worker_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103:67
#4 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#5 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#7 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441879:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93a41 pthread_cond_wait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9f096 os_event::wait_low(long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185:30
#3 0x000055be69c45a9c srv_worker_thread() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103:67
#4 0x000055be69b662fa void Detached_thread::operator()<void (*)()>(void (*&&)()) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/invoke.h:61:36
#5 0x00007f27642dc253 ??() - /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#7 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441880:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93a41 pthread_cond_wait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be68c3ee21 Event_queue::cond_wait(THD*, timespec*, PSI_stage_info_v1 const*, char const*, char const*, unsigned int) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:108:27
#3 0x000055be68c3f92f Event_queue::get_top_for_execution_if_time(THD*, Event_queue_element_for_exec**) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/event_queue.cc:556:16
#4 0x000055be68c41e5b Event_scheduler::run(THD*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/event_scheduler.cc:577:45
#5 0x000055be68c42517 event_scheduler_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/event_scheduler.cc:280:21
#6 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441881:
#0 0x00007f2763e4321a __sigtimedwait - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/sigtimedwait.c:61:28
#1 0x000055be6875631b signal_hand - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/mysqld.cc:3833:29
#2 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#3 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#4 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441883:
#0 0x00007f2763f25e2e epoll_wait - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/epoll_wait.c:30:10
#1 0x000055be6a2cc925 epoll_dispatch - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/extra/libevent/libevent-2.1.11-stable/epoll.c:465:8
#2 0x000055be6a2c2238 event_base_loop - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/extra/libevent/libevent-2.1.11-stable/event.c:1998:9
#3 0x000055be6a2098b2 ngs::Server::run_task(std::shared_ptr<xpl::iface::Server_task>) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:83:18
#4 0x000055be6a20a494 std::_Function_handler<void (), ngs::Server::start_tasks()::{lambda()#1}>::_M_invoke(std::_Any_data const&) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:148:57
#5 0x000055be6a27fe95 ngs::Scheduler_dynamic::worker() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /usr/include/c++/11/bits/std_function.h:590:9
#6 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#7 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#8 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441885:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93a41 pthread_cond_wait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69608553 compress_gtid_table - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:108:27
#3 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#4 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#5 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3441888:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be695b8173 MYSQL_BIN_LOG::wait_for_update(std::chrono::duration<long, std::ratio<1l, 1000000000l> > const&) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:99:32
#3 0x000055be6963f417 Binlog_sender::wait_new_events(unsigned long long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_binlog_sender.cc:821:34
#4 0x000055be6963f7e9 Binlog_sender::get_binlog_end_pos(Basic_binlog_file_reader<Binlog_ifile, Binlog_event_data_istream, Binlog_event_object_istream, Binlog_sender::Event_allocator>&) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_binlog_sender.cc:539:33
#5 0x000055be69640cbb Binlog_sender::send_binlog(Basic_binlog_file_reader<Binlog_ifile, Binlog_event_data_istream, Binlog_event_object_istream, Binlog_sender::Event_allocator>&, unsigned long long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_binlog_sender.cc:510:46
#6 0x000055be69641cb6 Binlog_sender::run() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_binlog_sender.cc:413:20
#7 0x000055be69638f58 mysql_binlog_send(THD*, char*, unsigned long long, Gtid_set*, unsigned int) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_source.cc:997:13
#8 0x000055be6963ba5e com_binlog_dump(THD*, char*, unsigned long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_source.cc:924:20
#9 0x000055be688bdbe6 dispatch_command(THD*, COM_DATA const*, enum_server_command) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:2349:30
#10 0x000055be688bfd92 do_command(THD*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:1501:34
#11 0x000055be68a2e000 handle_connection - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_handler_per_thread.cc:308:23
#12 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#13 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#14 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3442446:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93a41 pthread_cond_wait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be68a2dba7 Per_thread_connection_handler::block_until_new_connection() - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:108:27
#3 0x000055be68a2de4f handle_connection - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_handler_per_thread.cc:340:77
#4 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#5 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#6 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TID 3772082:
#0 0x00007f2763e91117 __GI___futex_abstimed_wait_cancelable64 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/futex-internal.c:57:12
#1 0x00007f2763e93e9b pthread_cond_timedwait@@GLIBC_2.3.2 - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_cond_wait.c:503:10
#2 0x000055be69b9fd1a os_event::timed_wait(timespec const*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:315:31
#3 0x000055be69b9feb9 os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27
#4 0x000055be69b7f8aa log_write_up_to(log_t&, unsigned long, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.ic:135:29
#5 0x000055be69a7a0ae innobase_flush_logs(handlerton*, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/handler/ha_innodb.cc:6113:27
#6 0x000055be688dae45 plugin_foreach_with_mask(THD*, bool (**)(THD*, st_plugin_int*, void*), int, unsigned int, void*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_plugin.cc:2765:29
#7 0x000055be688db160 plugin_foreach_with_mask(THD*, bool (*)(THD*, st_plugin_int*, void*), int, unsigned int, void*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_plugin.cc:2778:34
#8 0x000055be685af8dc ha_flush_logs(bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/handler.cc:2543:7
#9 0x000055be695b880a MYSQL_BIN_LOG::fetch_and_process_flush_stage_queue(bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/binlog.cc:8747:18
#10 0x000055be695ccfb0 MYSQL_BIN_LOG::process_flush_stage_queue(unsigned long long*, bool*, THD**) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/binlog.cc:8772:56
#11 0x000055be695cd264 MYSQL_BIN_LOG::ordered_commit(THD*, bool, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/binlog.cc:9241:32
#12 0x000055be695cee62 MYSQL_BIN_LOG::commit(THD*, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/binlog.cc:8609:28
#13 0x000055be685ae496 ha_commit_trans(THD*, bool, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/handler.cc:1772:39
#14 0x000055be689ea493 trans_commit(THD*, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/transaction.cc:246:24
#15 0x000055be688b990a mysql_execute_command(THD*, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:4506:23
#16 0x000055be688eaec0 Prepared_statement::execute(THD*, String*, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_prepare.cc:3646:33
#17 0x000055be688efbad Prepared_statement::execute_loop(THD*, String*, bool) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_prepare.cc:3058:18
#18 0x000055be688f0224 mysqld_stmt_execute(THD*, Prepared_statement*, bool, unsigned long, PS_PARAM*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_prepare.cc:1914:23
#19 0x000055be688bdced dispatch_command(THD*, COM_DATA const*, enum_server_command) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:2024:28
#20 0x000055be688bfd92 do_command(THD*) - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:1501:34
#21 0x000055be68a2e000 handle_connection - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_handler_per_thread.cc:308:23
#22 0x000055be69ee42e9 pfs_spawn_thread - /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987:24
#23 0x00007f2763e94ac3 start_thread - /usr/lib/x86_64-linux-gnu/libc.so.6 ./nptl/pthread_create.c:442:8
#24 0x00007f2763f26850 __clone3 - /usr/lib/x86_64-linux-gnu/libc.so.6 ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
TS 051545631.1705596346 2024-01-18 19:45:46

View File

@@ -0,0 +1,27 @@
8 -,-(libaio.so.1.0.1),-(os0file.cc:2383:28),IORequest*)(os0file.cc:2383:28),long,(os0file.cc:2579:29),long)(fil0fil.cc:7979:28),long)(srv0start.cc:250:17),0x000055be69c480e6std::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(srv0start.cc:250:17),-(libstdc++.so.6.0.30),-,-
5 -,-,-(os0event.cc:185:30),-(os0event.h:103:67),0x000055be69b662faDetached_thread::operator<>-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(os0event.h:103:67),-(libstdc++.so.6.0.30),-,-
3 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),-(os0event.ic:135:29),0x000055be69b50baestd::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(os0event.ic:135:29),-(libstdc++.so.6.0.30),-,-
2 -,-,unsigned(thr_cond.h:99:32),long(scheduler.cc:196:56),-(scheduler.cc:243:44),-(pfs.cc:2987:24),-,-
2 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),-(os0event.h:121:32),0x000055be69b662faDetached_thread::operator<>-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(os0event.h:121:32),-(libstdc++.so.6.0.30),-,-
1 -,-,timespec*,(thr_cond.h:108:27),Event_queue_element_for_exec**)(event_queue.cc:556:16),-(event_scheduler.cc:577:45),-(event_scheduler.cc:280:21),-(pfs.cc:2987:24),-,-
1 -,-,-(thr_cond.h:108:27),-(pfs.cc:2987:24),-,-
1 -,-,-(thr_cond.h:108:27),-(connection_handler_per_thread.cc:340:77),-(pfs.cc:2987:24),-,-
1 -,-,-(this_thread_sleep.h:82:20),0x000055be69b662faDetached_thread::operator<>-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(this_thread_sleep.h:82:20),-(libstdc++.so.6.0.30),-,-
1 -,-(poll2.h:39:10),char**)(connection_acceptor.h:64:75),-,-,-(mysqld)
1 -,-(os0file.cc:2994:65),-(os0file.cc:3137:28),-(os0file.ic:468:35),-(log0write.cc:2443:36),-(log0write.cc:2534:22),0x000055be69b50baestd::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(log0write.cc:2534:22),-(libstdc++.so.6.0.30),-,-
1 -,-(os0file.cc:2994:65),-(os0file.cc:3137:28),-(os0file.ic:468:35),-(buf0dblwr.cc:2264:46),buf_page_t*,(buf0dblwr.cc:563:16),buf_page_t*,(buf0dblwr.cc:678:19),buf_page_t*,(buf0flu.cc:1255:29),buf_flush_t,(buf0flu.cc:1592:27),buf_flush_t,(buf0flu.cc:1813:41),long)(buf0flu.cc:2272:21),0x000055be69c480e6std::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(buf0flu.cc:2272:21),-(libstdc++.so.6.0.30),-,-
1 -,-(os0file.cc:2994:65),-(os0file.cc:3137:28),int)(os0file.ic:468:35),-(fil0fil.cc:8263:16),-(fil0fil.cc:8271:29),buf_flush_t)(buf0dblwr.cc:2622:32),bool)(buf0buf.cc:5976:31),long)(fil0fil.cc:8020:29),long)(srv0start.cc:250:17),0x000055be69c480e6std::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(srv0start.cc:250:17),-(libstdc++.so.6.0.30),-,-
1 -,-(mysqld.cc:3833:29),-(pfs.cc:2987:24),-,-
1 long)(ut0ut.cc:109:3),0x000055be69a96047mutex_enter_inline<PolicyMutex<TTASEventMutex<GenericPolicy>>>-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ib0mutex.h:494:15(ib0mutex.h:494:15),bool)(buf0buf.cc:5928:7),long)(fil0fil.cc:8020:29),long)(srv0start.cc:250:17),0x000055be69c480e6std::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(srv0start.cc:250:17),-(libstdc++.so.6.0.30),-,-
1 -,-(epoll.c:465:8),-(event.c:1998:9),-(server.cc:83:18),0x000055be6a20a494std::_Function_handler::_M_invoke-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:148:57(server.cc:148:57),-(std_function.h:590:9),-(pfs.cc:2987:24),-,-
1 -,-,0x000055be6a26affcxpl::Broker_task::wait_for_data_and_swap_queues-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/helper/multithread/synchronize.h:49:38(synchronize.h:49:38),-(broker_task.cc:92:32),-(server.cc:83:18),0x000055be6a20a494std::_Function_handler::_M_invoke-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:148:57(server.cc:148:57),-(std_function.h:590:9),-(pfs.cc:2987:24),-,-
1 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),unsigned(os0event.ic:135:29),bool)(ha_innodb.cc:6113:27),bool(sql_plugin.cc:2765:29),bool(sql_plugin.cc:2778:34),-(handler.cc:2543:7),-(binlog.cc:8747:18),long(binlog.cc:8772:56),bool,(binlog.cc:9241:32),bool)(binlog.cc:8609:28),bool,(handler.cc:1772:39),bool)(transaction.cc:246:24),bool)(sql_parse.cc:4506:23),String*,(sql_prepare.cc:3646:33),String*,(sql_prepare.cc:3058:18),Prepared_statement*,(sql_prepare.cc:1914:23),COM_DATA(sql_parse.cc:2024:28),-(sql_parse.cc:1501:34),-(connection_handler_per_thread.cc:308:23),-(pfs.cc:2987:24),-,-
1 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),-(srv0srv.cc:3356:33),0x000055be69b662faDetached_thread::operator<>-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(srv0srv.cc:3356:33),-(libstdc++.so.6.0.30),-,-
1 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),-(srv0srv.cc:2084:25),0x000055be69b662faDetached_thread::operator<>-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(srv0srv.cc:2084:25),-(libstdc++.so.6.0.30),-,-
1 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),-(os0event.h:121:32),0x000055be69d6ae4estd::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(os0event.h:121:32),-(libstdc++.so.6.0.30),-,-
1 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),-(log0files_governor.cc:1372:27),0x000055be69b50baestd::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(log0files_governor.cc:1372:27),-(libstdc++.so.6.0.30),-,-
1 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),-(log0chkp.cc:1025:37),0x000055be69b50baestd::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(log0chkp.cc:1025:37),-(libstdc++.so.6.0.30),-,-
1 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),-(lock0wait.cc:1534:27),0x000055be69b662faDetached_thread::operator<>-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(lock0wait.cc:1534:27),-(libstdc++.so.6.0.30),-,-
1 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),-(buf0flu.cc:2832:35),0x000055be69b662faDetached_thread::operator<>-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(buf0flu.cc:2832:35),-(libstdc++.so.6.0.30),-,-
1 -,-,-,0x000055be69b9feb9os_event::wait_time_low-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488:27(os0event.cc:488:27),0x000055be69ca525cib_wqueue_timedwait-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/ut/ut0wqueue.cc:128:35(ut0wqueue.cc:128:35),-(fts0opt.cc:2850:57),0x000055be69e4f42estd::thread::_State_impl::_M_run-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/usr/include/c++/11/bits/invoke.h:61:36(fts0opt.cc:2850:57),-(libstdc++.so.6.0.30),-,-
1 -,-,0x000055be695b8173MYSQL_BIN_LOG::wait_for_update-/home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:99:32(thr_cond.h:99:32),long(rpl_binlog_sender.cc:821:34),Binlog_event_data_istream,(rpl_binlog_sender.cc:539:33),Binlog_event_data_istream,(rpl_binlog_sender.cc:510:46),-(rpl_binlog_sender.cc:413:20),char*,(rpl_source.cc:997:13),char*,(rpl_source.cc:924:20),COM_DATA(sql_parse.cc:2349:30),-(sql_parse.cc:1501:34),-(connection_handler_per_thread.cc:308:23),-(pfs.cc:2987:24),-,-

View File

@@ -0,0 +1,32 @@
8 syscall,io_getevents(libaio.so.1.0.1),LinuxAIOHandler::collect(os0file.cc:2383:28),LinuxAIOHandler::poll(os0file.cc:2529:14),os_aio_handler(os0file.cc:2579:29),fil_aio_wait(fil0fil.cc:7979:28),io_handler_thread(srv0start.cc:250:17),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
3 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,os_event::wait_low(os0event.cc:185:30),srv_worker_thread(os0event.h:103:67),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
2 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,xpl::Cond::timed_wait(thr_cond.h:99:32),ngs::Scheduler_dynamic::wait_if_idle_then_delete_worker(scheduler.cc:196:56),ngs::Scheduler_dynamic::worker(scheduler.cc:243:44),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 ut_delay(ut0ut.cc:109:3),void(ib0mutex.h:494:15),buf_page_io_complete(buf0buf.cc:5928:7),fil_aio_wait(fil0fil.cc:8020:29),io_handler_thread(srv0start.cc:250:17),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __sigtimedwait,signal_hand(mysqld.cc:3833:29),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __poll,Mysqld_socket_listener::listen_for_connection_event(poll2.h:39:10),mysqld_main(connection_acceptor.h:64:75),__libc_start_call_main,__libc_start_main,_start(mysqld)
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,xpl::Broker_task::wait_for_data_and_swap_queues(synchronize.h:49:38),xpl::Broker_task::loop(broker_task.cc:92:32),ngs::Server::run_task(server.cc:83:18),std::_Function_handler<(server.cc:148:57),ngs::Scheduler_dynamic::worker(std_function.h:590:9),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,Per_thread_connection_handler::block_until_new_connection(thr_cond.h:108:27),handle_connection(connection_handler_per_thread.cc:340:77),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,os_event::wait_low(os0event.cc:185:30),buf_resize_thread(os0event.h:103:67),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,os_event::wait_low(os0event.cc:185:30),buf_dump_thread(os0event.h:103:67),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,Event_queue::cond_wait(thr_cond.h:108:27),Event_queue::get_top_for_execution_if_time(event_queue.cc:556:16),Event_scheduler::run(event_scheduler.cc:577:45),event_scheduler_thread(event_scheduler.cc:280:21),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_wait,compress_gtid_table(thr_cond.h:108:27),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),srv_purge_coordinator_thread(srv0srv.cc:3356:33),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),srv_monitor_thread(os0event.h:121:32),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),srv_error_monitor_thread(srv0srv.cc:2084:25),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_write_up_to(os0event.ic:135:29),innobase_flush_logs(ha_innodb.cc:6113:27),plugin_foreach_with_mask(sql_plugin.cc:2765:29),plugin_foreach_with_mask(sql_plugin.cc:2778:34),ha_flush_logs(handler.cc:2543:7),MYSQL_BIN_LOG::fetch_and_process_flush_stage_queue(binlog.cc:8747:18),MYSQL_BIN_LOG::process_flush_stage_queue(binlog.cc:8772:56),MYSQL_BIN_LOG::ordered_commit(binlog.cc:9241:32),MYSQL_BIN_LOG::commit(binlog.cc:8609:28),ha_commit_trans(handler.cc:1772:39),trans_commit(transaction.cc:246:24),mysql_execute_command(sql_parse.cc:4506:23),Prepared_statement::execute(sql_prepare.cc:3646:33),Prepared_statement::execute_loop(sql_prepare.cc:3058:18),mysqld_stmt_execute(sql_prepare.cc:1914:23),dispatch_command(sql_parse.cc:2024:28),do_command(sql_parse.cc:1501:34),handle_connection(connection_handler_per_thread.cc:308:23),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_writer(os0event.ic:135:29),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_write_notifier(os0event.ic:135:29),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_flush_notifier(os0event.ic:135:29),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_files_governor(log0files_governor.cc:1372:27),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),log_checkpointer(log0chkp.cc:1025:37),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),lock_wait_timeout_thread(lock0wait.cc:1534:27),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),ib_wqueue_timedwait(ut0wqueue.cc:128:35),fts_optimize_thread(fts0opt.cc:2850:57),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),dict_stats_thread(os0event.h:121:32),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),Clone_persist_gtid::periodic_write(os0event.h:121:32),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,os_event::timed_wait(os0event.cc:315:31),os_event::wait_time_low(os0event.cc:488:27),buf_flush_page_coordinator_thread(buf0flu.cc:2832:35),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___futex_abstimed_wait_cancelable64,pthread_cond_timedwait,MYSQL_BIN_LOG::wait_for_update(thr_cond.h:99:32),Binlog_sender::wait_new_events(rpl_binlog_sender.cc:821:34),Binlog_sender::get_binlog_end_pos(rpl_binlog_sender.cc:539:33),Binlog_sender::send_binlog(rpl_binlog_sender.cc:510:46),Binlog_sender::run(rpl_binlog_sender.cc:413:20),mysql_binlog_send(rpl_source.cc:997:13),com_binlog_dump(rpl_source.cc:924:20),dispatch_command(sql_parse.cc:2349:30),do_command(sql_parse.cc:1501:34),handle_connection(connection_handler_per_thread.cc:308:23),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 fsync,os_file_fsync_posix(os0file.cc:2994:65),os_file_flush_func(os0file.cc:3137:28),Log_file_handle::fsync(os0file.ic:468:35),log_flush_low(log0write.cc:2443:36),log_flusher(log0write.cc:2534:22),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 fsync,os_file_fsync_posix(os0file.cc:2994:65),os_file_flush_func(os0file.cc:3137:28),Fil_shard::space_flush(os0file.ic:468:35),Fil_shard::flush_file_spaces(fil0fil.cc:8263:16),Fil_system::flush_file_spaces(fil0fil.cc:8271:29),Double_write::write_complete(buf0dblwr.cc:2622:32),buf_page_io_complete(buf0buf.cc:5976:31),fil_aio_wait(fil0fil.cc:8020:29),io_handler_thread(srv0start.cc:250:17),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 fsync,os_file_fsync_posix(os0file.cc:2994:65),os_file_flush_func(os0file.cc:3137:28),Double_write::write_dblwr_pages(os0file.ic:468:35),Double_write::write_pages(buf0dblwr.cc:2264:46),Double_write::enqueue(buf0dblwr.cc:563:16),dblwr::write(buf0dblwr.cc:678:19),buf_flush_page(buf0flu.cc:1255:29),buf_flush_page_and_try_neighbors(buf0flu.cc:1592:27),buf_flush_do_batch(buf0flu.cc:1813:41),buf_lru_manager_thread(buf0flu.cc:2272:21),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3
1 epoll_wait,epoll_dispatch(epoll.c:465:8),event_base_loop(event.c:1998:9),ngs::Server::run_task(server.cc:83:18),std::_Function_handler<(server.cc:148:57),ngs::Scheduler_dynamic::worker(std_function.h:590:9),pfs_spawn_thread(pfs.cc:2987:24),start_thread,__clone3
1 clock_nanosleep@GLIBC_2.2.5,__nanosleep,srv_master_thread(this_thread_sleep.h:82:20),void(invoke.h:61:36),??(libstdc++.so.6.0.30),start_thread,__clone3

View File

View File

@@ -0,0 +1,341 @@
[New LWP 3441805]
[New LWP 3441806]
[New LWP 3441807]
[New LWP 3441808]
[New LWP 3441809]
[New LWP 3441810]
[New LWP 3441811]
[New LWP 3441812]
[New LWP 3441813]
[New LWP 3441814]
[New LWP 3441815]
[New LWP 3441816]
[New LWP 3441817]
[New LWP 3441818]
[New LWP 3441819]
[New LWP 3441820]
[New LWP 3441821]
[New LWP 3441822]
[New LWP 3441823]
[New LWP 3441828]
[New LWP 3441829]
[New LWP 3441830]
[New LWP 3441831]
[New LWP 3441832]
[New LWP 3441833]
[New LWP 3441834]
[New LWP 3441835]
[New LWP 3441836]
[New LWP 3441874]
[New LWP 3441875]
[New LWP 3441876]
[New LWP 3441877]
[New LWP 3441878]
[New LWP 3441879]
[New LWP 3441880]
[New LWP 3441881]
[New LWP 3441883]
[New LWP 3441885]
[New LWP 3441888]
[New LWP 3442446]
[New LWP 3772082]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x00007f2763f18bcf in poll () from /lib/x86_64-linux-gnu/libc.so.6
Thread 42 (Thread 0x7f274d19f640 (LWP 3772082) "connection"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f272bd28088 in ?? ()
#2 0x0000008900000228 in ?? ()
#3 0x00007f2744699144 in ?? ()
#4 0x00007f274d19af20 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 41 (Thread 0x7f274d3a2640 (LWP 3442446) "connection"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x000055be6ac8921f in ?? ()
#2 0x000001896974f85a in ?? ()
#3 0x000055be6bb33808 in Per_thread_connection_handler::COND_thread_cache ()
#4 0x0000000000000000 in ?? ()
Thread 40 (Thread 0x7f274e9fc640 (LWP 3441888) "connection"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f27308203d8 in ?? ()
#2 0x000001894e9f9f60 in ?? ()
#3 0x000055be6bb4ad64 in mysql_bin_log ()
#4 0x00007f274e9f9610 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 39 (Thread 0x7f2731fff640 (LWP 3441885) "gtid_zip"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x000055be6b69f390 in vtable for Gtid_table_access_context ()
#2 0x000001890000480b in ?? ()
#3 0x000055be6ba8e1c8 in COND_compress_gtid_table ()
#4 0x0000000000000000 in ?? ()
Thread 38 (Thread 0x7f274ebfe640 (LWP 3441883) "xpl_accept-2"):
#0 0x00007f2763f25e2e in epoll_wait () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000001 in ?? ()
#2 0x0000000f00000001 in ?? ()
#3 0x00007f274f4d4000 in ?? ()
#4 0x000003e800000020 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 37 (Thread 0x7f2750dfb640 (LWP 3441881) "sig_handler"):
#0 0x00007f2763e4321a in sigtimedwait () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2750dfaaa0 in ?? ()
#2 0x0000000000000000 in ?? ()
Thread 36 (Thread 0x7f2750efd640 (LWP 3441880) "evt_sched"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x000000004d430001 in ?? ()
#2 0x0000018932035d00 in ?? ()
#3 0x00007f2751921038 in ?? ()
#4 0x0000000000000000 in ?? ()
Thread 35 (Thread 0x7f27333fb640 (LWP 3441879) "ib_srv_wkr-3"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f272ebda288 in ?? ()
#2 0x00000189333fa858 in ?? ()
#3 0x00007f275087d8c0 in ?? ()
#4 0x0000000000000000 in ?? ()
Thread 34 (Thread 0x7f2733bfc640 (LWP 3441878) "ib_srv_wkr-2"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f272ebda288 in ?? ()
#2 0x0000018933bfb858 in ?? ()
#3 0x00007f275087d824 in ?? ()
#4 0x0000000000000000 in ?? ()
Thread 33 (Thread 0x7f27343fd640 (LWP 3441877) "ib_srv_wkr-1"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f272ebda288 in ?? ()
#2 0x00000189343fc858 in ?? ()
#3 0x00007f275087d780 in ?? ()
#4 0x0000000000000000 in ?? ()
Thread 32 (Thread 0x7f2734bfe640 (LWP 3441876) "ib_srv_purge"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2734bfd600 in ?? ()
#2 0x00000089695fed00 in ?? ()
#3 0x00007f275087d6e0 in ?? ()
#4 0x00007f2734bfd890 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 31 (Thread 0x7f27353ff640 (LWP 3441875) "ib_clone_gtid"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000000 in ?? ()
Thread 30 (Thread 0x7f27517ff640 (LWP 3441874) "ib_buf_dump"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000000 in ?? ()
Thread 29 (Thread 0x7f2750ffe640 (LWP 3441836) "xpl_accept-1"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x000055be69ee80d0 in ?? ()
#2 0x0000018963e91122 in ?? ()
#3 0x00007f2751a1c098 in ?? ()
#4 0x0000000000000000 in ?? ()
Thread 28 (Thread 0x7f2763dff640 (LWP 3441835) "xpl_worker-2"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000003 in ?? ()
#2 0x0000018900000003 in ?? ()
#3 0x00007f276346f6b0 in ?? ()
#4 0x00007f2763dfe9d0 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 27 (Thread 0x7f27641ff640 (LWP 3441834) "xpl_worker-1"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000003 in ?? ()
#2 0x0000018900000003 in ?? ()
#3 0x00007f276346f6b0 in ?? ()
#4 0x00007f27641fe9d0 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 26 (Thread 0x7f2738ffe640 (LWP 3441833) "ib_fts_opt"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2763a5efd8 in ?? ()
#2 0x0000008969ef554e in ?? ()
#3 0x00007f274f568720 in ?? ()
#4 0x00007f2738ffd850 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 25 (Thread 0x7f27397ff640 (LWP 3441832) "ib_dict_stats"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000000 in ?? ()
Thread 24 (Thread 0x7f273cbfd640 (LWP 3441831) "ib_src_main"):
#0 0x00007f2763ee57f8 in clock_nanosleep () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000000 in ?? ()
Thread 23 (Thread 0x7f273d3fe640 (LWP 3441830) "ib_buf_resize"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f273d3fdb00 in ?? ()
#2 0x0000018969f175a6 in ?? ()
#3 0x00007f275087dc80 in ?? ()
#4 0x0000000000000000 in ?? ()
Thread 22 (Thread 0x7f273dbff640 (LWP 3441829) "ib_srv_err"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000002 in ?? ()
#2 0x00000089508537c0 in ?? ()
#3 0x00007f275087d960 in ?? ()
#4 0x00007f273dbfc880 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 21 (Thread 0x7f273c3fc640 (LWP 3441828) "ib_srv_lock_to"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000002 in ?? ()
#2 0x0000008900000000 in ?? ()
#3 0x00007f274c439180 in ?? ()
#4 0x00007f273c3fb950 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 20 (Thread 0x7f273ebf9640 (LWP 3441823) "ib_log_files_g"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2744bfb960 in ?? ()
#2 0x0000008900000000 in ?? ()
#3 0x00007f2744bfb280 in ?? ()
#4 0x00007f273ebf8a80 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 19 (Thread 0x7f273f3fa640 (LWP 3441822) "ib_log_writer"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f273f3f9760 in ?? ()
#2 0x0000008964c0b85e in ?? ()
#3 0x00007f274c439f44 in ?? ()
#4 0x00007f273f3f9a20 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 18 (Thread 0x7f273fbfb640 (LWP 3441821) "ib_log_wr_notif"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x000055be69ee80d0 in ?? ()
#2 0x0000008900000000 in ?? ()
#3 0x00007f274c439e04 in ?? ()
#4 0x00007f273fbfaa60 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 17 (Thread 0x7f27403fc640 (LWP 3441820) "ib_log_flush"):
#0 0x00007f2763f1b8ab in fsync () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000000 in ?? ()
Thread 16 (Thread 0x7f2740bfd640 (LWP 3441819) "ib_log_fl_notif"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x000055be69ee80d0 in ?? ()
#2 0x0000008900000000 in ?? ()
#3 0x00007f274c439ea0 in ?? ()
#4 0x00007f2740bfca60 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 15 (Thread 0x7f27413fe640 (LWP 3441818) "ib_log_checkpt"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000000 in ?? ()
Thread 14 (Thread 0x7f2741bff640 (LWP 3441817) "ib_srv_mon"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2741bfe7f0 in ?? ()
#2 0x0000008969ee7c6b in ?? ()
#3 0x00007f275087da00 in ?? ()
#4 0x00007f2741bfeab0 in ?? ()
#5 0x0000000000000000 in ?? ()
Thread 13 (Thread 0x7f27473f5640 (LWP 3441816) "ib_buf_lru-0"):
#0 0x00007f2763ee57f8 in clock_nanosleep () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f274e48cef0 in ?? ()
#2 0x000000004e48cf18 in ?? ()
#3 0x00007fff8e15384a in ?? ()
#4 0x00007f2750bec020 in ?? ()
#5 0x00007f27473f49f0 in ?? ()
#6 0x00000000000003e8 in ?? ()
#7 0x000055be6bb7b4a8 in srv_monitor_file_name ()
#8 0xcd7dedf1695fed00 in ?? ()
#9 0x00007f27473f4bc0 in ?? ()
#10 0x00007f2750bec020 in ?? ()
#11 0x00007f27473f4bc0 in ?? ()
#12 0x00007f27473f49f0 in ?? ()
#13 0x00000000000003e8 in ?? ()
#14 0x000055be6bb7b4a8 in srv_monitor_file_name ()
#15 0x0000000000000322 in ?? ()
#16 0x00007f2763eea677 in nanosleep () from /lib/x86_64-linux-gnu/libc.so.6
#17 0x00007f27473f4bc0 in ?? ()
#18 0x000055be69d2729d in buf_lru_manager_thread(unsigned long) ()
#19 0x000055be69c480e6 in std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run() ()
#20 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#21 0x0000000000000000 in ?? ()
Thread 12 (Thread 0x7f2747bf6640 (LWP 3441815) "ib_pg_flush_co"):
#0 0x00007f2763e91117 in __futex_abstimed_wait_cancelable64 () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x0000000000000000 in ?? ()
Thread 11 (Thread 0x7f27483f7640 (LWP 3441814) "ib_io_wr-4"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x0000000000000000 in ?? ()
Thread 10 (Thread 0x7f2748bf8640 (LWP 3441813) "ib_io_wr-3"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x0000000000000000 in ?? ()
Thread 9 (Thread 0x7f27493f9640 (LWP 3441812) "ib_io_wr-2"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x0000000000000000 in ?? ()
Thread 8 (Thread 0x7f2749bfa640 (LWP 3441811) "ib_io_wr-1"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x00007f2749bf94c0 in ?? ()
#3 0x0000000000000000 in ?? ()
Thread 7 (Thread 0x7f274a3fb640 (LWP 3441810) "ib_io_rd-4"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x0000000000000000 in ?? ()
Thread 6 (Thread 0x7f274abfc640 (LWP 3441809) "ib_io_rd-3"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x0000000000000000 in ?? ()
Thread 5 (Thread 0x7f274b3fd640 (LWP 3441808) "ib_io_rd-2"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x0000000000000000 in ?? ()
Thread 4 (Thread 0x7f274bbfe640 (LWP 3441807) "ib_io_rd-1"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x0000000000000000 in ?? ()
Thread 3 (Thread 0x7f274c3ff640 (LWP 3441806) "ib_io_log"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x0000000000000000 in ?? ()
Thread 2 (Thread 0x7f274f3ff640 (LWP 3441805) "ib_io_ibuf"):
#0 0x00007f2763f1e88d in syscall () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x0000000000000000 in ?? ()
Thread 1 (Thread 0x7f2764a89980 (LWP 3441765) "mysqld"):
#0 0x00007f2763f18bcf in poll () from /lib/x86_64-linux-gnu/libc.so.6
#1 0x000055be6ba9381c in server_operational_state ()
#2 0x00007f276343f110 in ?? ()
#3 0x0000000000000002 in ?? ()
#4 0xffffffff642ae9bd in ?? ()
#5 0x00007fff8dffdd30 in ?? ()
#6 0x000055be68a34432 in Mysqld_socket_listener::listen_for_connection_event() ()
#7 0x0000003a695fed00 in ?? ()
#8 0x000000000000003a in ?? ()
#9 0xcd7dedf1695fed00 in ?? ()
#10 0x00007f2751b7bf80 in ?? ()
#11 0x00007f2758bfad90 in ?? ()
#12 0x00007f2751b44ab0 in ?? ()
#13 0x00007fff8dffde50 in ?? ()
#14 0x00007fff8dffdd10 in ?? ()
#15 0x000055be68a2e4d4 in Per_thread_connection_handler::add_connection(Channel_info*) ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
[Inferior 1 (process 3441765) detached]
TS 562988615.1705596331 2024-01-18 19:45:31

View File

@@ -0,0 +1,14 @@
12 __futex_abstimed_wait_cancelable64(libc.so.6),::??,::??,::??,::??,??
9 syscall(libc.so.6),io_getevents(libaio.so.1),??
6 __futex_abstimed_wait_cancelable64(libc.so.6),::??,::??,::??,??
5 __futex_abstimed_wait_cancelable64(libc.so.6),??
1 syscall(libc.so.6),io_getevents(libaio.so.1),::??,??
1 sigtimedwait(libc.so.6),::??,??
1 poll(libc.so.6),server_operational_state,::??,::??,::??,::??,Mysqld_socket_listener::listen_for_connection_event,::??,::??,::??,::??,::??,::??,::??,::??,Per_thread_connection_handler::add_connection
1 __futex_abstimed_wait_cancelable64(libc.so.6),vtable,::??,COND_compress_gtid_table,??
1 __futex_abstimed_wait_cancelable64(libc.so.6),::??,::??,Per_thread_connection_handler::COND_thread_cache,??
1 __futex_abstimed_wait_cancelable64(libc.so.6),::??,::??,mysql_bin_log,::??,??
1 fsync(libc.so.6),??
1 epoll_wait(libc.so.6),::??,::??,::??,::??,??
1 clock_nanosleep(libc.so.6),::??,::??,::??,::??,::??,::??,srv_monitor_file_name,::??,::??,::??,::??,::??,::??,srv_monitor_file_name,::??,nanosleep(libc.so.6),::??,buf_lru_manager_thread,std::thread::_State_impl::_M_run,libstdc++::??(libstdc++.so.6),??
1 clock_nanosleep(libc.so.6),??

View File

@@ -0,0 +1,961 @@
[New LWP 3441805]
[New LWP 3441806]
[New LWP 3441807]
[New LWP 3441808]
[New LWP 3441809]
[New LWP 3441810]
[New LWP 3441811]
[New LWP 3441812]
[New LWP 3441813]
[New LWP 3441814]
[New LWP 3441815]
[New LWP 3441816]
[New LWP 3441817]
[New LWP 3441818]
[New LWP 3441819]
[New LWP 3441820]
[New LWP 3441821]
[New LWP 3441822]
[New LWP 3441823]
[New LWP 3441828]
[New LWP 3441829]
[New LWP 3441830]
[New LWP 3441831]
[New LWP 3441832]
[New LWP 3441833]
[New LWP 3441834]
[New LWP 3441835]
[New LWP 3441836]
[New LWP 3441874]
[New LWP 3441875]
[New LWP 3441876]
[New LWP 3441877]
[New LWP 3441878]
[New LWP 3441879]
[New LWP 3441880]
[New LWP 3441881]
[New LWP 3441883]
[New LWP 3441885]
[New LWP 3441888]
[New LWP 3442446]
[New LWP 3772082]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x00007f2763f18bcf in __GI___poll (fds=0x7f276343f110, nfds=2, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29
Thread 42 (Thread 0x7f274d19f640 (LWP 3772082) "connection"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f274e40e144) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x7f274e40e144) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f274e40e144, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f274e40e0f0, cond=0x7f274e40e118) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x7f274e40e118, mutex=0x7f274e40e0f0) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be69b9f096 in os_event::wait (this=0x7f274e40e0e0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185
#6 os_event::wait_low (this=0x7f274e40e0e0, reset_sig_count=3683) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:365
#7 0x000055be69b9f459 in os_event_wait_low (event=<optimized out>, reset_sig_count=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:589
#8 0x000055be69c5aca9 in sync_array_wait_event (arr=arr@entry=0x7f27508537c0, cell=@0x7f274d199088: 0x7f2750000020) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/sync/sync0arr.cc:338
#9 0x000055be69a95ec2 in TTASEventMutex<GenericPolicy>::wait (this=this@entry=0x7f2750bec050, filename=filename@entry=0x55be6ad35338 "/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc", line=line@entry=4936, spin=spin@entry=4) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ut0mutex.ic:222
#10 0x000055be69a9610b in TTASEventMutex<GenericPolicy>::spin_and_try_lock (line=<optimized out>, filename=<optimized out>, max_delay=<optimized out>, max_spins=60, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ib0mutex.h:541
#11 TTASEventMutex<GenericPolicy>::enter (line=<optimized out>, filename=<optimized out>, max_delay=<optimized out>, max_spins=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ib0mutex.h:442
#12 PolicyMutex<TTASEventMutex<GenericPolicy> >::enter (line=<optimized out>, name=<optimized out>, n_delay=<optimized out>, n_spins=<optimized out>, this=0x7f2750bec050) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ib0mutex.h:636
#13 mutex_enter_inline<PolicyMutex<TTASEventMutex<GenericPolicy> > > (m=0x7f2750bec050, loc=...) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ut0mutex.h:114
#14 0x000055be69d083c0 in buf_page_init_for_read (err=err@entry=0x7f274d1999ac, mode=mode@entry=132, page_id=..., page_size=..., unzip=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc:4936
#15 0x000055be69d3490b in buf_read_page_low (err=0x7f274d1999ac, sync=true, type=0, mode=132, page_id=..., page_size=..., unzip=false, trx=0x0, should_buffer=false) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0rea.cc:93
#16 0x000055be69d350bd in buf_read_page (page_id=..., page_size=..., trx=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0rea.cc:292
#17 0x000055be69cfd00c in Buf_fetch<Buf_fetch_normal>::read_page (this=this@entry=0x7f274d199eb0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc:4086
#18 0x000055be69d09200 in Buf_fetch_normal::get (this=this@entry=0x7f274d199eb0, block=@0x7f274d199e08: 0x0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc:3709
#19 0x000055be69d092e5 in Buf_fetch<Buf_fetch_normal>::single_page (this=this@entry=0x7f274d199eb0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc:4281
#20 0x000055be69d0a329 in buf_page_get_gen (page_id=..., page_size=..., rw_latch=rw_latch@entry=1, guess=0x0, mode=mode@entry=Page_fetch::NORMAL, location=..., mtr=mtr@entry=0x7f274d19b7f0, dirty_with_no_latch=false) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc:4478
#21 0x000055be69ce87f4 in btr_cur_search_to_nth_level (index=index@entry=0x7f272ebd9f08, level=<optimized out>, tuple=tuple@entry=0x7f272bd284d0, mode=mode@entry=PAGE_CUR_GE, latch_mode=<optimized out>, latch_mode@entry=1, cursor=cursor@entry=0x7f272bd282c0, has_search_latch=<optimized out>, file=<optimized out>, line=<optimized out>, mtr=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/btr/btr0cur.cc:975
#22 0x000055be69c201c2 in btr_pcur_t::open_no_init (location=..., mtr=0x7f274d19b7f0, has_search_latch=0, latch_mode=1, mode=PAGE_CUR_GE, tuple=0x7f272bd284d0, index=0x7f272ebd9f08, this=0x7f272bd282c0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/btr0pcur.h:616
#23 row_search_mvcc (buf=buf@entry=0x7f272bc88030 "\377\272\027", mode=mode@entry=PAGE_CUR_GE, prebuilt=0x7f272bd28088, match_mode=match_mode@entry=1, direction=direction@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/row/row0sel.cc:4954
#24 0x000055be69aa9b57 in ha_innobase::index_read (this=0x7f272bd26030, buf=0x7f272bc88030 "\377\272\027", key_ptr=<optimized out>, key_len=<optimized out>, find_flag=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/handler/ha_innodb.cc:10897
#25 0x000055be685b8001 in handler::index_read_map (find_flag=HA_READ_KEY_EXACT, keypart_map=1, key=0x7f272bd05330 "\337\006", buf=0x7f272bc88030 "\377\272\027", this=0x7f272bd26030) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/handler.h:5467
#26 handler::ha_index_read_map (this=0x7f272bd26030, buf=0x7f272bc88030 "\377\272\027", key=0x7f272bd05330 "\337\006", keypart_map=1, find_flag=find_flag@entry=HA_READ_KEY_EXACT) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/handler.cc:3393
#27 0x000055be6886e31e in read_const (table=0x7f272bc29220, ref=0x7f272bd04838) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_executor.cc:3662
#28 0x000055be6886e3fb in join_read_const_table (tab=tab@entry=0x7f272bd04758, pos=0x7f272bd04910) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_executor.cc:3566
#29 0x000055be6889949c in JOIN::extract_func_dependent_tables (this=this@entry=0x7f272bd04098) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_optimizer.cc:5824
#30 0x000055be688ad578 in JOIN::make_join_plan (this=0x7f272bd04098) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_optimizer.cc:5352
#31 0x000055be688af1dc in JOIN::optimize (this=0x7f272bd04098, finalize_access_paths=finalize_access_paths@entry=true) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_optimizer.cc:716
#32 0x000055be68917b81 in Query_block::optimize (this=this@entry=0x7f272bd23ed8, thd=thd@entry=0x7f272bc1f000, finalize_access_paths=finalize_access_paths@entry=true) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_select.cc:1814
#33 0x000055be6899b9b9 in Query_expression::optimize (this=this@entry=0x7f272bd23df8, thd=thd@entry=0x7f272bc1f000, materialize_destination=materialize_destination@entry=0x0, create_iterators=create_iterators@entry=true, finalize_access_paths=finalize_access_paths@entry=true) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_union.cc:1007
#34 0x000055be68916954 in Sql_cmd_dml::execute_inner (this=0x7f272bc816f8, thd=0x7f272bc1f000) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_select.cc:763
#35 0x000055be68916019 in Sql_cmd_dml::execute (this=0x7f272bc816f8, thd=0x7f272bc1f000) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_select.cc:578
#36 0x000055be688b87f7 in mysql_execute_command (thd=0x7f272bc1f000, first_level=first_level@entry=true) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:4944
#37 0x000055be688eaec0 in Prepared_statement::execute (this=0x7f272bd19600, thd=<optimized out>, expanded_query=<optimized out>, open_cursor=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_prepare.cc:3646
#38 0x000055be688efbad in Prepared_statement::execute_loop (this=this@entry=0x7f272bd19600, thd=thd@entry=0x7f272bc1f000, expanded_query=expanded_query@entry=0x7f274d19d8f0, open_cursor=open_cursor@entry=false) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_prepare.cc:3058
#39 0x000055be688f0224 in mysqld_stmt_execute (thd=thd@entry=0x7f272bc1f000, stmt=0x7f272bd19600, has_new_types=<optimized out>, execute_flags=8, parameters=parameters@entry=0x7f272bd04030) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_prepare.cc:1914
#40 0x000055be688bdced in dispatch_command (thd=0x7f272bc1f000, com_data=<optimized out>, command=COM_STMT_EXECUTE) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:2024
#41 0x000055be688bfd92 in do_command (thd=thd@entry=0x7f272bc1f000) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:1501
#42 0x000055be68a2e000 in handle_connection (arg=arg@entry=0x7f2751b7bf80) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_handler_per_thread.cc:308
#43 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345c6a0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#44 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#45 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 41 (Thread 0x7f274d3a2640 (LWP 3442446) "connection"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55be6bb33808 <Per_thread_connection_handler::COND_thread_cache+40>) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x55be6bb33808 <Per_thread_connection_handler::COND_thread_cache+40>) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55be6bb33808 <Per_thread_connection_handler::COND_thread_cache+40>, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x55be6bb33820 <Per_thread_connection_handler::LOCK_thread_cache>, cond=0x55be6bb337e0 <Per_thread_connection_handler::COND_thread_cache>) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x55be6bb337e0 <Per_thread_connection_handler::COND_thread_cache>, mutex=0x55be6bb33820 <Per_thread_connection_handler::LOCK_thread_cache>) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be68a2dba7 in native_cond_wait (mutex=0x55be6bb33820 <Per_thread_connection_handler::LOCK_thread_cache>, cond=0x55be6bb337e0 <Per_thread_connection_handler::COND_thread_cache>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:108
#6 my_cond_wait (mp=0x55be6bb33820 <Per_thread_connection_handler::LOCK_thread_cache>, cond=0x55be6bb337e0 <Per_thread_connection_handler::COND_thread_cache>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:161
#7 inline_mysql_cond_wait (mutex=0x55be6bb33820 <Per_thread_connection_handler::LOCK_thread_cache>, src_file=0x55be6ab989a0 "/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_handler_per_thread.cc", src_line=162, that=0x55be6bb337e0 <Per_thread_connection_handler::COND_thread_cache>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/mysql/psi/mysql_cond.h:198
#8 Per_thread_connection_handler::block_until_new_connection () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_handler_per_thread.cc:162
#9 0x000055be68a2de4f in handle_connection (arg=arg@entry=0x7f2751b7bbc0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_handler_per_thread.cc:340
#10 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345c4e0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#11 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#12 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 40 (Thread 0x7f274e9fc640 (LWP 3441888) "connection"):
#0 __futex_abstimed_wait_common64 (private=6734, cancel=true, abstime=0x7f274e9f9610, op=393, expected=0, futex_word=0x55be6bb4ad64 <mysql_bin_log+1156>) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=6734, abstime=0x7f274e9f9610, clockid=0, expected=0, futex_word=0x55be6bb4ad64 <mysql_bin_log+1156>) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55be6bb4ad64 <mysql_bin_log+1156>, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x7f274e9f9610, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f274e9f9610, clockid=0, mutex=0x55be6bb4acd8 <mysql_bin_log+1016>, cond=0x55be6bb4ad38 <mysql_bin_log+1112>) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x55be6bb4ad38 <mysql_bin_log+1112>, mutex=0x55be6bb4acd8 <mysql_bin_log+1016>, abstime=0x7f274e9f9610) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be695b8173 in native_cond_timedwait (abstime=0x7f274e9f9610, mutex=0x55be6bb4acd8 <mysql_bin_log+1016>, cond=0x55be6bb4ad38 <mysql_bin_log+1112>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:99
#6 my_cond_timedwait (abstime=0x7f274e9f9610, mp=0x55be6bb4acd8 <mysql_bin_log+1016>, cond=0x55be6bb4ad38 <mysql_bin_log+1112>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:148
#7 inline_mysql_cond_timedwait (src_file=0x55be6ac798a8 "/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/binlog.cc", src_line=7966, abstime=0x7f274e9f9610, mutex=0x55be6bb4acd8 <mysql_bin_log+1016>, that=0x55be6bb4ad38 <mysql_bin_log+1112>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/mysql/psi/mysql_cond.h:242
#8 MYSQL_BIN_LOG::wait_for_update (this=this@entry=0x55be6bb4a8e0 <mysql_bin_log>, timeout=...) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/binlog.cc:7966
#9 0x000055be6963f417 in Binlog_sender::wait_with_heartbeat (log_pos=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_binlog_sender.cc:821
#10 Binlog_sender::wait_new_events (this=0x7f274e9f9f60, log_pos=14956969) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_binlog_sender.cc:796
#11 0x000055be6963f7e9 in Binlog_sender::get_binlog_end_pos (this=this@entry=0x7f274e9f9f60, reader=...) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_binlog_sender.cc:539
#12 0x000055be69640cbb in Binlog_sender::send_binlog (this=this@entry=0x7f274e9f9f60, reader=..., start_pos=126, start_pos@entry=4) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_binlog_sender.cc:510
#13 0x000055be69641cb6 in Binlog_sender::run (this=this@entry=0x7f274e9f9f60) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_binlog_sender.cc:413
#14 0x000055be69638f58 in mysql_binlog_send (thd=<optimized out>, log_ident=<optimized out>, pos=<optimized out>, slave_gtid_executed=<optimized out>, flags=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_source.cc:997
#15 0x000055be6963ba5e in com_binlog_dump (thd=thd@entry=0x7f273081e000, packet=0x7f2730877021 "", packet_length=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_source.cc:924
#16 0x000055be688bdbe6 in dispatch_command (thd=0x7f273081e000, com_data=<optimized out>, command=COM_BINLOG_DUMP) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:2349
#17 0x000055be688bfd92 in do_command (thd=thd@entry=0x7f273081e000) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/sql_parse.cc:1501
#18 0x000055be68a2e000 in handle_connection (arg=arg@entry=0x7f2751b7baa0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_handler_per_thread.cc:308
#19 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345bde0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#20 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#21 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 39 (Thread 0x7f2731fff640 (LWP 3441885) "gtid_zip"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x55be6ba8e1c8 <COND_compress_gtid_table+40>) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x55be6ba8e1c8 <COND_compress_gtid_table+40>) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x55be6ba8e1c8 <COND_compress_gtid_table+40>, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x55be6ba8e1e0 <LOCK_compress_gtid_table>, cond=0x55be6ba8e1a0 <COND_compress_gtid_table>) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x55be6ba8e1a0 <COND_compress_gtid_table>, mutex=0x55be6ba8e1e0 <LOCK_compress_gtid_table>) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be69608553 in native_cond_wait (mutex=<optimized out>, cond=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:108
#6 my_cond_wait (mp=<optimized out>, cond=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:161
#7 inline_mysql_cond_wait (that=<optimized out>, mutex=<optimized out>, src_file=0x55be6ac7e060 "/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_gtid_persist.cc", src_line=776) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/mysql/psi/mysql_cond.h:198
#8 compress_gtid_table (p_thd=p_thd@entry=0x7f27519e2000) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/rpl_gtid_persist.cc:776
#9 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345bc20) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#10 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#11 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 38 (Thread 0x7f274ebfe640 (LWP 3441883) "xpl_accept-2"):
#0 0x00007f2763f25e2e in epoll_wait (epfd=15, events=events@entry=0x7f274f4d4000, maxevents=32, timeout=timeout@entry=1000) at ../sysdeps/unix/sysv/linux/epoll_wait.c:30
#1 0x000055be6a2cc925 in epoll_dispatch (base=0x7f27577fd400, tv=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/extra/libevent/libevent-2.1.11-stable/epoll.c:465
#2 0x000055be6a2c2238 in event_base_loop (base=0x7f27577fd400, flags=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/extra/libevent/libevent-2.1.11-stable/event.c:1998
#3 0x000055be6a2098b2 in ngs::Server::run_task (this=0x7f2763421420, handler=std::shared_ptr<xpl::iface::Server_task> (use count 3, weak count 0) = {...}) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:83
#4 0x000055be6a20a494 in operator() (__closure=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:148
#5 std::__invoke_impl<void, ngs::Server::start_tasks()::<lambda()>&> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#6 std::__invoke_r<void, ngs::Server::start_tasks()::<lambda()>&> (__fn=...) at /usr/include/c++/11/bits/invoke.h:111
#7 std::_Function_handler<void(), ngs::Server::start_tasks()::<lambda()> >::_M_invoke(const std::_Any_data &) (__functor=...) at /usr/include/c++/11/bits/std_function.h:290
#8 0x000055be6a27fe95 in std::function<void ()>::operator()() const (this=0x7f27324e61a0) at /usr/include/c++/11/bits/std_function.h:590
#9 ngs::Scheduler_dynamic::worker (this=0x7f276346f8b0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:234
#10 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345c320) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#11 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#12 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 37 (Thread 0x7f2750dfb640 (LWP 3441881) "sig_handler"):
#0 0x00007f2763e4321a in __GI___sigtimedwait (set=0x7f2750dfaaa0, info=0x7f2750dfab20, timeout=0x0) at ../sysdeps/unix/sysv/linux/sigtimedwait.c:61
#1 0x000055be6875631b in signal_hand (arg=arg@entry=0x0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/mysqld.cc:3833
#2 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345bc20) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#3 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#4 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 36 (Thread 0x7f2750efd640 (LWP 3441880) "evt_sched"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f2751921038) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x7f2751921038) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f2751921038, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f2751920fe0, cond=0x7f2751921010) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x7f2751921010, mutex=0x7f2751920fe0) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be68c3ee21 in native_cond_wait (mutex=0x7f2751920fe0, cond=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:108
#6 my_cond_wait (mp=0x7f2751920fe0, cond=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:161
#7 inline_mysql_cond_wait (src_file=0x55be6ac136a0 "/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/event_queue.cc", src_line=718, mutex=0x7f2751920fe0, that=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/mysql/psi/mysql_cond.h:198
#8 Event_queue::cond_wait (this=this@entry=0x7f2751920fe0, thd=thd@entry=0x7f27324e1000, abstime=abstime@entry=0x0, stage=<optimized out>, src_func=src_func@entry=0x55be6ac1383e "get_top_for_execution_if_time", src_file=src_file@entry=0x55be6ac136a0 "/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/event_queue.cc", src_line=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/event_queue.cc:718
#9 0x000055be68c3f92f in Event_queue::get_top_for_execution_if_time (this=0x7f2751920fe0, thd=thd@entry=0x7f27324e1000, event_name=event_name@entry=0x7f2750efc7e8) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/event_queue.cc:556
#10 0x000055be68c41e5b in Event_scheduler::run (this=0x7f27547fe800, thd=0x7f27324e1000) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/event_scheduler.cc:577
#11 0x000055be68c42517 in event_scheduler_thread (arg=arg@entry=0x7f2751a6eed0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/event_scheduler.cc:280
#12 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345ba60) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#13 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#14 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 35 (Thread 0x7f27333fb640 (LWP 3441879) "ib_srv_wkr-3"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f275087d8c4) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x7f275087d8c4) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f275087d8c4, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f275087d870, cond=0x7f275087d898) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x7f275087d898, mutex=0x7f275087d870) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be69b9f096 in os_event::wait (this=0x7f275087d860) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185
#6 os_event::wait_low (this=0x7f275087d860, reset_sig_count=8517, reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:365
#7 0x000055be69b9f459 in os_event_wait_low (event=<optimized out>, reset_sig_count=reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:589
#8 0x000055be69c45a9c in os_event_wait (e=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103
#9 srv_worker_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:3212
#10 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)()> (this=0x7f27519c92f0, f=@0x7f27519c92e8: 0x55be69c45900 <srv_worker_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#16 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#17 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 34 (Thread 0x7f2733bfc640 (LWP 3441878) "ib_srv_wkr-2"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f275087d824) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x7f275087d824) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f275087d824, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f275087d7d0, cond=0x7f275087d7f8) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x7f275087d7f8, mutex=0x7f275087d7d0) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be69b9f096 in os_event::wait (this=0x7f275087d7c0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185
#6 os_event::wait_low (this=0x7f275087d7c0, reset_sig_count=9478, reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:365
#7 0x000055be69b9f459 in os_event_wait_low (event=<optimized out>, reset_sig_count=reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:589
#8 0x000055be69c45a9c in os_event_wait (e=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103
#9 srv_worker_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:3212
#10 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)()> (this=0x7f27519c9250, f=@0x7f27519c9248: 0x55be69c45900 <srv_worker_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#16 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#17 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 33 (Thread 0x7f27343fd640 (LWP 3441877) "ib_srv_wkr-1"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f275087d784) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x7f275087d784) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f275087d784, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f275087d730, cond=0x7f275087d758) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x7f275087d758, mutex=0x7f275087d730) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be69b9f096 in os_event::wait (this=0x7f275087d720) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185
#6 os_event::wait_low (this=0x7f275087d720, reset_sig_count=11454, reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:365
#7 0x000055be69b9f459 in os_event_wait_low (event=<optimized out>, reset_sig_count=reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:589
#8 0x000055be69c45a9c in os_event_wait (e=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103
#9 srv_worker_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:3212
#10 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)()> (this=0x7f27519c9200, f=@0x7f27519c91f8: 0x55be69c45900 <srv_worker_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#16 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#17 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 32 (Thread 0x7f2734bfe640 (LWP 3441876) "ib_srv_purge"):
#0 __futex_abstimed_wait_common64 (private=1915880577, cancel=true, abstime=0x7f2734bfd890, op=137, expected=0, futex_word=0x7f275087d6e0) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=1915880577, abstime=0x7f2734bfd890, clockid=0, expected=0, futex_word=0x7f275087d6e0) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f275087d6e0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f2734bfd890, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f2734bfd890, clockid=1, mutex=0x7f275087d690, cond=0x7f275087d6b8) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f275087d6b8, mutex=0x7f275087d690, abstime=0x7f2734bfd890) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f2734bfd890) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=0x7f275087d680, timeout=..., reset_sig_count=reset_sig_count@entry=457) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=<optimized out>, timeout=..., timeout@entry=..., reset_sig_count=reset_sig_count@entry=457) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69c46523 in srv_purge_coordinator_suspend (rseg_history_len=<optimized out>, slot=0x7f2750875508) at /usr/include/c++/11/chrono:537
#9 srv_purge_coordinator_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:3475
#10 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)()> (this=0x7f27519c91b0, f=@0x7f27519c91a8: 0x55be69c46120 <srv_purge_coordinator_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#16 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#17 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 31 (Thread 0x7f27353ff640 (LWP 3441875) "ib_clone_gtid"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f27353fe8e0, op=137, expected=0, futex_word=0x7f2750bc9a40) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x7f27353fe8e0, clockid=21, expected=0, futex_word=0x7f2750bc9a40) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f2750bc9a40, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f27353fe8e0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f27353fe8e0, clockid=1, mutex=0x7f2750bc99f0, cond=0x7f2750bc9a18) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f2750bc9a18, mutex=0x7f2750bc99f0, abstime=0x7f27353fe8e0) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f27353fe8e0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=0x7f2750bc99e0, timeout=..., reset_sig_count=1, reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=<optimized out>, timeout=..., timeout@entry=..., reset_sig_count=reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69d6e459 in os_event_wait_time (t=..., e=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:121
#9 Clone_persist_gtid::periodic_write (this=0x7f275087f390) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/clone/clone0repl.cc:608
#10 0x000055be69d6ae4e in std::__invoke_impl<void, void (*&)(Clone_persist_gtid*), Clone_persist_gtid*&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)(Clone_persist_gtid*), Clone_persist_gtid*&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*(Clone_persist_gtid*))(Clone_persist_gtid*)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*(Clone_persist_gtid*))(Clone_persist_gtid*)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)(Clone_persist_gtid*), Clone_persist_gtid*> (f=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 std::__invoke_impl<void, Detached_thread, void (*)(Clone_persist_gtid*), Clone_persist_gtid*> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#16 std::__invoke<Detached_thread, void (*)(Clone_persist_gtid*), Clone_persist_gtid*> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#17 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(Clone_persist_gtid*), Clone_persist_gtid*> >::_M_invoke<0ul, 1ul, 2ul> (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:253
#18 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(Clone_persist_gtid*), Clone_persist_gtid*> >::operator() (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:260
#19 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(Clone_persist_gtid*), Clone_persist_gtid*> > >::_M_run (this=0x7f2736c3e980) at /usr/include/c++/11/bits/std_thread.h:211
#20 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#21 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#22 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 30 (Thread 0x7f27517ff640 (LWP 3441874) "ib_buf_dump"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f275087daa0) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x7f275087daa0) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f275087daa0, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f275087da50, cond=0x7f275087da78) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x7f275087da78, mutex=0x7f275087da50) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be69b9f096 in os_event::wait (this=0x7f275087da40) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185
#6 os_event::wait_low (this=0x7f275087da40, reset_sig_count=1, reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:365
#7 0x000055be69b9f459 in os_event_wait_low (event=<optimized out>, reset_sig_count=reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:589
#8 0x000055be69d1f343 in os_event_wait (e=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103
#9 buf_dump_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dump.cc:686
#10 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)()> (this=0x7f27519c9070, f=@0x7f27519c9068: 0x55be69d1f2d0 <buf_dump_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#16 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#17 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 29 (Thread 0x7f2750ffe640 (LWP 3441836) "xpl_accept-1"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f2751a1c098) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x7f2751a1c098) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f2751a1c098, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f2751a1c040, cond=0x7f2751a1c070) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x7f2751a1c070, mutex=0x7f2751a1c040) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be6a26affc in xpl::Synchronize::Block::wait (this=0x7f2750ffd9c0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/helper/multithread/synchronize.h:49
#6 xpl::Broker_task::wait_for_data_and_swap_queues (this=0x7f27519d2420, out_workers_queue=0x7f2750ffda50) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/mq/broker_task.cc:118
#7 0x000055be6a26b791 in xpl::Broker_task::loop (this=0x7f27519d2420) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/mq/broker_task.cc:92
#8 0x000055be6a2098b2 in ngs::Server::run_task (this=0x7f2763421420, handler=std::shared_ptr<xpl::iface::Server_task> (use count 3, weak count 0) = {...}) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:83
#9 0x000055be6a20a494 in operator() (__closure=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/server/server.cc:148
#10 std::__invoke_impl<void, ngs::Server::start_tasks()::<lambda()>&> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#11 std::__invoke_r<void, ngs::Server::start_tasks()::<lambda()>&> (__fn=...) at /usr/include/c++/11/bits/invoke.h:111
#12 std::_Function_handler<void(), ngs::Server::start_tasks()::<lambda()> >::_M_invoke(const std::_Any_data &) (__functor=...) at /usr/include/c++/11/bits/std_function.h:290
#13 0x000055be6a27fe95 in std::function<void ()>::operator()() const (this=0x7f27324e66a0) at /usr/include/c++/11/bits/std_function.h:590
#14 ngs::Scheduler_dynamic::worker (this=0x7f276346f8b0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:234
#15 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345b1a0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#16 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#17 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 28 (Thread 0x7f2763dff640 (LWP 3441835) "xpl_worker-2"):
#0 __futex_abstimed_wait_common64 (private=1662156848, cancel=true, abstime=0x7f2763dfe9d0, op=393, expected=0, futex_word=0x7f276346f6b0) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=1662156848, abstime=0x7f2763dfe9d0, clockid=1690637152, expected=0, futex_word=0x7f276346f6b0) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f276346f6b0, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x7f2763dfe9d0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f2763dfe9d0, clockid=0, mutex=0x7f276346f658, cond=0x7f276346f688) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f276346f688, mutex=0x7f276346f658, abstime=0x7f2763dfe9d0) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be6a257885 in native_cond_timedwait (abstime=0x7f2763dfe9d0, mutex=<optimized out>, cond=0x7f276346f688) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:99
#6 my_cond_timedwait (abstime=0x7f2763dfe9d0, mp=<optimized out>, cond=0x7f276346f688) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:148
#7 inline_mysql_cond_timedwait (src_file=0x55be6b11e198 "/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/helper/multithread/cond.cc", src_line=42, abstime=0x7f2763dfe9d0, mutex=<optimized out>, that=0x7f276346f688) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/mysql/psi/mysql_cond.h:242
#8 xpl::Cond::timed_wait (this=this@entry=0x7f276346f688, mutex=..., nanoseconds=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/helper/multithread/cond.cc:42
#9 0x000055be6a27e5cd in ngs::Scheduler_dynamic::wait_if_idle_then_delete_worker (this=0x7f276346f630, thread_waiting_started=@0x7f2763dfeb50: 1705596232371) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:196
#10 0x000055be6a27fb9c in ngs::Scheduler_dynamic::worker (this=0x7f276346f630) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:243
#11 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345ac60) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#12 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#13 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 27 (Thread 0x7f27641ff640 (LWP 3441834) "xpl_worker-1"):
#0 __futex_abstimed_wait_common64 (private=1662152432, cancel=true, abstime=0x7f27641fe9d0, op=393, expected=0, futex_word=0x7f276346f6b0) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=1662152432, abstime=0x7f27641fe9d0, clockid=1690637152, expected=0, futex_word=0x7f276346f6b0) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f276346f6b0, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x7f27641fe9d0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f27641fe9d0, clockid=0, mutex=0x7f276346f658, cond=0x7f276346f688) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f276346f688, mutex=0x7f276346f658, abstime=0x7f27641fe9d0) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be6a257885 in native_cond_timedwait (abstime=0x7f27641fe9d0, mutex=<optimized out>, cond=0x7f276346f688) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:99
#6 my_cond_timedwait (abstime=0x7f27641fe9d0, mp=<optimized out>, cond=0x7f276346f688) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/thr_cond.h:148
#7 inline_mysql_cond_timedwait (src_file=0x55be6b11e198 "/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/helper/multithread/cond.cc", src_line=42, abstime=0x7f27641fe9d0, mutex=<optimized out>, that=0x7f276346f688) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/include/mysql/psi/mysql_cond.h:242
#8 xpl::Cond::timed_wait (this=this@entry=0x7f276346f688, mutex=..., nanoseconds=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/helper/multithread/cond.cc:42
#9 0x000055be6a27e5cd in ngs::Scheduler_dynamic::wait_if_idle_then_delete_worker (this=0x7f276346f630, thread_waiting_started=@0x7f27641feb50: 1705596232371) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:196
#10 0x000055be6a27fb9c in ngs::Scheduler_dynamic::worker (this=0x7f276346f630) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/plugin/x/src/ngs/scheduler.cc:243
#11 0x000055be69ee42e9 in pfs_spawn_thread (arg=0x7f276345afe0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/perfschema/pfs.cc:2987
#12 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#13 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 26 (Thread 0x7f2738ffe640 (LWP 3441833) "ib_fts_opt"):
#0 __futex_abstimed_wait_common64 (private=1690408045, cancel=true, abstime=0x7f2738ffd850, op=137, expected=0, futex_word=0x7f274f568720) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=1690408045, abstime=0x7f2738ffd850, clockid=1, expected=0, futex_word=0x7f274f568720) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f274f568720, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f2738ffd850, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f2738ffd850, clockid=1, mutex=0x7f274f5686d0, cond=0x7f274f5686f8) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f274f5686f8, mutex=0x7f274f5686d0, abstime=0x7f2738ffd850) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f2738ffd850) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=0x7f274f5686c0, timeout=..., reset_sig_count=1) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=<optimized out>, timeout=..., timeout@entry=..., reset_sig_count=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69ca525c in ib_wqueue_timedwait (wq=wq@entry=0x7f273a26cf10, wait=wait@entry=...) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/ut/ut0wqueue.cc:128
#9 0x000055be69e57c9a in fts_optimize_thread (wq=<optimized out>) at /usr/include/c++/11/chrono:537
#10 0x000055be69e4f42e in std::__invoke_impl<void, void (*&)(ib_wqueue_t*), ib_wqueue_t*&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)(ib_wqueue_t*), ib_wqueue_t*&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*(ib_wqueue_t*))(ib_wqueue_t*)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*(ib_wqueue_t*))(ib_wqueue_t*)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)(ib_wqueue_t*), ib_wqueue_t*> (f=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 std::__invoke_impl<void, Detached_thread, void (*)(ib_wqueue_t*), ib_wqueue_t*> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#16 std::__invoke<Detached_thread, void (*)(ib_wqueue_t*), ib_wqueue_t*> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#17 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(ib_wqueue_t*), ib_wqueue_t*> >::_M_invoke<0ul, 1ul, 2ul> (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:253
#18 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(ib_wqueue_t*), ib_wqueue_t*> >::operator() (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:260
#19 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(ib_wqueue_t*), ib_wqueue_t*> > >::_M_run (this=0x7f273a1fd820) at /usr/include/c++/11/bits/std_thread.h:211
#20 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#21 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#22 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 25 (Thread 0x7f27397ff640 (LWP 3441832) "ib_dict_stats"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f27397fea90, op=137, expected=0, futex_word=0x7f274f5685e0) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x7f27397fea90, clockid=21, expected=0, futex_word=0x7f274f5685e0) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f274f5685e0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f27397fea90, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f27397fea90, clockid=1, mutex=0x7f274f568590, cond=0x7f274f5685b8) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f274f5685b8, mutex=0x7f274f568590, abstime=0x7f27397fea90) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f27397fea90) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=0x7f274f568580, timeout=..., reset_sig_count=23, reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=<optimized out>, timeout=..., timeout@entry=..., reset_sig_count=reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69dd5487 in os_event_wait_time (t=..., e=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:121
#9 dict_stats_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/dict/dict0stats_bg.cc:365
#10 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)()> (this=0x7f274f70a6b0, f=@0x7f274f70a6a8: 0x55be69dd5360 <dict_stats_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#16 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#17 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 24 (Thread 0x7f273cbfd640 (LWP 3441831) "ib_src_main"):
#0 0x00007f2763ee57f8 in __GI___clock_nanosleep (clock_id=clock_id@entry=0, flags=flags@entry=0, req=0x7f273cbfcae0, rem=0x7f273cbfcae0) at ../sysdeps/unix/sysv/linux/clock_nanosleep.c:78
#1 0x00007f2763eea677 in __GI___nanosleep (req=<optimized out>, rem=<optimized out>) at ../sysdeps/unix/sysv/linux/nanosleep.c:25
#2 0x000055be69c451b5 in std::this_thread::sleep_for<long, std::ratio<1l, 1l> > (__rtime=..., __rtime=...) at /usr/include/c++/11/bits/this_thread_sleep.h:82
#3 srv_master_sleep () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:2973
#4 srv_master_main_loop (slot=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:3015
#5 srv_master_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:3087
#6 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#7 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#8 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#9 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#10 Detached_thread::operator()<void (*)()> (this=0x7f273a15d5c0, f=@0x7f273a15d5b8: 0x55be69c44e50 <srv_master_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#11 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#12 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#13 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 23 (Thread 0x7f273d3fe640 (LWP 3441830) "ib_buf_resize"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f275087dc80) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x7f275087dc80) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f275087dc80, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f275087dc30, cond=0x7f275087dc58) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x7f275087dc58, mutex=0x7f275087dc30) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be69b9f096 in os_event::wait (this=0x7f275087dc20) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185
#6 os_event::wait_low (this=0x7f275087dc20, reset_sig_count=1, reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:365
#7 0x000055be69b9f459 in os_event_wait_low (event=<optimized out>, reset_sig_count=reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:589
#8 0x000055be69d06dde in os_event_wait (e=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:103
#9 buf_resize_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc:2667
#10 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)()> (this=0x7f275087c0c0, f=@0x7f275087c0b8: 0x55be69d06d90 <buf_resize_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#16 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#17 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 22 (Thread 0x7f273dbff640 (LWP 3441829) "ib_srv_err"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f273dbfc880, op=137, expected=0, futex_word=0x7f275087d960) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x7f273dbfc880, clockid=0, expected=0, futex_word=0x7f275087d960) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f275087d960, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f273dbfc880, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f273dbfc880, clockid=1, mutex=0x7f275087d910, cond=0x7f275087d938) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f275087d938, mutex=0x7f275087d910, abstime=0x7f273dbfc880) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f273dbfc880) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=0x7f275087d900, timeout=..., reset_sig_count=1) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=<optimized out>, timeout=..., timeout@entry=..., reset_sig_count=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69c3b73d in srv_error_monitor_thread () at /usr/include/c++/11/chrono:537
#9 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#10 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#11 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#12 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#13 Detached_thread::operator()<void (*)()> (this=0x7f2744bfa930, f=@0x7f2744bfa928: 0x55be69c3b620 <srv_error_monitor_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#14 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#15 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#16 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 21 (Thread 0x7f273c3fc640 (LWP 3441828) "ib_srv_lock_to"):
#0 __futex_abstimed_wait_common64 (private=6, cancel=true, abstime=0x7f273c3fb950, op=137, expected=0, futex_word=0x7f274c439180) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=6, abstime=0x7f273c3fb950, clockid=0, expected=0, futex_word=0x7f274c439180) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f274c439180, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f273c3fb950, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f273c3fb950, clockid=1, mutex=0x7f274c439130, cond=0x7f274c439158) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f274c439158, mutex=0x7f274c439130, abstime=0x7f273c3fb950) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f273c3fb950) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=this@entry=0x7f274c439120, timeout=..., reset_sig_count=reset_sig_count@entry=1) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=event@entry=0x7f274c439120, timeout=..., timeout@entry=..., reset_sig_count=reset_sig_count@entry=1) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69b2ccae in lock_wait_timeout_thread () at /usr/include/c++/11/chrono:537
#9 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#10 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#11 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#12 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#13 Detached_thread::operator()<void (*)()> (this=0x7f2744bfa8e0, f=@0x7f2744bfa8d8: 0x55be69b2c440 <lock_wait_timeout_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#14 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#15 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#16 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 20 (Thread 0x7f273ebf9640 (LWP 3441823) "ib_log_files_g"):
#0 __futex_abstimed_wait_common64 (private=1690351710, cancel=true, abstime=0x7f273ebf8a80, op=137, expected=0, futex_word=0x7f2744bfb280) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=1690351710, abstime=0x7f273ebf8a80, clockid=0, expected=0, futex_word=0x7f2744bfb280) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f2744bfb280, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f273ebf8a80, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f273ebf8a80, clockid=1, mutex=0x7f2744bfb230, cond=0x7f2744bfb258) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f2744bfb258, mutex=0x7f2744bfb230, abstime=0x7f273ebf8a80) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f273ebf8a80) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=0x7f2744bfb220, timeout=..., reset_sig_count=reset_sig_count@entry=138) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=<optimized out>, timeout=..., timeout@entry=..., reset_sig_count=reset_sig_count@entry=138) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69b47d0d in log_files_governor (log_ptr=0x7f274465ee80) at /usr/include/c++/11/chrono:537
#9 0x000055be69b50bae in std::__invoke_impl<void, void (*&)(log_t*), log_t*&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#10 std::__invoke<void (*&)(log_t*), log_t*&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#11 std::_Bind<void (*(log_t*))(log_t*)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#12 std::_Bind<void (*(log_t*))(log_t*)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#13 Detached_thread::operator()<void (*)(log_t*), log_t*> (f=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#14 std::__invoke_impl<void, Detached_thread, void (*)(log_t*), log_t*> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#15 std::__invoke<Detached_thread, void (*)(log_t*), log_t*> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::_M_invoke<0ul, 1ul, 2ul> (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:253
#17 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::operator() (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:260
#18 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run (this=0x7f2750871640) at /usr/include/c++/11/bits/std_thread.h:211
#19 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#20 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#21 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 19 (Thread 0x7f273f3fa640 (LWP 3441822) "ib_log_writer"):
#0 __futex_abstimed_wait_common64 (private=1777206613, cancel=true, abstime=0x7f273f3f9a20, op=137, expected=0, futex_word=0x7f274c439f44) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=1777206613, abstime=0x7f273f3f9a20, clockid=1061132472, expected=0, futex_word=0x7f274c439f44) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f274c439f44, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f273f3f9a20, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f273f3f9a20, clockid=1, mutex=0x7f274c439ef0, cond=0x7f274c439f18) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f274c439f18, mutex=0x7f274c439ef0, abstime=0x7f273f3f9a20) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f273f3f9a20) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=this@entry=0x7f274c439ee0, timeout=..., reset_sig_count=reset_sig_count@entry=9967) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=event@entry=0x7f274c439ee0, timeout=..., timeout@entry=..., reset_sig_count=reset_sig_count@entry=9967) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69b804e3 in os_event_wait_for<log_writer(log_t*)::<lambda(bool)> > (condition=..., timeout=..., spins_limit=<optimized out>, event=<synthetic pointer>: <optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.ic:135
#9 Log_thread_waiting::wait<log_writer(log_t*)::<lambda(bool)> > (stop_condition=..., this=<synthetic pointer>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:1256
#10 log_writer (log_ptr=0x7f274465ee80) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:2276
#11 0x000055be69b50bae in std::__invoke_impl<void, void (*&)(log_t*), log_t*&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#12 std::__invoke<void (*&)(log_t*), log_t*&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#13 std::_Bind<void (*(log_t*))(log_t*)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#14 std::_Bind<void (*(log_t*))(log_t*)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#15 Detached_thread::operator()<void (*)(log_t*), log_t*> (f=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#16 std::__invoke_impl<void, Detached_thread, void (*)(log_t*), log_t*> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#17 std::__invoke<Detached_thread, void (*)(log_t*), log_t*> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#18 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::_M_invoke<0ul, 1ul, 2ul> (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:253
#19 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::operator() (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:260
#20 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run (this=0x7f27508715e0) at /usr/include/c++/11/bits/std_thread.h:211
#21 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#22 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#23 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 18 (Thread 0x7f273fbfb640 (LWP 3441821) "ib_log_wr_notif"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f273fbfaa60, op=137, expected=0, futex_word=0x7f274c439e04) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x7f273fbfaa60, clockid=0, expected=0, futex_word=0x7f274c439e04) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f274c439e04, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f273fbfaa60, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f273fbfaa60, clockid=1, mutex=0x7f274c439db0, cond=0x7f274c439dd8) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f274c439dd8, mutex=0x7f274c439db0, abstime=0x7f273fbfaa60) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f273fbfaa60) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=this@entry=0x7f274c439da0, timeout=..., reset_sig_count=reset_sig_count@entry=13163) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=event@entry=0x7f274c439da0, timeout=..., timeout@entry=..., reset_sig_count=reset_sig_count@entry=13163) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69b8139b in os_event_wait_for<log_write_notifier(log_t*)::<lambda(bool)> > (condition=..., timeout=..., spins_limit=<optimized out>, event=<synthetic pointer>: <optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.ic:135
#9 Log_thread_waiting::wait<log_write_notifier(log_t*)::<lambda(bool)> > (stop_condition=..., this=<synthetic pointer>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:1256
#10 log_write_notifier (log_ptr=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:2703
#11 0x000055be69b50bae in std::__invoke_impl<void, void (*&)(log_t*), log_t*&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#12 std::__invoke<void (*&)(log_t*), log_t*&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#13 std::_Bind<void (*(log_t*))(log_t*)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#14 std::_Bind<void (*(log_t*))(log_t*)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#15 Detached_thread::operator()<void (*)(log_t*), log_t*> (f=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#16 std::__invoke_impl<void, Detached_thread, void (*)(log_t*), log_t*> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#17 std::__invoke<Detached_thread, void (*)(log_t*), log_t*> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#18 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::_M_invoke<0ul, 1ul, 2ul> (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:253
#19 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::operator() (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:260
#20 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run (this=0x7f2750871580) at /usr/include/c++/11/bits/std_thread.h:211
#21 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#22 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#23 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 17 (Thread 0x7f27403fc640 (LWP 3441820) "ib_log_flush"):
#0 0x00007f2763f1b8ab in __GI_fsync (fd=10) at ../sysdeps/unix/sysv/linux/fsync.c:27
#1 0x000055be69b8b83d in os_file_fsync_posix (file=10) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2994
#2 0x000055be69b8f658 in os_file_flush_func (file=file@entry=10) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:3137
#3 0x000055be69b48b64 in pfs_os_file_flush_func (file=..., file=..., src_location=...) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0file.ic:468
#4 Log_file_handle::fsync (this=0x55be6bb5ae58 <meb::redo_log_archive_tmp_block+952>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0files_io.cc:315
#5 Log_file_handle::fsync (this=this@entry=0x7f274465f350) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0files_io.cc:304
#6 0x000055be69b7afb8 in log_flush_low (log=...) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:2443
#7 0x000055be69b80b8c in operator() (wait=<optimized out>, __closure=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:2534
#8 os_event_wait_for<log_flusher(log_t*)::<lambda(bool)> > (condition=..., timeout=..., spins_limit=<optimized out>, event=<synthetic pointer>: <optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.ic:83
#9 Log_thread_waiting::wait<log_flusher(log_t*)::<lambda(bool)> > (stop_condition=..., this=<synthetic pointer>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:1256
#10 log_flusher (log_ptr=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:2602
#11 0x000055be69b50bae in std::__invoke_impl<void, void (*&)(log_t*), log_t*&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#12 std::__invoke<void (*&)(log_t*), log_t*&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#13 std::_Bind<void (*(log_t*))(log_t*)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#14 std::_Bind<void (*(log_t*))(log_t*)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#15 Detached_thread::operator()<void (*)(log_t*), log_t*> (f=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#16 std::__invoke_impl<void, Detached_thread, void (*)(log_t*), log_t*> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#17 std::__invoke<Detached_thread, void (*)(log_t*), log_t*> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#18 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::_M_invoke<0ul, 1ul, 2ul> (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:253
#19 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::operator() (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:260
#20 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run (this=0x7f2750871520) at /usr/include/c++/11/bits/std_thread.h:211
#21 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#22 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#23 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 16 (Thread 0x7f2740bfd640 (LWP 3441819) "ib_log_fl_notif"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f2740bfca60, op=137, expected=0, futex_word=0x7f274c439ea4) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x7f2740bfca60, clockid=0, expected=0, futex_word=0x7f274c439ea4) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f274c439ea4, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f2740bfca60, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f2740bfca60, clockid=1, mutex=0x7f274c439e50, cond=0x7f274c439e78) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f274c439e78, mutex=0x7f274c439e50, abstime=0x7f2740bfca60) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f2740bfca60) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=this@entry=0x7f274c439e40, timeout=..., reset_sig_count=reset_sig_count@entry=14918) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=event@entry=0x7f274c439e40, timeout=..., timeout@entry=..., reset_sig_count=reset_sig_count@entry=14918) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69b819eb in os_event_wait_for<log_flush_notifier(log_t*)::<lambda(bool)> > (condition=..., timeout=..., spins_limit=<optimized out>, event=<synthetic pointer>: <optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.ic:135
#9 Log_thread_waiting::wait<log_flush_notifier(log_t*)::<lambda(bool)> > (stop_condition=..., this=<synthetic pointer>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:1256
#10 log_flush_notifier (log_ptr=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0write.cc:2825
#11 0x000055be69b50bae in std::__invoke_impl<void, void (*&)(log_t*), log_t*&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#12 std::__invoke<void (*&)(log_t*), log_t*&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#13 std::_Bind<void (*(log_t*))(log_t*)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#14 std::_Bind<void (*(log_t*))(log_t*)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#15 Detached_thread::operator()<void (*)(log_t*), log_t*> (f=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#16 std::__invoke_impl<void, Detached_thread, void (*)(log_t*), log_t*> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#17 std::__invoke<Detached_thread, void (*)(log_t*), log_t*> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#18 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::_M_invoke<0ul, 1ul, 2ul> (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:253
#19 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::operator() (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:260
#20 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run (this=0x7f27508714c0) at /usr/include/c++/11/bits/std_thread.h:211
#21 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#22 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#23 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 15 (Thread 0x7f27413fe640 (LWP 3441818) "ib_log_checkpt"):
#0 __futex_abstimed_wait_common64 (private=1666429440, cancel=true, abstime=0x7f27413fda80, op=137, expected=0, futex_word=0x7f274c439cc0) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=1666429440, abstime=0x7f27413fda80, clockid=1767894272, expected=0, futex_word=0x7f274c439cc0) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f274c439cc0, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f27413fda80, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f27413fda80, clockid=1, mutex=0x7f274c439c70, cond=0x7f274c439c98) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f274c439c98, mutex=0x7f274c439c70, abstime=0x7f27413fda80) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f27413fda80) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=0x7f274c439c60, timeout=..., reset_sig_count=reset_sig_count@entry=7) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=<optimized out>, timeout=..., reset_sig_count=reset_sig_count@entry=7) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69b32bac in log_checkpointer (log_ptr=0x7f274465ee80) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/log/log0chkp.cc:1025
#9 0x000055be69b50bae in std::__invoke_impl<void, void (*&)(log_t*), log_t*&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#10 std::__invoke<void (*&)(log_t*), log_t*&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#11 std::_Bind<void (*(log_t*))(log_t*)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#12 std::_Bind<void (*(log_t*))(log_t*)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#13 Detached_thread::operator()<void (*)(log_t*), log_t*> (f=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#14 std::__invoke_impl<void, Detached_thread, void (*)(log_t*), log_t*> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#15 std::__invoke<Detached_thread, void (*)(log_t*), log_t*> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::_M_invoke<0ul, 1ul, 2ul> (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:253
#17 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> >::operator() (this=<optimized out>) at /usr/include/c++/11/bits/std_thread.h:260
#18 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(log_t*), log_t*> > >::_M_run (this=0x7f2750871460) at /usr/include/c++/11/bits/std_thread.h:211
#19 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#20 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#21 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 14 (Thread 0x7f2741bff640 (LWP 3441817) "ib_srv_mon"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x7f2741bfeab0, op=137, expected=0, futex_word=0x7f275087da00) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x7f2741bfeab0, clockid=0, expected=0, futex_word=0x7f275087da00) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f275087da00, expected=expected@entry=0, clockid=clockid@entry=1, abstime=abstime@entry=0x7f2741bfeab0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93e9b in __pthread_cond_wait_common (abstime=0x7f2741bfeab0, clockid=1, mutex=0x7f275087d9b0, cond=0x7f275087d9d8) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_timedwait64 (cond=0x7f275087d9d8, mutex=0x7f275087d9b0, abstime=0x7f2741bfeab0) at ./nptl/pthread_cond_wait.c:652
#5 0x000055be69b9fd1a in os_event::timed_wait (this=<optimized out>, abstime=0x7f2741bfeab0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/sync0types.h:556
#6 0x000055be69b9feb9 in os_event::wait_time_low (this=0x7f275087d9a0, timeout=..., reset_sig_count=1, reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:488
#7 0x000055be69b9ff99 in os_event_wait_time_low (event=<optimized out>, timeout=..., timeout@entry=..., reset_sig_count=reset_sig_count@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:575
#8 0x000055be69c447e0 in os_event_wait_time (t=..., e=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0event.h:121
#9 srv_monitor_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0srv.cc:1969
#10 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#11 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#12 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#13 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#14 Detached_thread::operator()<void (*)()> (this=0x7f2744bfa390, f=@0x7f2744bfa388: 0x55be69c44780 <srv_monitor_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#15 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#16 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#17 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 13 (Thread 0x7f27473f5640 (LWP 3441816) "ib_buf_lru-0"):
#0 __futex_abstimed_wait_common64 (private=0, cancel=true, abstime=0x0, op=393, expected=0, futex_word=0x7f274e40e144) at ./nptl/futex-internal.c:57
#1 __futex_abstimed_wait_common (cancel=true, private=0, abstime=0x0, clockid=0, expected=0, futex_word=0x7f274e40e144) at ./nptl/futex-internal.c:87
#2 __GI___futex_abstimed_wait_cancelable64 (futex_word=futex_word@entry=0x7f274e40e144, expected=expected@entry=0, clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at ./nptl/futex-internal.c:139
#3 0x00007f2763e93a41 in __pthread_cond_wait_common (abstime=0x0, clockid=0, mutex=0x7f274e40e0f0, cond=0x7f274e40e118) at ./nptl/pthread_cond_wait.c:503
#4 ___pthread_cond_wait (cond=0x7f274e40e118, mutex=0x7f274e40e0f0) at ./nptl/pthread_cond_wait.c:627
#5 0x000055be69b9f096 in os_event::wait (this=0x7f274e40e0e0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:185
#6 os_event::wait_low (this=0x7f274e40e0e0, reset_sig_count=3683) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:365
#7 0x000055be69b9f459 in os_event_wait_low (event=<optimized out>, reset_sig_count=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0event.cc:589
#8 0x000055be69c5aca9 in sync_array_wait_event (arr=arr@entry=0x7f27508537c0, cell=@0x7f27473f47a8: 0x7f27500000b0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/sync/sync0arr.cc:338
#9 0x000055be69a95ec2 in TTASEventMutex<GenericPolicy>::wait (this=this@entry=0x7f2750bec050, filename=filename@entry=0x55be6ad37d10 "/mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc", line=line@entry=1677, spin=spin@entry=4) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ut0mutex.ic:222
#10 0x000055be69a9610b in TTASEventMutex<GenericPolicy>::spin_and_try_lock (line=<optimized out>, filename=<optimized out>, max_delay=<optimized out>, max_spins=60, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ib0mutex.h:541
#11 TTASEventMutex<GenericPolicy>::enter (line=<optimized out>, filename=<optimized out>, max_delay=<optimized out>, max_spins=<optimized out>, this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ib0mutex.h:442
#12 PolicyMutex<TTASEventMutex<GenericPolicy> >::enter (line=<optimized out>, name=<optimized out>, n_delay=<optimized out>, n_spins=<optimized out>, this=0x7f2750bec050) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ib0mutex.h:636
#13 mutex_enter_inline<PolicyMutex<TTASEventMutex<GenericPolicy> > > (m=0x7f2750bec050, loc=...) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/ut0mutex.h:114
#14 0x000055be69d26b1f in buf_flush_LRU_list_batch (max=<optimized out>, buf_pool=0x7f2750bec020) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1813
#15 buf_do_LRU_batch (max=<optimized out>, buf_pool=0x7f2750bec020) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1874
#16 buf_flush_batch (lsn_limit=<optimized out>, min_n=<optimized out>, flush_type=<optimized out>, buf_pool=0x7f2750bec020) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1984
#17 buf_flush_do_batch (buf_pool=buf_pool@entry=0x7f2750bec020, type=type@entry=BUF_FLUSH_LRU, min_n=<optimized out>, lsn_limit=lsn_limit@entry=0, n_processed=n_processed@entry=0x7f27473f49f0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:2093
#18 0x000055be69d27372 in buf_flush_LRU_list (buf_pool=0x7f2750bec020) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:2272
#19 buf_lru_manager_thread (buf_pool_instance=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:3763
#20 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#21 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#22 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#23 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#24 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750871230: 0x55be69d26fc0 <buf_lru_manager_thread(size_t)>, this=0x7f2750871238) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#25 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#26 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#27 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750871228) at /usr/include/c++/11/bits/std_thread.h:253
#28 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750871228) at /usr/include/c++/11/bits/std_thread.h:260
#29 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750871220) at /usr/include/c++/11/bits/std_thread.h:211
#30 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#31 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#32 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 12 (Thread 0x7f2747bf6640 (LWP 3441815) "ib_pg_flush_co"):
#0 __memmove_avx_unaligned_erms () at ../sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S:708
#1 0x000055be69d1c694 in memcpy (__len=<optimized out>, __src=<optimized out>, __dest=<optimized out>) at /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29
#2 dblwr::Buffer::append (n_bytes=<optimized out>, ptr=<optimized out>, this=0x7f2750859030) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/buf0dblwr.h:94
#3 Double_write::enqueue (this=0x7f2750858fe0, flush_type=<optimized out>, bpage=<optimized out>, e_block=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:621
#4 0x000055be69d1cb92 in Double_write::submit (e_block=0x0, bpage=0x7f274d3db410, flush_type=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:678
#5 Double_write::submit (e_block=0x0, bpage=0x7f274d3db410, flush_type=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:671
#6 dblwr::write (flush_type=flush_type@entry=BUF_FLUSH_LIST, bpage=bpage@entry=0x7f274d3db410, sync=sync@entry=false) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:2560
#7 0x000055be69d22eb7 in buf_flush_write_block_low (sync=<optimized out>, flush_type=<optimized out>, bpage=0x7f274d3db410) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1255
#8 buf_flush_page (buf_pool=buf_pool@entry=0x7f2750bec020, bpage=bpage@entry=0x7f274d3db410, flush_type=flush_type@entry=BUF_FLUSH_LIST, sync=sync@entry=false) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1393
#9 0x000055be69d258c3 in buf_flush_try_neighbors (n_to_flush=<optimized out>, n_flushed=<optimized out>, flush_type=<optimized out>, page_id=<synthetic pointer>...) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1592
#10 buf_flush_page_and_try_neighbors (bpage=<optimized out>, flush_type=<optimized out>, n_to_flush=<optimized out>, count=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1674
#11 0x000055be69d2606b in buf_do_flush_list_batch (lsn_limit=9223372036854775807, min_n=37, buf_pool=0x7f2750bec020) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1924
#12 buf_flush_batch (lsn_limit=9223372036854775807, min_n=37, flush_type=<optimized out>, buf_pool=0x7f2750bec020) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:1988
#13 buf_flush_do_batch (buf_pool=buf_pool@entry=0x7f2750bec020, type=type@entry=BUF_FLUSH_LIST, min_n=37, lsn_limit=<optimized out>, n_processed=n_processed@entry=0x7f27508711f0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:2093
#14 0x000055be69d2774e in pc_flush_slot () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:3010
#15 0x000055be69d2875d in buf_flush_page_coordinator_thread () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:3399
#16 0x000055be69b662fa in std::__invoke_impl<void, void (*&)()> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#17 std::__invoke<void (*&)()> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#18 std::_Bind<void (*())()>::__call<void>(std::tuple<>&&, std::_Index_tuple<>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#19 std::_Bind<void (*())()>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#20 Detached_thread::operator()<void (*)()> (this=0x7f275087c1b0, f=@0x7f275087c1a8: 0x55be69d277b0 <buf_flush_page_coordinator_thread()>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#21 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#22 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#23 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 11 (Thread 0x7f27483f7640 (LWP 3441814) "ib_io_wr-4"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect (this=0x7f27483f6900) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383
#3 0x000055be69b96712 in LinuxAIOHandler::poll (this=0x7f27483f6900, m1=0x7f27483f6978, m2=0x7f27483f6970, request=0x7f27483f6980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529
#4 0x000055be69b99874 in os_aio_linux_handler (request=0x7f27483f6980, m2=0x7f27483f6970, m1=0x7f27483f6978, global_segment=9) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579
#5 os_aio_handler (segment=9, m1=0x7f27483f6978, m2=0x7f27483f6970, request=0x7f27483f6980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:6299
#6 0x000055be69e0f9cd in fil_aio_wait (segment=segment@entry=9) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979
#7 0x000055be69c47aa8 in io_handler_thread (segment=9) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#8 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#9 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#10 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#11 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#12 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750871170: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f2750871178) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#13 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#14 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#15 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750871168) at /usr/include/c++/11/bits/std_thread.h:253
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750871168) at /usr/include/c++/11/bits/std_thread.h:260
#17 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750871160) at /usr/include/c++/11/bits/std_thread.h:211
#18 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#19 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#20 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 10 (Thread 0x7f2748bf8640 (LWP 3441813) "ib_io_wr-3"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect (this=0x7f2748bf7900) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383
#3 0x000055be69b96712 in LinuxAIOHandler::poll (this=0x7f2748bf7900, m1=0x7f2748bf7978, m2=0x7f2748bf7970, request=0x7f2748bf7980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529
#4 0x000055be69b99874 in os_aio_linux_handler (request=0x7f2748bf7980, m2=0x7f2748bf7970, m1=0x7f2748bf7978, global_segment=8) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579
#5 os_aio_handler (segment=8, m1=0x7f2748bf7978, m2=0x7f2748bf7970, request=0x7f2748bf7980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:6299
#6 0x000055be69e0f9cd in fil_aio_wait (segment=segment@entry=8) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979
#7 0x000055be69c47aa8 in io_handler_thread (segment=8) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#8 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#9 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#10 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#11 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#12 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750871110: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f2750871118) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#13 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#14 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#15 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750871108) at /usr/include/c++/11/bits/std_thread.h:253
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750871108) at /usr/include/c++/11/bits/std_thread.h:260
#17 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750871100) at /usr/include/c++/11/bits/std_thread.h:211
#18 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#19 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#20 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 9 (Thread 0x7f27493f9640 (LWP 3441812) "ib_io_wr-2"):
#0 0x00007f2763f1b8ab in __GI_fsync (fd=11) at ../sysdeps/unix/sysv/linux/fsync.c:27
#1 0x000055be69b8b83d in os_file_fsync_posix (file=11) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2994
#2 0x000055be69b8f658 in os_file_flush_func (file=file@entry=11) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:3137
#3 0x000055be69e113f3 in pfs_os_file_flush_func (file=..., file=..., src_location=...) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0file.ic:468
#4 Fil_shard::space_flush (this=this@entry=0x7f2750bd5920, space_id=space_id@entry=4294967278) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:8200
#5 0x000055be69e11791 in Fil_shard::flush_file_spaces (this=0x7f2750bd5920) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:8263
#6 0x000055be69e118bc in Fil_system::flush_file_spaces (this=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:8271
#7 0x000055be69e12200 in fil_flush_file_spaces () at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:8275
#8 0x000055be69d0e48c in Double_write::write_complete (bpage=bpage@entry=0x7f274d3f5210, flush_type=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:2622
#9 0x000055be69d0e55d in dblwr::write_complete (bpage=bpage@entry=0x7f274d3f5210, flush_type=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0dblwr.cc:2638
#10 0x000055be69d29c75 in buf_flush_write_complete (bpage=bpage@entry=0x7f274d3f5210) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0flu.cc:945
#11 0x000055be69d0b568 in buf_page_io_complete (bpage=0x7f274d3f5210, evict=<optimized out>, evict@entry=false) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/buf/buf0buf.cc:5976
#12 0x000055be69e0fb06 in fil_aio_wait (segment=segment@entry=7) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:8020
#13 0x000055be69c47aa8 in io_handler_thread (segment=7) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#14 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#15 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#16 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#17 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#18 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f27508710b0: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f27508710b8) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#19 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#20 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#21 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f27508710a8) at /usr/include/c++/11/bits/std_thread.h:253
#22 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f27508710a8) at /usr/include/c++/11/bits/std_thread.h:260
#23 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f27508710a0) at /usr/include/c++/11/bits/std_thread.h:211
#24 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#25 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#26 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 8 (Thread 0x7f2749bfa640 (LWP 3441811) "ib_io_wr-1"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect (this=0x7f2749bf9900) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383
#3 0x000055be69b96712 in LinuxAIOHandler::poll (this=0x7f2749bf9900, m1=0x7f2749bf9978, m2=0x7f2749bf9970, request=0x7f2749bf9980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529
#4 0x000055be69b99874 in os_aio_linux_handler (request=0x7f2749bf9980, m2=0x7f2749bf9970, m1=0x7f2749bf9978, global_segment=6) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579
#5 os_aio_handler (segment=6, m1=0x7f2749bf9978, m2=0x7f2749bf9970, request=0x7f2749bf9980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:6299
#6 0x000055be69e0f9cd in fil_aio_wait (segment=segment@entry=6) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979
#7 0x000055be69c47aa8 in io_handler_thread (segment=6) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#8 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#9 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#10 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#11 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#12 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750871050: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f2750871058) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#13 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#14 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#15 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750871048) at /usr/include/c++/11/bits/std_thread.h:253
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750871048) at /usr/include/c++/11/bits/std_thread.h:260
#17 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750871040) at /usr/include/c++/11/bits/std_thread.h:211
#18 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#19 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#20 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 7 (Thread 0x7f274a3fb640 (LWP 3441810) "ib_io_rd-4"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect (this=0x7f274a3fa900) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383
#3 0x000055be69b96712 in LinuxAIOHandler::poll (this=0x7f274a3fa900, m1=0x7f274a3fa978, m2=0x7f274a3fa970, request=0x7f274a3fa980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529
#4 0x000055be69b99874 in os_aio_linux_handler (request=0x7f274a3fa980, m2=0x7f274a3fa970, m1=0x7f274a3fa978, global_segment=5) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579
#5 os_aio_handler (segment=5, m1=0x7f274a3fa978, m2=0x7f274a3fa970, request=0x7f274a3fa980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:6299
#6 0x000055be69e0f9cd in fil_aio_wait (segment=segment@entry=5) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979
#7 0x000055be69c47aa8 in io_handler_thread (segment=5) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#8 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#9 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#10 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#11 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#12 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750870ff0: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f2750870ff8) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#13 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#14 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#15 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750870fe8) at /usr/include/c++/11/bits/std_thread.h:253
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750870fe8) at /usr/include/c++/11/bits/std_thread.h:260
#17 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750870fe0) at /usr/include/c++/11/bits/std_thread.h:211
#18 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#19 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#20 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 6 (Thread 0x7f274abfc640 (LWP 3441809) "ib_io_rd-3"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect (this=0x7f274abfb900) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383
#3 0x000055be69b96712 in LinuxAIOHandler::poll (this=0x7f274abfb900, m1=0x7f274abfb978, m2=0x7f274abfb970, request=0x7f274abfb980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529
#4 0x000055be69b99874 in os_aio_linux_handler (request=0x7f274abfb980, m2=0x7f274abfb970, m1=0x7f274abfb978, global_segment=4) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579
#5 os_aio_handler (segment=4, m1=0x7f274abfb978, m2=0x7f274abfb970, request=0x7f274abfb980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:6299
#6 0x000055be69e0f9cd in fil_aio_wait (segment=segment@entry=4) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979
#7 0x000055be69c47aa8 in io_handler_thread (segment=4) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#8 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#9 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#10 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#11 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#12 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750870f90: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f2750870f98) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#13 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#14 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#15 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750870f88) at /usr/include/c++/11/bits/std_thread.h:253
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750870f88) at /usr/include/c++/11/bits/std_thread.h:260
#17 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750870f80) at /usr/include/c++/11/bits/std_thread.h:211
#18 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#19 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#20 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 5 (Thread 0x7f274b3fd640 (LWP 3441808) "ib_io_rd-2"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect (this=0x7f274b3fc900) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383
#3 0x000055be69b96712 in LinuxAIOHandler::poll (this=0x7f274b3fc900, m1=0x7f274b3fc978, m2=0x7f274b3fc970, request=0x7f274b3fc980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529
#4 0x000055be69b99874 in os_aio_linux_handler (request=0x7f274b3fc980, m2=0x7f274b3fc970, m1=0x7f274b3fc978, global_segment=3) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579
#5 os_aio_handler (segment=3, m1=0x7f274b3fc978, m2=0x7f274b3fc970, request=0x7f274b3fc980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:6299
#6 0x000055be69e0f9cd in fil_aio_wait (segment=segment@entry=3) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979
#7 0x000055be69c47aa8 in io_handler_thread (segment=3) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#8 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#9 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#10 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#11 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#12 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750870f30: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f2750870f38) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#13 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#14 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#15 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750870f28) at /usr/include/c++/11/bits/std_thread.h:253
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750870f28) at /usr/include/c++/11/bits/std_thread.h:260
#17 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750870f20) at /usr/include/c++/11/bits/std_thread.h:211
#18 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#19 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#20 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 4 (Thread 0x7f274bbfe640 (LWP 3441807) "ib_io_rd-1"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect (this=0x7f274bbfd900) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383
#3 0x000055be69b96712 in LinuxAIOHandler::poll (this=0x7f274bbfd900, m1=0x7f274bbfd978, m2=0x7f274bbfd970, request=0x7f274bbfd980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529
#4 0x000055be69b99874 in os_aio_linux_handler (request=0x7f274bbfd980, m2=0x7f274bbfd970, m1=0x7f274bbfd978, global_segment=2) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579
#5 os_aio_handler (segment=2, m1=0x7f274bbfd978, m2=0x7f274bbfd970, request=0x7f274bbfd980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:6299
#6 0x000055be69e0f9cd in fil_aio_wait (segment=segment@entry=2) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979
#7 0x000055be69c47aa8 in io_handler_thread (segment=2) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#8 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#9 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#10 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#11 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#12 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750870ed0: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f2750870ed8) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#13 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#14 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#15 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750870ec8) at /usr/include/c++/11/bits/std_thread.h:253
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750870ec8) at /usr/include/c++/11/bits/std_thread.h:260
#17 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750870ec0) at /usr/include/c++/11/bits/std_thread.h:211
#18 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#19 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#20 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 3 (Thread 0x7f274c3ff640 (LWP 3441806) "ib_io_log"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect (this=0x7f274c3fe900) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383
#3 0x000055be69b96712 in LinuxAIOHandler::poll (this=0x7f274c3fe900, m1=0x7f274c3fe978, m2=0x7f274c3fe970, request=0x7f274c3fe980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529
#4 0x000055be69b99874 in os_aio_linux_handler (request=0x7f274c3fe980, m2=0x7f274c3fe970, m1=0x7f274c3fe978, global_segment=1) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579
#5 os_aio_handler (segment=1, m1=0x7f274c3fe978, m2=0x7f274c3fe970, request=0x7f274c3fe980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:6299
#6 0x000055be69e0f9cd in fil_aio_wait (segment=segment@entry=1) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979
#7 0x000055be69c47aa8 in io_handler_thread (segment=1) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#8 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#9 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#10 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#11 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#12 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750870e70: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f2750870e78) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#13 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#14 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#15 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750870e68) at /usr/include/c++/11/bits/std_thread.h:253
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750870e68) at /usr/include/c++/11/bits/std_thread.h:260
#17 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750870e60) at /usr/include/c++/11/bits/std_thread.h:211
#18 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#19 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#20 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 2 (Thread 0x7f274f3ff640 (LWP 3441805) "ib_io_ibuf"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x00007f2764a91279 in io_getevents () from /lib/x86_64-linux-gnu/libaio.so.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect (this=0x7f274f3fe900) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2383
#3 0x000055be69b96712 in LinuxAIOHandler::poll (this=0x7f274f3fe900, m1=0x7f274f3fe978, m2=0x7f274f3fe970, request=0x7f274f3fe980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2529
#4 0x000055be69b99874 in os_aio_linux_handler (request=0x7f274f3fe980, m2=0x7f274f3fe970, m1=0x7f274f3fe978, global_segment=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:2579
#5 os_aio_handler (segment=0, m1=0x7f274f3fe978, m2=0x7f274f3fe970, request=0x7f274f3fe980) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/os/os0file.cc:6299
#6 0x000055be69e0f9cd in fil_aio_wait (segment=segment@entry=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/fil/fil0fil.cc:7979
#7 0x000055be69c47aa8 in io_handler_thread (segment=0) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/srv/srv0start.cc:250
#8 0x000055be69c480e6 in std::__invoke_impl<void, void (*&)(unsigned long), unsigned long&> (__f=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:60
#9 std::__invoke<void (*&)(unsigned long), unsigned long&> (__fn=<synthetic pointer>: <optimized out>) at /usr/include/c++/11/bits/invoke.h:96
#10 std::_Bind<void (*(unsigned long))(unsigned long)>::__call<void, , 0ul>(std::tuple<>&&, std::_Index_tuple<0ul>) (__args=..., this=<synthetic pointer>) at /usr/include/c++/11/functional:420
#11 std::_Bind<void (*(unsigned long))(unsigned long)>::operator()<, void>() (this=<synthetic pointer>) at /usr/include/c++/11/functional:503
#12 Detached_thread::operator()<void (*)(unsigned long), unsigned long> (f=@0x7f2750870e10: 0x55be69c47a30 <io_handler_thread(ulint)>, this=0x7f2750870e18) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/storage/innobase/include/os0thread-create.h:194
#13 std::__invoke_impl<void, Detached_thread, void (*)(unsigned long), unsigned long> (__f=...) at /usr/include/c++/11/bits/invoke.h:61
#14 std::__invoke<Detached_thread, void (*)(unsigned long), unsigned long> (__fn=...) at /usr/include/c++/11/bits/invoke.h:96
#15 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::_M_invoke<0ul, 1ul, 2ul> (this=0x7f2750870e08) at /usr/include/c++/11/bits/std_thread.h:253
#16 std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> >::operator() (this=0x7f2750870e08) at /usr/include/c++/11/bits/std_thread.h:260
#17 std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread, void (*)(unsigned long), unsigned long> > >::_M_run (this=0x7f2750870e00) at /usr/include/c++/11/bits/std_thread.h:211
#18 0x00007f27642dc253 in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6
#19 0x00007f2763e94ac3 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
#20 0x00007f2763f26850 in clone3 () at ../sysdeps/unix/sysv/linux/x86_64/clone3.S:81
Thread 1 (Thread 0x7f2764a89980 (LWP 3441765) "mysqld"):
#0 0x00007f2763f18bcf in __GI___poll (fds=0x7f276343f110, nfds=2, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29
#1 0x000055be68a34432 in poll (__timeout=-1, __nfds=<optimized out>, __fds=<optimized out>) at /usr/include/x86_64-linux-gnu/bits/poll2.h:39
#2 Mysqld_socket_listener::listen_for_connection_event (this=0x7f2752fb7d00) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/socket_connection.cc:1347
#3 0x000055be68770708 in Connection_acceptor<Mysqld_socket_listener>::connection_event_loop (this=0x7f2763440080) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/conn_handler/connection_acceptor.h:64
#4 mysqld_main (argc=<optimized out>, argv=<optimized out>) at /mnt/jenkins/workspace/ps8.0-autobuild-RELEASE/test/percona-server-8.0.32-24/sql/mysqld.cc:8570
#5 0x00007f2763e29d90 in __libc_start_call_main (main=main@entry=0x55be685624c0 <main(int, char**)>, argc=argc@entry=9, argv=argv@entry=0x7fff8dffe7b8) at ../sysdeps/nptl/libc_start_call_main.h:58
#6 0x00007f2763e29e40 in __libc_start_main_impl (main=0x55be685624c0 <main(int, char**)>, argc=9, argv=0x7fff8dffe7b8, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fff8dffe7a8) at ../csu/libc-start.c:392
#7 0x000055be6859cfb5 in _start ()
[Inferior 1 (process 3441765) detached]
TS 218002183.1705596301 2024-01-18 19:45:01

View File

@@ -0,0 +1,31 @@
9 syscall,io_getevents(libaio.so.1),LinuxAIOHandler::collect(os0file.cc:2383),LinuxAIOHandler::poll(os0file.cc:2529),os_aio_linux_handler(os0file.cc:2579),os_aio_handler(os0file.cc:6299),fil_aio_wait(fil0fil.cc:7979),io_handler_thread(srv0start.cc:250),void(srv0start.cc:250),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
3 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_wait,os_event::wait(os0event.cc:185),os_event::wait_low(os0event.cc:365),os_event_wait_low(os0event.cc:589),os_event_wait(os0event.h:103),srv_worker_thread(srv0srv.cc:3212),void(srv0srv.cc:3212),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
2 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,native_cond_timedwait(thr_cond.h:99),my_cond_timedwait(thr_cond.h:148),inline_mysql_cond_timedwait(mysql_cond.h:242),xpl::Cond::timed_wait(cond.cc:42),ngs::Scheduler_dynamic::wait_if_idle_then_delete_worker(scheduler.cc:196),ngs::Scheduler_dynamic::worker(scheduler.cc:243),pfs_spawn_thread(pfs.cc:2987),start_thread,clone3
1 __memmove_avx_unaligned_erms,memcpy(string_fortified.h:29),dblwr::Buffer::append(buf0dblwr.h:94),Double_write::enqueue(buf0dblwr.cc:621),Double_write::submit(buf0dblwr.cc:678),Double_write::submit(buf0dblwr.cc:671),dblwr::write(buf0dblwr.cc:2560),buf_flush_write_block_low(buf0flu.cc:1255),buf_flush_page(buf0flu.cc:1393),buf_flush_try_neighbors(buf0flu.cc:1592),buf_flush_page_and_try_neighbors(buf0flu.cc:1674),buf_do_flush_list_batch(buf0flu.cc:1924),buf_flush_batch(buf0flu.cc:1988),buf_flush_do_batch(buf0flu.cc:2093),pc_flush_slot(buf0flu.cc:3010),buf_flush_page_coordinator_thread(buf0flu.cc:3399),void(buf0flu.cc:3399),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __GI___sigtimedwait,signal_hand(mysqld.cc:3833),pfs_spawn_thread(pfs.cc:2987),start_thread,clone3
1 __GI___poll,poll(poll2.h:39),Mysqld_socket_listener::listen_for_connection_event(socket_connection.cc:1347),Connection_acceptor::connection_event_loop(connection_acceptor.h:64),mysqld_main(mysqld.cc:8570),__libc_start_call_main,__libc_start_main_impl,_start
1 __GI_fsync,os_file_fsync_posix(os0file.cc:2994),os_file_flush_func(os0file.cc:3137),pfs_os_file_flush_func(os0file.ic:468),Log_file_handle::fsync(log0files_io.cc:315),Log_file_handle::fsync(log0files_io.cc:304),log_flush_low(log0write.cc:2443),operator(log0write.cc:2534),os_event_wait_for<log_flusher(log_t*)::<lambda(bool)>(os0event.ic:83),Log_thread_waiting::wait<log_flusher(log_t*)::<lambda(bool)>(log0write.cc:1256),log_flusher(log0write.cc:2602),void(log0write.cc:2602),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __GI_fsync,os_file_fsync_posix(os0file.cc:2994),os_file_flush_func(os0file.cc:3137),pfs_os_file_flush_func(os0file.ic:468),Fil_shard::space_flush(fil0fil.cc:8200),Fil_shard::flush_file_spaces(fil0fil.cc:8263),Fil_system::flush_file_spaces(fil0fil.cc:8271),fil_flush_file_spaces(fil0fil.cc:8275),Double_write::write_complete(buf0dblwr.cc:2622),dblwr::write_complete(buf0dblwr.cc:2638),buf_flush_write_complete(buf0flu.cc:945),buf_page_io_complete(buf0buf.cc:5976),fil_aio_wait(fil0fil.cc:8020),io_handler_thread(srv0start.cc:250),void(srv0start.cc:250),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __GI___clock_nanosleep,__GI___nanosleep,std::this_thread::sleep_for<long,std::ratio<1l,1l>>(this_thread_sleep.h:82),srv_master_sleep(srv0srv.cc:2973),srv_master_main_loop(srv0srv.cc:3015),srv_master_thread(srv0srv.cc:3087),void(srv0srv.cc:3087),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_wait,xpl::Synchronize::Block::wait(synchronize.h:49),xpl::Broker_task::wait_for_data_and_swap_queues(broker_task.cc:118),xpl::Broker_task::loop(broker_task.cc:92),ngs::Server::run_task(server.cc:83),operator(server.cc:148),std::__invoke_impl<void,(invoke.h:61),std::__invoke_r<void,(invoke.h:111),std::_Function_handler<void(),(std_function.h:290),std::function::operator(std_function.h:290),ngs::Scheduler_dynamic::worker(scheduler.cc:234),pfs_spawn_thread(pfs.cc:2987),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_wait,os_event::wait(os0event.cc:185),os_event::wait_low(os0event.cc:365),os_event_wait_low(os0event.cc:589),sync_array_wait_event(sync0arr.cc:338),TTASEventMutex::wait(ut0mutex.ic:222),TTASEventMutex::spin_and_try_lock(ib0mutex.h:541),TTASEventMutex<GenericPolicy>::enter(ib0mutex.h:442),PolicyMutex<TTASEventMutex<GenericPolicy>(ib0mutex.h:636),mutex_enter_inline<PolicyMutex<TTASEventMutex<GenericPolicy>(ut0mutex.h:114),buf_page_init_for_read(buf0buf.cc:4936),buf_read_page_low(buf0rea.cc:93),buf_read_page(buf0rea.cc:292),Buf_fetch::read_page(buf0buf.cc:4086),Buf_fetch_normal::get(buf0buf.cc:3709),Buf_fetch::single_page(buf0buf.cc:4281),buf_page_get_gen(buf0buf.cc:4478),btr_cur_search_to_nth_level(btr0cur.cc:975),btr_pcur_t::open_no_init(btr0pcur.h:616),row_search_mvcc(row0sel.cc:4954),ha_innobase::index_read(ha_innodb.cc:10897),handler::index_read_map(handler.h:5467),handler::ha_index_read_map(handler.cc:3393),read_(handler.cc:3393),join_read__table(handler.cc:3393),JOIN::extract_func_dependent_tables(sql_optimizer.cc:5824),JOIN::make_join_plan(sql_optimizer.cc:5352),JOIN::optimize(sql_optimizer.cc:716),Query_block::optimize(sql_select.cc:1814),Query_expression::optimize(sql_union.cc:1007),Sql_cmd_dml::execute_inner(sql_select.cc:763),Sql_cmd_dml::execute(sql_select.cc:578),mysql_execute_command(sql_parse.cc:4944),Prepared_statement::execute(sql_prepare.cc:3646),Prepared_statement::execute_loop(sql_prepare.cc:3058),mysqld_stmt_execute(sql_prepare.cc:1914),dispatch_command(sql_parse.cc:2024),do_command(sql_parse.cc:1501),handle_connection(connection_handler_per_thread.cc:308),pfs_spawn_thread(pfs.cc:2987),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_wait,os_event::wait(os0event.cc:185),os_event::wait_low(os0event.cc:365),os_event_wait_low(os0event.cc:589),sync_array_wait_event(sync0arr.cc:338),TTASEventMutex::wait(ut0mutex.ic:222),TTASEventMutex::spin_and_try_lock(ib0mutex.h:541),TTASEventMutex<GenericPolicy>::enter(ib0mutex.h:442),PolicyMutex<TTASEventMutex<GenericPolicy>(ib0mutex.h:636),mutex_enter_inline<PolicyMutex<TTASEventMutex<GenericPolicy>(ut0mutex.h:114),buf_flush_LRU_list_batch(buf0flu.cc:1813),buf_do_LRU_batch(buf0flu.cc:1874),buf_flush_batch(buf0flu.cc:1984),buf_flush_do_batch(buf0flu.cc:2093),buf_flush_LRU_list(buf0flu.cc:2272),buf_lru_manager_thread(buf0flu.cc:3763),void(buf0flu.cc:3763),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_wait,os_event::wait(os0event.cc:185),os_event::wait_low(os0event.cc:365),os_event_wait_low(os0event.cc:589),os_event_wait(os0event.h:103),buf_resize_thread(buf0buf.cc:2667),void(buf0buf.cc:2667),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_wait,os_event::wait(os0event.cc:185),os_event::wait_low(os0event.cc:365),os_event_wait_low(os0event.cc:589),os_event_wait(os0event.h:103),buf_dump_thread(buf0dump.cc:686),void(buf0dump.cc:686),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_wait,native_cond_wait(thr_cond.h:108),my_cond_wait(thr_cond.h:161),inline_mysql_cond_wait(mysql_cond.h:198),Per_thread_connection_handler::block_until_new_connection(connection_handler_per_thread.cc:162),handle_connection(connection_handler_per_thread.cc:340),pfs_spawn_thread(pfs.cc:2987),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_wait,native_cond_wait(thr_cond.h:108),my_cond_wait(thr_cond.h:161),inline_mysql_cond_wait(mysql_cond.h:198),Event_queue::cond_wait(event_queue.cc:718),Event_queue::get_top_for_execution_if_time(event_queue.cc:556),Event_scheduler::run(event_scheduler.cc:577),event_scheduler_thread(event_scheduler.cc:280),pfs_spawn_thread(pfs.cc:2987),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_wait,native_cond_wait(thr_cond.h:108),my_cond_wait(thr_cond.h:161),inline_mysql_cond_wait(mysql_cond.h:198),compress_gtid_table(rpl_gtid_persist.cc:776),pfs_spawn_thread(pfs.cc:2987),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),srv_purge_coordinator_suspend(chrono:537),srv_purge_coordinator_thread(srv0srv.cc:3475),void(srv0srv.cc:3475),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),srv_error_monitor_thread(chrono:537),void(chrono:537),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),os_event_wait_time(os0event.h:121),srv_monitor_thread(srv0srv.cc:1969),void(srv0srv.cc:1969),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),os_event_wait_time(os0event.h:121),dict_stats_thread(dict0stats_bg.cc:365),void(dict0stats_bg.cc:365),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),os_event_wait_time(os0event.h:121),Clone_persist_gtid::periodic_write(clone0repl.cc:608),void(clone0repl.cc:608),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),os_event_wait_for<log_writer::<lambda>>(os0event.ic:135),Log_thread_waiting::wait<log_writer(log_t*)::<lambda(bool)>(log0write.cc:1256),log_writer(log0write.cc:2276),void(log0write.cc:2276),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),os_event_wait_for<log_write_notifier::<lambda>>(os0event.ic:135),Log_thread_waiting::wait<log_write_notifier(log_t*)::<lambda(bool)>(log0write.cc:1256),log_write_notifier(log0write.cc:2703),void(log0write.cc:2703),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),os_event_wait_for<log_flush_notifier::<lambda>>(os0event.ic:135),Log_thread_waiting::wait<log_flush_notifier(log_t*)::<lambda(bool)>(log0write.cc:1256),log_flush_notifier(log0write.cc:2825),void(log0write.cc:2825),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),log_files_governor(chrono:537),void(chrono:537),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),log_checkpointer(log0chkp.cc:1025),void(log0chkp.cc:1025),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),lock_wait_timeout_thread(chrono:537),void(chrono:537),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,os_event::timed_wait(sync0types.h:556),os_event::wait_time_low(os0event.cc:488),os_event_wait_time_low(os0event.cc:575),ib_wqueue_timedwait(ut0wqueue.cc:128),fts_optimize_thread(chrono:537),void(chrono:537),std::__invoke<void(invoke.h:96),std::_Bind<void(functional:420),std::_Bind<void(functional:503),Detached_thread::operator()<void(os0thread-create.h:194),std::__invoke_impl<void,(invoke.h:61),std::__invoke<Detached_thread,(invoke.h:96),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:253),std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:260),std::thread::_State_impl<std::thread::_Invoker<std::tuple<Detached_thread,(std_thread.h:211),libstdc++::??(libstdc++.so.6),start_thread,clone3
1 __futex_abstimed_wait_common64,__futex_abstimed_wait_common,__GI___futex_abstimed_wait_cancelable64,__pthread_cond_wait_common,___pthread_cond_timedwait64,native_cond_timedwait(thr_cond.h:99),my_cond_timedwait(thr_cond.h:148),inline_mysql_cond_timedwait(mysql_cond.h:242),MYSQL_BIN_LOG::wait_for_update(binlog.cc:7966),Binlog_sender::wait_with_heartbeat(rpl_binlog_sender.cc:821),Binlog_sender::wait_new_events(rpl_binlog_sender.cc:796),Binlog_sender::get_binlog_end_pos(rpl_binlog_sender.cc:539),Binlog_sender::send_binlog(rpl_binlog_sender.cc:510),Binlog_sender::run(rpl_binlog_sender.cc:413),mysql_binlog_send(rpl_source.cc:997),com_binlog_dump(rpl_source.cc:924),dispatch_command(sql_parse.cc:2349),do_command(sql_parse.cc:1501),handle_connection(connection_handler_per_thread.cc:308),pfs_spawn_thread(pfs.cc:2987),start_thread,clone3
1 epoll_wait,epoll_dispatch(epoll.c:465),event_base_loop(event.c:1998),ngs::Server::run_task(server.cc:83),operator(server.cc:148),std::__invoke_impl<void,(invoke.h:61),std::__invoke_r<void,(invoke.h:111),std::_Function_handler<void(),(std_function.h:290),std::function::operator(std_function.h:290),ngs::Scheduler_dynamic::worker(scheduler.cc:234),pfs_spawn_thread(pfs.cc:2987),start_thread,clone3

View File

@@ -0,0 +1,27 @@
10 syscall,io_getevents(libaio.so.1.0.1),LinuxAIOHandler::collect,LinuxAIOHandler::poll,os_aio_linux_handler,fil_aio_wait,std::atomic::load,Detached_thread::operator,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
3 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::wait,srv_worker_thread,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
3 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,operator,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
2 __futex_abstimed_wait_common64,__pthread_cond_wait_common,xpl::Cond::timed_wait,is_timeout,ngs::Scheduler_dynamic::worker,pfs_spawn_thread,start_thread,__clone3
2 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,std::atomic::load,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 Optimize_table_order::calculate_scan_cost,Optimize_table_order::best_access_path,const,Optimize_table_order::greedy_search,Optimize_table_order::choose_table_order,JOIN::make_join_plan,JOIN::optimize,Query_block::optimize,Query_expression::optimize,Sql_cmd_dml::execute_inner,Sql_cmd_dml::execute,mysql_execute_command,Prepared_statement::execute,Prepared_statement::execute_loop,mysqld_stmt_execute,dispatch_command,do_command,handle_connection,pfs_spawn_thread,start_thread,__clone3
1 __GI___sigtimedwait,signal_hand,pfs_spawn_thread,start_thread,__clone3
1 __GI___poll,Mysqld_socket_listener::listen_for_connection_event,Connection_acceptor::connection_event_loop,__libc_start_call_main,call_init,_start(mysqld)
1 __GI___clock_nanosleep,__GI___nanosleep,std::this_thread::sleep_for<long,,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___clock_nanosleep,__GI___nanosleep,std::this_thread::sleep_for<long,,Detached_thread::operator,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,std::__shared_ptr<xpl::Broker_context,,xpl::Global_status_variables::instance,std::atomic::load,std::__shared_count<,std::_Function_base::~_Function_base,pfs_spawn_thread,start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,std::__atomic_base::load,handle_connection,pfs_spawn_thread,start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::wait,buf_resize_thread,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::wait,buf_dump_thread,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,srv_purge_coordinator_suspend,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,srv_monitor_thread,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,pc_sleep_if_needed,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,os_event_wait_for<log_flusher,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,log_files_governor,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,log_checkpointer,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,lock_wait_timeout_thread,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,ib_wqueue_timedwait,fts_optimize_thread,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,Clone_persist_gtid::periodic_write,std::__shared_ptr<std::__future_base::_State_baseV2,,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,MYSQL_BIN_LOG::wait_for_update,Binlog_sender::wait_with_heartbeat,Binlog_sender::get_binlog_end_pos,Binlog_sender::send_binlog,Binlog_sender::run,Binlog_sender::~Binlog_sender,com_binlog_dump,dispatch_command,do_command,handle_connection,pfs_spawn_thread,start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,inline_mysql_cond_wait,Event_queue::get_top_for_execution_if_time,Event_scheduler::run,event_scheduler_thread,pfs_spawn_thread,start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,compress_gtid_table,pfs_spawn_thread,start_thread,__clone3
1 epoll_wait,epoll_dispatch,event_base_loop,std::atomic::load,std::__shared_count<,std::_Function_base::~_Function_base,pfs_spawn_thread,start_thread,__clone3

View File

@@ -0,0 +1,480 @@
Thread 3441765 (LWP 3441765):
#0 0x00007f2763f18bcf in __GI___poll at poll.c:29:10
#1 0x000055be68a34432 in Mysqld_socket_listener::listen_for_connection_event() at socket_connection.cc:1354:3
#2 0x000055be68770708 in Connection_acceptor<Mysqld_socket_listener>::connection_event_loop() at connection_acceptor.h:64:75
#3 0x00007f2763e29d90 in __libc_start_call_main at libc_start_call_main.h:58:16
#4 0x00007f2763e29e40 in call_init at libc-start.c:128:20
#5 0x000055be6859cfb5 in _start from /home/sveta/mysqlpackages/Percona-Server-8.0.32-24-Linux.x86_64.glibc2.35/bin/mysqld
Thread 3441805 (LWP 3441805):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441806 (LWP 3441806):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441807 (LWP 3441807):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441808 (LWP 3441808):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441809 (LWP 3441809):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441810 (LWP 3441810):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441811 (LWP 3441811):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441812 (LWP 3441812):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441813 (LWP 3441813):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441814 (LWP 3441814):
#0 0x00007f2763f1e88d in syscall at syscall.S:38
#1 0x00007f2764a91279 in io_getevents from /usr/lib/x86_64-linux-gnu/libaio.so.1.0.1
#2 0x000055be69b962cb in LinuxAIOHandler::collect() at os0file.cc:2383:28
#3 0x000055be69b96712 in LinuxAIOHandler::poll(fil_node_t**, void**, IORequest*) at os0file.cc:2531:3
#4 0x000055be69b99874 in os_aio_linux_handler at os0file.cc:2581:3
#5 0x000055be69e0f9cd in fil_aio_wait(unsigned long) at fil0fil.cc:7980:3
#6 0x000055be69c47aa8 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#7 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#8 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#9 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#10 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441815 (LWP 3441815):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69d28abb in pc_sleep_if_needed at buf0flu.cc:2832:35
#5 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441816 (LWP 3441816):
#0 0x00007f2763ee57f8 in __GI___clock_nanosleep at clock_nanosleep.c:78:7
#1 0x00007f2763eea677 in __GI___nanosleep at nanosleep.c:26:6
#2 0x000055be69d2729d in void std::this_thread::sleep_for<long, std::ratio<1l, 1000l> >(std::chrono::duration<long, std::ratio<1l, 1000l> > const&) at this_thread_sleep.h:82:41
#3 0x000055be69c480e6 in void Detached_thread::operator()<void (*)(unsigned long), unsigned long>(void (*&&)(unsigned long), unsigned long&&) at os0thread-create.h:196:13
#4 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#5 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#6 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441817 (LWP 3441817):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69c447e0 in srv_monitor_thread() at srv0srv.cc:1969:12
#5 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441818 (LWP 3441818):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69b32bac in log_checkpointer(log_t*) at log0chkp.cc:1025:37
#5 0x000055be69b50bae in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441819 (LWP 3441819):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69b819eb in operator() at log0write.cc:2818:18
#5 0x000055be69b50bae in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441820 (LWP 3441820):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69b80c5a in os_event_wait_for<log_flusher(log_t*)::<lambda(bool)> > at os0event.ic:95:7
#5 0x000055be69b50bae in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441821 (LWP 3441821):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69b8139b in operator() at log0write.cc:2696:18
#5 0x000055be69b50bae in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441822 (LWP 3441822):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69b804e3 in operator() at log0write.cc:2270:18
#5 0x000055be69b50bae in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441823 (LWP 3441823):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69b47d0d in log_files_governor(log_t*) at log0files_governor.cc:1366:42
#5 0x000055be69b50bae in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441828 (LWP 3441828):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69b2ccae in lock_wait_timeout_thread() at lock0wait.cc:1535:31
#5 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441829 (LWP 3441829):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69c3b73d in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#5 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441830 (LWP 3441830):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93a41 in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9f096 in os_event::wait() at os0event.cc:186:7
#3 0x000055be69d06dde in buf_resize_thread() at buf0buf.cc:2668:19
#4 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#5 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#7 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441831 (LWP 3441831):
#0 0x00007f2763ee57f8 in __GI___clock_nanosleep at clock_nanosleep.c:78:7
#1 0x00007f2763eea677 in __GI___nanosleep at nanosleep.c:26:6
#2 0x000055be69c451b5 in void std::this_thread::sleep_for<long, std::ratio<1l, 1l> >(std::chrono::duration<long, std::ratio<1l, 1l> > const&) at this_thread_sleep.h:82:41
#3 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#4 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#5 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#6 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441832 (LWP 3441832):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69dd5487 in std::atomic<srv_shutdown_t>::load(std::memory_order) const at atomic:285:15
#5 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441833 (LWP 3441833):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69ca525c in ib_wqueue_timedwait(ib_wqueue_t*, std::chrono::duration<long, std::ratio<1l, 1000000l> >) at ut0wqueue.cc:130:5
#5 0x000055be69e57c9a in fts_optimize_thread at fts0opt.cc:2850:57
#6 0x000055be69e4f42e in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#7 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#8 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#9 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441834 (LWP 3441834):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be6a257885 in xpl::Cond::timed_wait(xpl::Mutex&, unsigned long long) at cond.cc:43:1
#3 0x000055be6a27e5cd in is_timeout at my_thread.h:60:12
#4 0x000055be6a27fb9c in ngs::Scheduler_dynamic::worker() at scheduler.cc:243:9
#5 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#6 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#7 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441835 (LWP 3441835):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be6a257885 in xpl::Cond::timed_wait(xpl::Mutex&, unsigned long long) at cond.cc:43:1
#3 0x000055be6a27e5cd in is_timeout at my_thread.h:60:12
#4 0x000055be6a27fb9c in ngs::Scheduler_dynamic::worker() at scheduler.cc:243:9
#5 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#6 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#7 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441836 (LWP 3441836):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93a41 in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be6a26affc in std::__shared_ptr<xpl::Broker_context, (__gnu_cxx::_Lock_policy)2>::get() const at shared_ptr_base.h:1296:16
#3 0x000055be6a26b791 in xpl::Global_status_variables::instance() at xpl_global_status_variables.h:35:36
#4 0x000055be6a2098b2 in std::atomic<ngs::Server::State>::load(std::memory_order) const at atomic:285:15
#5 0x000055be6a20a494 in std::__shared_count<(__gnu_cxx::_Lock_policy)2>::~__shared_count() at shared_ptr_base.h:704:6
#6 0x000055be6a27fe95 in std::_Function_base::~_Function_base() at std_function.h:243:11
#7 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#8 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#9 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441874 (LWP 3441874):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93a41 in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9f096 in os_event::wait() at os0event.cc:186:7
#3 0x000055be69d1f343 in buf_dump_thread() at buf0dump.cc:688:5
#4 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#5 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#7 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441875 (LWP 3441875):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69d6e459 in Clone_persist_gtid::periodic_write() at os0event.h:121:32
#5 0x000055be69d6ae4e in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441876 (LWP 3441876):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9fd1a in os_event::timed_wait(timespec const*) at os0event.cc:315:31
#3 0x000055be69b9feb9 in os_event::wait_time_low(std::chrono::duration<long, std::ratio<1l, 1000000l> >, long) at os0event.cc:493:12
#4 0x000055be69c46523 in srv_purge_coordinator_suspend at srv0srv.cc:3356:33
#5 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#6 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441877 (LWP 3441877):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93a41 in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9f096 in os_event::wait() at os0event.cc:186:7
#3 0x000055be69c45a9c in srv_worker_thread() at srv0srv.cc:3214:35
#4 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#5 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#7 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441878 (LWP 3441878):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93a41 in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9f096 in os_event::wait() at os0event.cc:186:7
#3 0x000055be69c45a9c in srv_worker_thread() at srv0srv.cc:3214:35
#4 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#5 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#7 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441879 (LWP 3441879):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93a41 in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69b9f096 in os_event::wait() at os0event.cc:186:7
#3 0x000055be69c45a9c in srv_worker_thread() at srv0srv.cc:3214:35
#4 0x000055be69b662fa in std::__shared_ptr<std::__future_base::_State_baseV2, (__gnu_cxx::_Lock_policy)2>::operator bool() const at shared_ptr_base.h:1300:16
#5 0x00007f27642dc253 in ?? from /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
#6 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#7 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441880 (LWP 3441880):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93a41 in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be68c3ee21 in inline_mysql_cond_wait at mysql_cond.h:205:10
#3 0x000055be68c3f92f in Event_queue::get_top_for_execution_if_time(THD*, Event_queue_element_for_exec**) at event_queue.cc:559:7
#4 0x000055be68c41e5b in Event_scheduler::run(THD*) at event_scheduler.cc:577:5
#5 0x000055be68c42517 in event_scheduler_thread at event_scheduler.cc:288:16
#6 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441881 (LWP 3441881):
#0 0x00007f2763e4321a in __GI___sigtimedwait at sigtimedwait.c:61:28
#1 0x000055be6875631b in signal_hand at mysqld.cc:3833:54
#2 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#3 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#4 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441883 (LWP 3441883):
#0 0x00007f2763f25e2e in epoll_wait at epoll_wait.c:30:10
#1 0x000055be6a2cc925 in epoll_dispatch at epoll.c:467:2
#2 0x000055be6a2c2238 in event_base_loop at event.c:2000:6
#3 0x000055be6a2098b2 in std::atomic<ngs::Server::State>::load(std::memory_order) const at atomic:285:15
#4 0x000055be6a20a494 in std::__shared_count<(__gnu_cxx::_Lock_policy)2>::~__shared_count() at shared_ptr_base.h:704:6
#5 0x000055be6a27fe95 in std::_Function_base::~_Function_base() at std_function.h:243:11
#6 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#7 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#8 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441885 (LWP 3441885):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93a41 in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be69608553 in compress_gtid_table at rpl_gtid_persist.cc:775:14
#3 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#4 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#5 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3441888 (LWP 3441888):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93e9b in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be695b8173 in MYSQL_BIN_LOG::wait_for_update(std::chrono::duration<long, std::ratio<1l, 1000000000l> > const&) at binlog.cc:7967:1
#3 0x000055be6963f417 in Binlog_sender::wait_with_heartbeat(unsigned long long) at rpl_binlog_sender.cc:823:32
#4 0x000055be6963f7e9 in Binlog_sender::get_binlog_end_pos(Basic_binlog_file_reader<Binlog_ifile, Binlog_event_data_istream, Binlog_event_object_istream, Binlog_sender::Event_allocator>&) at rpl_binlog_sender.cc:539:5
#5 0x000055be69640cbb in Binlog_sender::send_binlog(Basic_binlog_file_reader<Binlog_ifile, Binlog_event_data_istream, Binlog_event_object_istream, Binlog_sender::Event_allocator>&, unsigned long long) at rpl_binlog_sender.cc:510:46
#6 0x000055be69641cb6 in Binlog_sender::run() at rpl_binlog_sender.cc:413:5
#7 0x000055be69638f58 in Binlog_sender::~Binlog_sender() at rpl_binlog_sender.h:57:3
#8 0x000055be6963ba5e in com_binlog_dump(THD*, char*, unsigned long) at rpl_source.cc:927:21
#9 0x000055be688bdbe6 in dispatch_command(THD*, COM_DATA const*, enum_server_command) at sql_parse.cc:2349:30
#10 0x000055be688bfd92 in do_command(THD*) at sql_parse.cc:1505:17
#11 0x000055be68a2e000 in handle_connection at connection_handler_per_thread.cc:308:9
#12 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#13 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#14 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3442446 (LWP 3442446):
#0 0x00007f2763e91117 in __futex_abstimed_wait_common64 at futex-internal.c:57:12
#1 0x00007f2763e93a41 in __pthread_cond_wait_common at pthread_cond_wait.c:506:4
#2 0x000055be68a2dba7 in std::__atomic_base<int>::load(std::memory_order) const at atomic_base.h:481:24
#3 0x000055be68a2de4f in handle_connection at connection_handler_per_thread.cc:340:77
#4 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#5 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#6 0x00007f2763f26850 in __clone3 at clone3.S:83
Thread 3772082 (LWP 3772082):
#0 0x000055be688cfe40 in Optimize_table_order::calculate_scan_cost(JOIN_TAB const*, unsigned int, Key_use const*, double, bool, bool, double*, Opt_trace_object*) at sql_planner.cc:774:42
#1 0x000055be688d087d in Optimize_table_order::best_access_path(JOIN_TAB*, unsigned long, unsigned int, bool, double, POSITION*) at sql_planner.cc:1154:38
#2 0x000055be688d6417 in Server_cost_constants::row_evaluate_cost() const at opt_costconstants.h:80:45
#3 0x000055be688d6ae2 in Optimize_table_order::greedy_search(unsigned long) at sql_planner.cc:2353:5
#4 0x000055be688d7c95 in Optimize_table_order::choose_table_order() at sql_planner.cc:2028:5
#5 0x000055be688acd7c in JOIN::make_join_plan() at sql_optimizer.cc:5381:3
#6 0x000055be688af1dc in JOIN::optimize(bool) at sql_optimizer.cc:716:3
#7 0x000055be68917b81 in Query_block::optimize(THD*, bool) at sql_select.cc:1814:21
#8 0x000055be6899b9b9 in Query_expression::optimize(THD*, TABLE*, bool, bool) at sql_union.cc:1007:30
#9 0x000055be68916954 in Sql_cmd_dml::execute_inner(THD*) at sql_select.cc:763:3
#10 0x000055be68916019 in Sql_cmd_dml::execute(THD*) at sql_select.cc:578:20
#11 0x000055be688b87f7 in mysql_execute_command(THD*, bool) at sql_parse.cc:3535:11
#12 0x000055be688eaec0 in Prepared_statement::execute(THD*, String*, bool) at sql_prepare.cc:3646:33
#13 0x000055be688efbad in Prepared_statement::execute_loop(THD*, String*, bool) at sql_prepare.cc:3058:18
#14 0x000055be688f0224 in mysqld_stmt_execute(THD*, Prepared_statement*, bool, unsigned long, PS_PARAM*) at sql_prepare.cc:1914:23
#15 0x000055be688bdced in dispatch_command(THD*, COM_DATA const*, enum_server_command) at sql_parse.cc:2026:36
#16 0x000055be688bfd92 in do_command(THD*) at sql_parse.cc:1505:17
#17 0x000055be68a2e000 in handle_connection at connection_handler_per_thread.cc:308:9
#18 0x000055be69ee42e9 in pfs_spawn_thread at pfs.cc:2990:1
#19 0x00007f2763e94ac3 in start_thread at pthread_create.c:442:8
#20 0x00007f2763f26850 in __clone3 at clone3.S:83
TS 558601424.1705596353 2024-01-18 19:45:53

View File

@@ -0,0 +1,27 @@
10 syscall,io_getevents(libaio.so.1.0.1),LinuxAIOHandler::collect,LinuxAIOHandler::poll,os_aio_linux_handler,fil_aio_wait,std::atomic::load,Detached_thread::operator<,unsignedlong>,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
3 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::wait,srv_worker_thread,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
3 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,operator,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
2 __futex_abstimed_wait_common64,__pthread_cond_wait_common,xpl::Cond::timed_wait,is_timeout,ngs::Scheduler_dynamic::worker,pfs_spawn_thread,start_thread,__clone3
2 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,std::atomic::load,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 Optimize_table_order::calculate_scan_cost,Optimize_table_order::best_access_path,const,Optimize_table_order::greedy_search,Optimize_table_order::choose_table_order,JOIN::make_join_plan,JOIN::optimize,Query_block::optimize,Query_expression::optimize,Sql_cmd_dml::execute_inner,Sql_cmd_dml::execute,mysql_execute_command,Prepared_statement::execute,Prepared_statement::execute_loop,mysqld_stmt_execute,dispatch_command,do_command,handle_connection,pfs_spawn_thread,start_thread,__clone3
1 __GI___sigtimedwait,signal_hand,pfs_spawn_thread,start_thread,__clone3
1 __GI___poll,Mysqld_socket_listener::listen_for_connection_event,Connection_acceptor::connection_event_loop,__libc_start_call_main,call_init,_start(mysqld)
1 __GI___clock_nanosleep,__GI___nanosleep,std::this_thread::sleep_for<long,std::ratio<1l,1l>>,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __GI___clock_nanosleep,__GI___nanosleep,std::this_thread::sleep_for<long,std::ratio<1l,1000l>>,Detached_thread::operator<,unsignedlong>,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,std::__shared_ptr::get,xpl::Global_status_variables::instance,std::atomic::load,std::__shared_count::~__shared_count,std::_Function_base::~_Function_base,pfs_spawn_thread,start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,std::__atomic_base::load,handle_connection,pfs_spawn_thread,start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::wait,buf_resize_thread,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::wait,buf_dump_thread,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,srv_purge_coordinator_suspend,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,srv_monitor_thread,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,pc_sleep_if_needed,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,os_event_wait_for<log_flusher::<lambda>>,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,log_files_governor,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,log_checkpointer,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,lock_wait_timeout_thread,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,ib_wqueue_timedwait,fts_optimize_thread,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,os_event::timed_wait,os_event::wait_time_low,Clone_persist_gtid::periodic_write,std::__shared_ptr::operatorbool,libstdc++::??(libstdc++.so.6.0.30),start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,MYSQL_BIN_LOG::wait_for_update,Binlog_sender::wait_with_heartbeat,Binlog_sender::get_binlog_end_pos,Binlog_sender::send_binlog,Binlog_sender::run,Binlog_sender::~Binlog_sender,com_binlog_dump,dispatch_command,do_command,handle_connection,pfs_spawn_thread,start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,inline_mysql_cond_wait,Event_queue::get_top_for_execution_if_time,Event_scheduler::run,event_scheduler_thread,pfs_spawn_thread,start_thread,__clone3
1 __futex_abstimed_wait_common64,__pthread_cond_wait_common,compress_gtid_table,pfs_spawn_thread,start_thread,__clone3
1 epoll_wait,epoll_dispatch,event_base_loop,std::atomic::load,std::__shared_count::~__shared_count,std::_Function_base::~_Function_base,pfs_spawn_thread,start_thread,__clone3