Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-30996

insert.. select in presence of full text index freezes all other commits at commit time

    XMLWordPrintable

Details

    Description

      How to reproduce:

      • create a table t1, insert 1M rows in it
      • create an empty table t2 like the previous one
      • add a full text index to table t2
      • open a terminal session and run insert into t2 select * from t1
      • in the meantime in another session keep inserting in a unrelated table

      When table t2 commits, you will not be able to commit anything else until it is finished (several seconds after).

      It looks like that for this bug to bite, binary logs have to be enabled.

      gdb thread dump follows

      Thread 18 (Thread 0x7f9905dfb700 (LWP 106796)):
      #0  0x00007f993c84b7aa in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x000055bb8788cc72 in __gthread_cond_timedwait (__abs_timeout=0x7f9905dfab80, __mutex=<optimized out>, __cond=0x55bb88fa5310) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/x86_64-redhat-linux/bits/gthr-default.h:872
      #2  std::condition_variable::__wait_until_impl<std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (__lock=..., __lock=..., __atime=<synthetic pointer>..., this=0x55bb88fa5310) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:232
      #3  std::condition_variable::wait_until<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (__atime=..., __lock=..., this=0x55bb88fa5310) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:141
      #4  std::condition_variable::wait_for<long, std::ratio<1l, 1000l> > (__rtime=..., __rtime=..., __lock=..., this=0x55bb88fa5310) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:172
      #5  tpool::thread_pool_generic::wait_for_tasks (this=this@entry=0x55bb88fa4e60, lk=..., thread_data=thread_data@entry=0x55bb88fa5310) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:480
      #6  0x000055bb8788d5bd in tpool::thread_pool_generic::get_task (this=0x55bb88fa4e60, thread_var=0x55bb88fa5310, t=0x7f9905dfac28) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:533
      #7  0x000055bb8788d71d in tpool::thread_pool_generic::worker_main (this=0x55bb88fa4e60, thread_var=0x55bb88fa5310) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:578
      #8  0x00007f993c366ba3 in execute_native_thread_routine () from /lib64/libstdc++.so.6
      #9  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #10 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 17 (Thread 0x7f993012a700 (LWP 106758)):
      #0  0x00007f993c84e82d in __lll_lock_wait () from /lib64/libpthread.so.0
      #1  0x00007f993c847ad9 in pthread_mutex_lock () from /lib64/libpthread.so.0
      #2  0x000055bb8704d29e in psi_mutex_lock (that=0x55bb88201f40 <LOCK_commit_ordered>, file=<optimized out>, line=<optimized out>) at /usr/src/debug/MariaDB-/src_0/mysys/my_thr_init.c:489
      #3  0x000055bb86ffaeb4 in MYSQL_BIN_LOG::trx_group_commit_leader(MYSQL_BIN_LOG::group_commit_entry*) [clone .cold] () at /usr/src/debug/MariaDB-/src_0/include/mysql/psi/mysql_thread.h:746
      #4  0x000055bb874c3de4 in MYSQL_BIN_LOG::write_transaction_to_binlog_events(MYSQL_BIN_LOG::group_commit_entry*) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:8144
      #5  0x000055bb874c4302 in MYSQL_BIN_LOG::write_transaction_to_binlog(THD*, binlog_cache_mngr*, Log_event*, bool, bool, bool, bool) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:7741
      #6  0x000055bb874c5767 in MYSQL_BIN_LOG::log_and_order(THD*, unsigned long long, bool, bool, bool) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:1783
      #7  0x000055bb873cef69 in ha_commit_trans(THD*, bool) () at /usr/src/debug/MariaDB-/src_0/sql/handler.cc:1896
      #8  0x000055bb872aee93 in trans_commit_stmt (thd=0x7f98f83ca9e8) at /usr/src/debug/MariaDB-/src_0/sql/transaction.cc:472
      #9  0x000055bb87178d89 in mysql_execute_command(THD*, bool) () at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:6073
      #10 0x000055bb8717e131 in mysql_parse(THD*, char*, unsigned int, Parser_state*) () at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:8043
      #11 0x000055bb8718102d in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) () at /usr/src/debug/MariaDB-/src_0/sql/sql_class.h:1368
      #12 0x000055bb87182e12 in do_command (thd=0x7f98f83ca9e8, blocking=blocking@entry=true) at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:1416
      #13 0x000055bb8729e667 in do_handle_one_connection (connect=<optimized out>, put_in_cache=true) at /usr/src/debug/MariaDB-/src_0/sql/sql_connect.cc:1416
      #14 0x000055bb8729e9ad in handle_one_connection (arg=arg@entry=0x55bb8a7bfa98) at /usr/src/debug/MariaDB-/src_0/sql/sql_connect.cc:1318
      #15 0x000055bb875f5842 in pfs_spawn_thread (arg=0x55bb893baae8) at /usr/src/debug/MariaDB-/src_0/storage/perfschema/pfs.cc:2201
      #16 0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #17 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 16 (Thread 0x7f9904df9700 (LWP 105901)):
      #0  0x000055bb8780060e in srw_mutex_impl<true>::wr_lock (this=0x55bb891a2500) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/bits/atomic_base.h:500
      #1  ssux_lock_impl<true>::wr_lock (this=0x55bb891a2500) at /usr/src/debug/MariaDB-/src_0/storage/innobase/include/srw_lock.h:257
      #2  page_hash_latch::lock (this=0x55bb891a2500) at /usr/src/debug/MariaDB-/src_0/storage/innobase/include/buf0types.h:214
      #3  buf_LRU_free_page (bpage=0x7f9909c5a000, zip=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0lru.cc:804
      #4  0x000055bb87800d5d in buf_LRU_free_from_common_LRU_list (limit=18446744073709551615) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0lru.cc:248
      #5  buf_LRU_scan_and_free_block (limit=18446744073709551615) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0lru.cc:1332
      #6  buf_LRU_scan_and_free_block (limit=18446744073709551615) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0lru.cc:1327
      #7  0x000055bb87800f38 in buf_LRU_get_free_block (have_mutex=have_mutex@entry=false) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0lru.cc:424
      #8  0x000055bb87097917 in buf_page_init_for_read (mode=132, page_id=..., zip_size=0, unzip=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0rea.cc:120
      #9  0x000055bb878015de in buf_read_page_low (unzip=false, zip_size=0, page_id=..., mode=132, sync=true, space=0x55bb893c7798, err=<synthetic pointer>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0rea.cc:300
      #10 buf_read_page (page_id=page_id@entry=..., zip_size=zip_size@entry=0) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0rea.cc:457
      #11 0x000055bb87095bbe in buf_page_get_low (page_id=..., zip_size=<optimized out>, rw_latch=<optimized out>, guess=0x0, mode=<optimized out>, mtr=<optimized out>, err=<optimized out>, allow_ibuf_merge=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0buf.cc:2496
      #12 0x000055bb8709085f in btr_cur_search_to_nth_level(dict_index_t*, unsigned long, dtuple_t const*, page_cur_mode_t, unsigned long, btr_cur_t*, mtr_t*, unsigned long) () at /usr/src/debug/MariaDB-/src_0/storage/innobase/include/dict0mem.h:1207
      #13 0x000055bb8777a6ac in btr_pcur_open_low (mtr=0x7f9904df8570, autoinc=0, cursor=0x55bb8930bcf8, latch_mode=94263948918008, mode=PAGE_CUR_LE, tuple=0x7f98ec180b00, level=0, index=0x7f98c8042080) at /usr/src/debug/MariaDB-/src_0/storage/innobase/include/btr0pcur.inl:341
      #14 row_search_on_row_ref (pcur=pcur@entry=0x55bb8930bcf8, mode=mode@entry=2, table=<optimized out>, ref=0x7f98ec180b00, mtr=mtr@entry=0x7f9904df8570) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0row.cc:1223
      #15 0x000055bb87773826 in row_purge_reposition_pcur (mode=mode@entry=2, node=node@entry=0x55bb8930bc58, mtr=mtr@entry=0x7f9904df8570) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0purge.cc:82
      #16 0x000055bb87774418 in row_purge_reset_trx_id (node=0x55bb8930bc58, mtr=0x7f9904df8570) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0purge.cc:655
      #17 0x000055bb877767e2 in row_purge_record_func (node=0x55bb8930bc58, undo_rec=0x7f98e00a3980 "", thr=0x55bb8930bbb8, updated_extern=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0purge.cc:1209
      #18 0x000055bb8777721e in row_purge (thr=<optimized out>, undo_rec=<optimized out>, node=0x55bb8930bc58) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0purge.cc:1253
      #19 row_purge_step (thr=thr@entry=0x55bb8930bbb8) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0purge.cc:1316
      #20 0x000055bb8773f9a3 in que_thr_step (thr=0x55bb8930bbb8) at /usr/src/debug/MariaDB-/src_0/storage/innobase/que/que0que.cc:674
      #21 que_run_threads_low (thr=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/que/que0que.cc:730
      #22 que_run_threads (thr=0x55bb8930bbb8) at /usr/src/debug/MariaDB-/src_0/storage/innobase/que/que0que.cc:750
      #23 0x000055bb87796468 in purge_worker_callback(void*) () at /usr/src/debug/MariaDB-/src_0/storage/innobase/srv/srv0srv.cc:1649
      #24 0x000055bb8788f5e9 in tpool::task_group::execute (this=0x55bb88a94b40 <purge_task_group>, t=0x55bb88a61e20 <purge_worker_task>) at /usr/src/debug/MariaDB-/src_0/tpool/task_group.cc:55
      #25 0x000055bb8788d70f in tpool::thread_pool_generic::worker_main (this=0x55bb88fa4e60, thread_var=0x55bb88fa5290) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:580
      #26 0x00007f993c366ba3 in execute_native_thread_routine () from /lib64/libstdc++.so.6
      #27 0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #28 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 15 (Thread 0x7f99065fc700 (LWP 105847)):
      #0  0x00007f993c84b7aa in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x000055bb8788cc72 in __gthread_cond_timedwait (__abs_timeout=0x7f99065fbb80, __mutex=<optimized out>, __cond=0x55bb88fa5410) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/x86_64-redhat-linux/bits/gthr-default.h:872
      #2  std::condition_variable::__wait_until_impl<std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (__lock=..., __lock=..., __atime=<synthetic pointer>..., this=0x55bb88fa5410) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:232
      #3  std::condition_variable::wait_until<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (__atime=..., __lock=..., this=0x55bb88fa5410) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:141
      #4  std::condition_variable::wait_for<long, std::ratio<1l, 1000l> > (__rtime=..., __rtime=..., __lock=..., this=0x55bb88fa5410) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:172
      #5  tpool::thread_pool_generic::wait_for_tasks (this=this@entry=0x55bb88fa4e60, lk=..., thread_data=thread_data@entry=0x55bb88fa5410) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:480
      #6  0x000055bb8788d5bd in tpool::thread_pool_generic::get_task (this=0x55bb88fa4e60, thread_var=0x55bb88fa5410, t=0x7f99065fbc28) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:533
      #7  0x000055bb8788d71d in tpool::thread_pool_generic::worker_main (this=0x55bb88fa4e60, thread_var=0x55bb88fa5410) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:578
      #8  0x00007f993c366ba3 in execute_native_thread_routine () from /lib64/libstdc++.so.6
      #9  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #10 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 14 (Thread 0x7f98dffff700 (LWP 105846)):
      #0  0x00007f993c84b7aa in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x000055bb8788cc72 in __gthread_cond_timedwait (__abs_timeout=0x7f98dfffeb80, __mutex=<optimized out>, __cond=0x55bb88fa5490) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/x86_64-redhat-linux/bits/gthr-default.h:872
      #2  std::condition_variable::__wait_until_impl<std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (__lock=..., __lock=..., __atime=<synthetic pointer>..., this=0x55bb88fa5490) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:232
      #3  std::condition_variable::wait_until<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (__atime=..., __lock=..., this=0x55bb88fa5490) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:141
      #4  std::condition_variable::wait_for<long, std::ratio<1l, 1000l> > (__rtime=..., __rtime=..., __lock=..., this=0x55bb88fa5490) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:172
      #5  tpool::thread_pool_generic::wait_for_tasks (this=this@entry=0x55bb88fa4e60, lk=..., thread_data=thread_data@entry=0x55bb88fa5490) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:480
      #6  0x000055bb8788d5bd in tpool::thread_pool_generic::get_task (this=0x55bb88fa4e60, thread_var=0x55bb88fa5490, t=0x7f98dfffec28) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:533
      #7  0x000055bb8788d71d in tpool::thread_pool_generic::worker_main (this=0x55bb88fa4e60, thread_var=0x55bb88fa5490) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:578
      #8  0x00007f993c366ba3 in execute_native_thread_routine () from /lib64/libstdc++.so.6
      #9  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #10 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 13 (Thread 0x7f9930bb9700 (LWP 105845)):
      #0  0x00007f993bc810e1 in poll () from /lib64/libc.so.6
      #1  0x000055bb87554a3b in poll (__timeout=600000, __nfds=1, __fds=0x7f9930bb8828) at /usr/include/bits/poll2.h:46
      #2  vio_io_wait (vio=vio@entry=0x7f98d00083c8, event=<optimized out>, timeout=600000) at /usr/src/debug/MariaDB-/src_0/vio/viosocket.c:948
      #3  0x000055bb87554b00 in vio_socket_io_wait (vio=0x7f98d00083c8, event=<optimized out>) at /usr/src/debug/MariaDB-/src_0/vio/viosocket.c:116
      #4  0x000055bb87554bbb in vio_read (vio=0x7f98d00083c8, buf=0x7f98d00085d8 "\t", size=4) at /usr/src/debug/MariaDB-/src_0/vio/viosocket.c:182
      #5  0x000055bb874ee945 in my_real_read (net=0x7f98d0000f10, complen=complen@entry=0x7f9930bb8aa8, header=1 '\001') at /usr/src/debug/MariaDB-/src_0/sql/net_serv.cc:1005
      #6  0x000055bb874efe00 in my_net_read_packet_reallen (net=0x7f98d0000f10, read_from_server=<optimized out>, reallen=reallen@entry=0x7f9930bb8af8) at /usr/src/debug/MariaDB-/src_0/sql/net_serv.cc:1286
      #7  0x000055bb874eff0d in my_net_read_packet (net=<optimized out>, read_from_server=<optimized out>) at /usr/src/debug/MariaDB-/src_0/sql/net_serv.cc:1270
      #8  0x000055bb87182d6e in do_command (thd=0x7f98d0000c58, blocking=blocking@entry=true) at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:1265
      #9  0x000055bb8729e667 in do_handle_one_connection (connect=<optimized out>, put_in_cache=true) at /usr/src/debug/MariaDB-/src_0/sql/sql_connect.cc:1416
      #10 0x000055bb8729e9ad in handle_one_connection (arg=arg@entry=0x55bb88fa4c38) at /usr/src/debug/MariaDB-/src_0/sql/sql_connect.cc:1318
      #11 0x000055bb875f5842 in pfs_spawn_thread (arg=0x55bb8a7b38d8) at /usr/src/debug/MariaDB-/src_0/storage/perfschema/pfs.cc:2201
      #12 0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #13 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 12 (Thread 0x7f9930c04700 (LWP 105841)):
      #0  0x00007f993c84e82d in __lll_lock_wait () from /lib64/libpthread.so.0
      #1  0x00007f993c847ad9 in pthread_mutex_lock () from /lib64/libpthread.so.0
      #2  0x000055bb8704d29e in psi_mutex_lock (that=0x55bb88201f80 <LOCK_after_binlog_sync>, file=<optimized out>, line=<optimized out>) at /usr/src/debug/MariaDB-/src_0/mysys/my_thr_init.c:489
      #3  0x000055bb86ffae4c in MYSQL_BIN_LOG::trx_group_commit_leader(MYSQL_BIN_LOG::group_commit_entry*) [clone .cold] () at /usr/src/debug/MariaDB-/src_0/include/mysql/psi/mysql_thread.h:746
      #4  0x000055bb874c3de4 in MYSQL_BIN_LOG::write_transaction_to_binlog_events(MYSQL_BIN_LOG::group_commit_entry*) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:8144
      #5  0x000055bb874c4302 in MYSQL_BIN_LOG::write_transaction_to_binlog(THD*, binlog_cache_mngr*, Log_event*, bool, bool, bool, bool) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:7741
      #6  0x000055bb874c5767 in MYSQL_BIN_LOG::log_and_order(THD*, unsigned long long, bool, bool, bool) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:1783
      #7  0x000055bb873cef69 in ha_commit_trans(THD*, bool) () at /usr/src/debug/MariaDB-/src_0/sql/handler.cc:1896
      #8  0x000055bb872aee93 in trans_commit_stmt (thd=0x55bb895e13a8) at /usr/src/debug/MariaDB-/src_0/sql/transaction.cc:472
      #9  0x000055bb87178d89 in mysql_execute_command(THD*, bool) () at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:6073
      #10 0x000055bb8717e131 in mysql_parse(THD*, char*, unsigned int, Parser_state*) () at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:8043
      #11 0x000055bb8718102d in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) () at /usr/src/debug/MariaDB-/src_0/sql/sql_class.h:1368
      #12 0x000055bb87182e12 in do_command (thd=0x55bb895e13a8, blocking=blocking@entry=true) at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:1416
      #13 0x000055bb8729e667 in do_handle_one_connection (connect=<optimized out>, put_in_cache=true) at /usr/src/debug/MariaDB-/src_0/sql/sql_connect.cc:1416
      #14 0x000055bb8729e9ad in handle_one_connection (arg=arg@entry=0x55bb89535c88) at /usr/src/debug/MariaDB-/src_0/sql/sql_connect.cc:1318
      #15 0x000055bb875f5842 in pfs_spawn_thread (arg=0x55bb89535cf8) at /usr/src/debug/MariaDB-/src_0/storage/perfschema/pfs.cc:2201
      #16 0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #17 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 11 (Thread 0x7f9930c4f700 (LWP 105835)):
      #0  0x00007f993c84f3d7 in pread64 () from /lib64/libpthread.so.0
      #1  0x000055bb8771af85 in pread64 (__offset=16384, __nbytes=16384, __buf=0x7f990b6f0000, __fd=31) at /usr/include/bits/unistd.h:99
      #2  SyncFileIO::execute (request=..., this=<synthetic pointer>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/os/os0file.cc:702
      #3  os_file_io (in_type=..., file=31, buf=<optimized out>, n=<optimized out>, offset=16384, err=0x7f9930c493f0) at /usr/src/debug/MariaDB-/src_0/storage/innobase/os/os0file.cc:2771
      #4  0x000055bb8771b6e9 in os_file_pread (err=0x7f9930c493f0, offset=<optimized out>, n=<optimized out>, buf=<optimized out>, file=<optimized out>, type=...) at /usr/src/debug/MariaDB-/src_0/storage/innobase/os/os0file.cc:2929
      #5  os_file_read_page (type=..., file=<optimized out>, buf=<optimized out>, offset=<optimized out>, n=<optimized out>, o=0x0, exit_on_err=true) at /usr/src/debug/MariaDB-/src_0/storage/innobase/os/os0file.cc:2962
      #6  0x000055bb8771b866 in os_file_read_func (n=16384, offset=16384, buf=0x7f990b6f0000, file=<optimized out>, type=...) at /usr/src/debug/MariaDB-/src_0/storage/innobase/os/os0file.cc:3367
      #7  os_aio (type=..., buf=0x7f990b6f0000, offset=16384, n=n@entry=16384) at /usr/src/debug/MariaDB-/src_0/storage/innobase/os/os0file.cc:3865
      #8  0x000055bb878334f0 in fil_space_t::io (this=this@entry=0x55bb893c80a8, type=..., offset=<optimized out>, len=len@entry=16384, buf=<optimized out>, bpage=bpage@entry=0x7f9909c40ec0) at /usr/src/debug/MariaDB-/src_0/storage/innobase/include/os0file.h:211
      #9  0x000055bb8780164c in buf_read_page_low (unzip=false, zip_size=140295924914640, page_id=..., mode=132, sync=true, space=0x55bb893c80a8, err=<synthetic pointer>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/include/os0file.h:215
      #10 buf_read_page (page_id=page_id@entry=..., zip_size=zip_size@entry=0) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0rea.cc:457
      #11 0x000055bb87095bbe in buf_page_get_low (page_id=..., zip_size=<optimized out>, rw_latch=<optimized out>, guess=0x0, mode=<optimized out>, mtr=<optimized out>, err=<optimized out>, allow_ibuf_merge=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0buf.cc:2496
      #12 0x000055bb876f3434 in ibuf_merge_or_delete_for_page(buf_block_t*, page_id_t, unsigned long) () at /usr/src/debug/MariaDB-/src_0/storage/innobase/include/buf0types.h:135
      #13 0x000055bb8709493e in buf_page_create_low (page_id=..., zip_size=0, mtr=0x7f9930c4af90, free_block=0x7f9909c439e0) at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0buf.cc:3273
      #14 0x000055bb87848537 in fsp_page_create (space=0x55bb893c80a8, offset=642, mtr=0x7f9930c4af90) at /usr/src/debug/MariaDB-/src_0/storage/innobase/include/fil0fil.h:743
      #15 0x000055bb87849449 in fseg_alloc_free_page_low (space=0x55bb893c80a8, seg_inode=0x7f990e4d00f2 <error: Cannot access memory at address 0x7f990e4d00f2>, iblock=0x7f9909cb39c0, hint=<optimized out>, direction=<optimized out>, mtr=0x7f9930c4af90, init_mtr=0x7f9930c4af90, err=0x7f9930c4a8d0) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fsp/fsp0fsp.cc:2223
      #16 0x000055bb8784b160 in fseg_alloc_free_page_general (seg_header=0x7f990cae004a <error: Cannot access memory at address 0x7f990cae004a>, hint=642, direction=<optimized out>, has_done_reservation=<optimized out>, mtr=0x7f9930c4af90, init_mtr=0x7f9930c4af90, err=0x7f9930c4a8d0) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fsp/fsp0fsp.cc:2278
      #17 0x000055bb877c9e9d in btr_page_split_and_insert (flags=0, cursor=<optimized out>, offsets=0x7f9930c4a9c8, heap=0x7f9930c4a9c0, tuple=0x7f98c3a1dee0, n_ext=0, mtr=0x7f9930c4af90, err=0x7f9930c4a8d0) at /usr/src/debug/MariaDB-/src_0/storage/innobase/btr/btr0btr.cc:2944
      #18 0x000055bb877dfda8 in btr_cur_pessimistic_insert(unsigned long, btr_cur_t*, unsigned short**, mem_block_info_t**, dtuple_t*, unsigned char**, big_rec_t**, unsigned long, que_thr_t*, mtr_t*) () at /usr/src/debug/MariaDB-/src_0/storage/innobase/include/buf0types.h:135
      #19 0x000055bb87754cf2 in row_ins_clust_index_entry_low (flags=<optimized out>, mode=<optimized out>, index=0x7f98c3a321c0, n_uniq=<optimized out>, entry=0x7f98c3a1dee0, n_ext=<optimized out>, thr=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0ins.cc:2772
      #20 0x000055bb877594af in row_ins_clust_index_entry (index=0x7f98c3a321c0, entry=0x7f98c3a1dee0, thr=0x7f98c3bc82a8, n_ext=0) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0ins.cc:3168
      #21 0x000055bb87759e95 in row_ins_index_entry (thr=0x7f98c3bc82a8, entry=<optimized out>, index=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0ins.cc:3277
      #22 row_ins_index_entry_step (thr=0x7f98c3bc82a8, node=0x7f98c3bc8048) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0ins.cc:3445
      #23 row_ins (thr=0x7f98c3bc82a8, node=0x7f98c3bc8048) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0ins.cc:3591
      #24 row_ins_step (thr=thr@entry=0x7f98c3bc82a8) at /usr/src/debug/MariaDB-/src_0/storage/innobase/row/row0ins.cc:3731
      #25 0x000055bb8773f806 in que_thr_step (thr=0x7f98c3bc82a8) at /usr/src/debug/MariaDB-/src_0/storage/innobase/que/que0que.cc:653
      #26 que_run_threads_low (thr=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/que/que0que.cc:730
      #27 que_run_threads (thr=0x7f98c3bc82a8) at /usr/src/debug/MariaDB-/src_0/storage/innobase/que/que0que.cc:750
      #28 0x000055bb8786c6f9 in fts_eval_sql (trx=trx@entry=0x7f9931597d80, graph=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0sql.cc:163
      #29 0x000055bb8785a18f in fts_write_node (trx=0x7f9931597d80, graph=0x7f98c8039880, fts_table=0x7f9930c4bdf0, word=<optimized out>, node=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:3763
      #30 0x000055bb8785f4d4 in fts_sync_write_words (index_cache=0x7f98c8039810, trx=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:3877
      #31 fts_sync_index (index_cache=0x7f98c8039810, sync=0x7f98c8039710) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:3960
      #32 fts_sync (sync=0x7f98c8039710) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:4107
      #33 0x000055bb87860579 in fts_sync_table (table=<optimized out>, table=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:4147
      #34 fts_sync_table (table=0x7f98c8038c70) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:4147
      #35 fts_add_doc_by_id (ftt=<optimized out>, doc_id=1015531) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:3494
      #36 0x000055bb87860fb5 in fts_add (ftt=<optimized out>, row=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:2748
      #37 0x000055bb87861186 in fts_modify (row=<optimized out>, ftt=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:2862
      #38 fts_commit_table (ftt=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:2914
      #39 fts_commit (trx=trx@entry=0x7f9931595c80) at /usr/src/debug/MariaDB-/src_0/storage/innobase/fts/fts0fts.cc:2959
      #40 0x000055bb8708f036 in trx_t::commit_low (this=0x7f9931595c80, mtr=0x7f9930c4cb60) at /usr/src/debug/MariaDB-/src_0/storage/innobase/trx/trx0trx.cc:1440
      #41 0x000055bb877b6215 in trx_t::commit_persist (this=0x7f9931595c80) at /usr/src/debug/MariaDB-/src_0/storage/innobase/trx/trx0trx.cc:1490
      #42 0x000055bb877b6402 in trx_t::commit (this=0x7f9931595c80) at /usr/src/debug/MariaDB-/src_0/storage/innobase/trx/trx0trx.cc:1616
      #43 trx_commit_for_mysql (trx=0x7f9931595c80) at /usr/src/debug/MariaDB-/src_0/storage/innobase/trx/trx0trx.cc:1616
      #44 0x000055bb876a634c in innobase_commit_ordered(handlerton*, THD*, bool) () at /usr/src/debug/MariaDB-/src_0/storage/innobase/handler/ha_innodb.cc:4395
      #45 0x000055bb874bcc8d in TC_LOG::run_commit_ordered (this=<optimized out>, thd=0x7f98c8000c58, all=false) at /usr/src/debug/MariaDB-/src_0/sql/log.cc:9393
      #46 0x000055bb874c3aa9 in MYSQL_BIN_LOG::trx_group_commit_leader(MYSQL_BIN_LOG::group_commit_entry*) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:8567
      #47 0x000055bb874c3de4 in MYSQL_BIN_LOG::write_transaction_to_binlog_events(MYSQL_BIN_LOG::group_commit_entry*) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:8144
      #48 0x000055bb874c4302 in MYSQL_BIN_LOG::write_transaction_to_binlog(THD*, binlog_cache_mngr*, Log_event*, bool, bool, bool, bool) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:7741
      #49 0x000055bb874c5767 in MYSQL_BIN_LOG::log_and_order(THD*, unsigned long long, bool, bool, bool) () at /usr/src/debug/MariaDB-/src_0/sql/log.cc:1783
      #50 0x000055bb873cef69 in ha_commit_trans(THD*, bool) () at /usr/src/debug/MariaDB-/src_0/sql/handler.cc:1896
      #51 0x000055bb872aee93 in trans_commit_stmt (thd=0x7f98c8000c58) at /usr/src/debug/MariaDB-/src_0/sql/transaction.cc:472
      #52 0x000055bb87178d89 in mysql_execute_command(THD*, bool) () at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:6073
      #53 0x000055bb8717e131 in mysql_parse(THD*, char*, unsigned int, Parser_state*) () at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:8043
      #54 0x000055bb8718102d in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) () at /usr/src/debug/MariaDB-/src_0/sql/sql_class.h:1368
      #55 0x000055bb87182e12 in do_command (thd=0x7f98c8000c58, blocking=blocking@entry=true) at /usr/src/debug/MariaDB-/src_0/sql/sql_parse.cc:1416
      #56 0x000055bb8729e667 in do_handle_one_connection (connect=<optimized out>, put_in_cache=true) at /usr/src/debug/MariaDB-/src_0/sql/sql_connect.cc:1416
      #57 0x000055bb8729e9ad in handle_one_connection (arg=arg@entry=0x55bb895af7f8) at /usr/src/debug/MariaDB-/src_0/sql/sql_connect.cc:1318
      #58 0x000055bb875f5842 in pfs_spawn_thread (arg=0x55bb8955edf8) at /usr/src/debug/MariaDB-/src_0/storage/perfschema/pfs.cc:2201
      #59 0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #60 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 10 (Thread 0x7f9930c9a700 (LWP 105832)):
      #0  0x00007f993bbab8dc in sigtimedwait () from /lib64/libc.so.6
      #1  0x000055bb8709ccc3 in my_sigwait (code=<synthetic pointer>, sig=0x7f9930c99ae8, set=0x7f9930c99af0) at /usr/src/debug/MariaDB-/src_0/include/my_pthread.h:195
      #2  signal_hand (arg=arg@entry=0x0) at /usr/src/debug/MariaDB-/src_0/sql/mysqld.cc:3183
      #3  0x000055bb875f5842 in pfs_spawn_thread (arg=0x55bb895030a8) at /usr/src/debug/MariaDB-/src_0/storage/perfschema/pfs.cc:2201
      #4  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #5  0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 9 (Thread 0x7f99055fa700 (LWP 105829)):
      #0  0x00007f993c84b45c in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x00007f993c3608f0 in std::condition_variable::wait(std::unique_lock<std::mutex>&) () from /lib64/libstdc++.so.6
      #2  0x000055bb8788fb1b in tpool::waitable_task::wait (this=this@entry=0x55bb88a61e20 <purge_worker_task>, lk=...) at /usr/src/debug/MariaDB-/src_0/tpool/task.cc:63
      #3  0x000055bb8788fb84 in tpool::waitable_task::wait (this=this@entry=0x55bb88a61e20 <purge_worker_task>) at /usr/src/debug/MariaDB-/src_0/tpool/task.cc:69
      #4  0x000055bb8708d52d in trx_purge_wait_for_workers_to_complete () at /usr/src/debug/MariaDB-/src_0/storage/innobase/trx/trx0purge.cc:1336
      #5  trx_purge (n_tasks=<optimized out>, truncate=<optimized out>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/trx/trx0purge.cc:1404
      #6  0x000055bb8779669d in purge_coordinator_state::do_purge (this=this@entry=0x55bb88a94c00 <purge_state>) at /usr/src/debug/MariaDB-/src_0/storage/innobase/srv/srv0srv.cc:1746
      #7  0x000055bb87796382 in purge_coordinator_callback () at /usr/src/debug/MariaDB-/src_0/storage/innobase/srv/srv0srv.cc:1901
      #8  0x000055bb8788f5e9 in tpool::task_group::execute (this=0x55bb88a94aa0 <purge_coordinator_task_group>, t=0x55bb88a94a00 <purge_coordinator_task>) at /usr/src/debug/MariaDB-/src_0/tpool/task_group.cc:55
      #9  0x000055bb8788d70f in tpool::thread_pool_generic::worker_main (this=0x55bb88fa4e60, thread_var=0x55bb88fa5390) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:580
      #10 0x00007f993c366ba3 in execute_native_thread_routine () from /lib64/libstdc++.so.6
      #11 0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #12 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 8 (Thread 0x7f9930ce5700 (LWP 105827)):
      #0  0x00007f993c84b45c in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x000055bb8704d5eb in psi_cond_wait (that=0x55bb88202ce0 <mysql_bin_log+3232>, mutex=0x55bb88202cb0 <mysql_bin_log+3184>, file=<optimized out>, line=<optimized out>) at /usr/src/debug/MariaDB-/src_0/mysys/my_thr_init.c:596
      #2  0x000055bb86ffaa57 in binlog_background_thread.cold () at /usr/src/debug/MariaDB-/src_0/include/mysql/psi/mysql_thread.h:1070
      #3  0x000055bb875f5842 in pfs_spawn_thread (arg=0x55bb893f9ef8) at /usr/src/debug/MariaDB-/src_0/storage/perfschema/pfs.cc:2201
      #4  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #5  0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 7 (Thread 0x7f9930d30700 (LWP 105826)):
      #0  0x00007f993c84b45c in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x000055bb8704d5eb in psi_cond_wait (that=0x55bb881d4400 <COND_manager>, mutex=0x55bb881d4440 <LOCK_manager>, file=<optimized out>, line=<optimized out>) at /usr/src/debug/MariaDB-/src_0/mysys/my_thr_init.c:596
      #2  0x000055bb86fe92ac in inline_mysql_cond_wait (that=0x55bb881d4400 <COND_manager>, mutex=0x55bb881d4440 <LOCK_manager>, src_file=0x55bb879c0390 "/home/jenkins/workspace/Build-Package/padding_for_CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX_ON_ES_BACKUP_DEBUGSOURCE/sql/sql_manager.cc", src_line=103) at /usr/src/debug/MariaDB-/src_0/include/mysql/psi/mysql_thread.h:1070
      #3  handle_manager (arg=arg@entry=0x0) at /usr/src/debug/MariaDB-/src_0/sql/sql_manager.cc:103
      #4  0x000055bb875f5842 in pfs_spawn_thread (arg=0x55bb88ea4d98) at /usr/src/debug/MariaDB-/src_0/storage/perfschema/pfs.cc:2201
      #5  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #6  0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 6 (Thread 0x7f9907bff700 (LWP 105823)):
      #0  0x00007f993c84b7aa in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x000055bb8788cc72 in __gthread_cond_timedwait (__abs_timeout=0x7f9907bfeb80, __mutex=<optimized out>, __cond=0x55bb88fa5190) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/x86_64-redhat-linux/bits/gthr-default.h:872
      #2  std::condition_variable::__wait_until_impl<std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (__lock=..., __lock=..., __atime=<synthetic pointer>..., this=0x55bb88fa5190) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:232
      #3  std::condition_variable::wait_until<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (__atime=..., __lock=..., this=0x55bb88fa5190) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:141
      #4  std::condition_variable::wait_for<long, std::ratio<1l, 1000l> > (__rtime=..., __rtime=..., __lock=..., this=0x55bb88fa5190) at /opt/rh/gcc-toolset-10/root/usr/include/c++/10/condition_variable:172
      #5  tpool::thread_pool_generic::wait_for_tasks (this=this@entry=0x55bb88fa4e60, lk=..., thread_data=thread_data@entry=0x55bb88fa5190) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:480
      #6  0x000055bb8788d5bd in tpool::thread_pool_generic::get_task (this=0x55bb88fa4e60, thread_var=0x55bb88fa5190, t=0x7f9907bfec28) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:533
      #7  0x000055bb8788d71d in tpool::thread_pool_generic::worker_main (this=0x55bb88fa4e60, thread_var=0x55bb88fa5190) at /usr/src/debug/MariaDB-/src_0/tpool/tpool_generic.cc:578
      #8  0x00007f993c366ba3 in execute_native_thread_routine () from /lib64/libstdc++.so.6
      #9  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #10 0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 5 (Thread 0x7f9930b30700 (LWP 105822)):
      #0  0x00007f993c84b7aa in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x000055bb877fd577 in buf_flush_page_cleaner () at /usr/src/debug/MariaDB-/src_0/storage/innobase/buf/buf0flu.cc:2239
      #2  0x00007f993c366ba3 in execute_native_thread_routine () from /lib64/libstdc++.so.6
      #3  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #4  0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 4 (Thread 0x7f9931531700 (LWP 105821)):
      #0  0x00007f993bb959bd in syscall () from /lib64/libc.so.6
      #1  0x000055bb878900b5 in my_getevents (min_nr=1, nr=256, ev=0x7f993152ec20, ctx=<optimized out>) at /usr/src/debug/MariaDB-/src_0/tpool/aio_linux.cc:104
      #2  tpool::aio_linux::getevent_thread_routine (aio=0x55bb88fe7ce0) at /usr/src/debug/MariaDB-/src_0/tpool/aio_linux.cc:104
      #3  0x00007f993c366ba3 in execute_native_thread_routine () from /lib64/libstdc++.so.6
      #4  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #5  0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 3 (Thread 0x7f9932194700 (LWP 105820)):
      #0  0x00007f993c84b7aa in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x000055bb8704d664 in psi_cond_timedwait (that=0x55bb88a07b20 <COND_checkpoint>, mutex=0x55bb88a07b60 <LOCK_checkpoint>, abstime=abstime@entry=0x7f9932193b90, file=file@entry=0x55bb87b21c30 "/home/jenkins/workspace/Build-Package/padding_for_CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX_ON_ES_BACKUP_DEBUGSOURCE/storage/maria/ma_servicethread.c", line=line@entry=115) at /usr/src/debug/MariaDB-/src_0/mysys/my_thr_init.c:609
      #2  0x000055bb86fff709 in inline_mysql_cond_timedwait (src_file=0x55bb87b21c30 "/home/jenkins/workspace/Build-Package/padding_for_CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX_ON_ES_BACKUP_DEBUGSOURCE/storage/maria/ma_servicethread.c", src_line=115, abstime=0x7f9932193b90, mutex=<optimized out>, that=<optimized out>) at /usr/src/debug/MariaDB-/src_0/include/mysql/psi/mysql_thread.h:1086
      #3  my_service_thread_sleep (control=control@entry=0x55bb88134de0 <checkpoint_control>, sleep_time=sleep_time@entry=30000000000) at /usr/src/debug/MariaDB-/src_0/storage/maria/ma_servicethread.c:115
      #4  0x000055bb87584c5f in ma_checkpoint_background (arg=arg@entry=0x1e) at /usr/src/debug/MariaDB-/src_0/storage/maria/ma_checkpoint.c:725
      #5  0x000055bb875f5842 in pfs_spawn_thread (arg=0x55bb88f90938) at /usr/src/debug/MariaDB-/src_0/storage/perfschema/pfs.cc:2201
      #6  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #7  0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 2 (Thread 0x7f993e483700 (LWP 105819)):
      #0  0x00007f993c84b7aa in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
      #1  0x000055bb8704d664 in psi_cond_timedwait (that=that@entry=0x55bb88aa4400 <COND_timer>, mutex=mutex@entry=0x55bb88aa4440 <LOCK_timer>, abstime=abstime@entry=0x7f993e482c00, file=file@entry=0x55bb87ba82f0 "/home/jenkins/workspace/Build-Package/padding_for_CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX_ON_ES_BACKUP_DEBUGSOURCE/mysys/thr_timer.c", line=line@entry=321) at /usr/src/debug/MariaDB-/src_0/mysys/my_thr_init.c:609
      #2  0x000055bb8704d948 in inline_mysql_cond_timedwait (that=0x55bb88aa4400 <COND_timer>, mutex=0x55bb88aa4440 <LOCK_timer>, src_file=0x55bb87ba82f0 "/home/jenkins/workspace/Build-Package/padding_for_CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX_ON_ES_BACKUP_DEBUGSOURCE/mysys/thr_timer.c", src_line=321, abstime=0x7f993e482c00) at /usr/src/debug/MariaDB-/src_0/include/mysql/psi/mysql_thread.h:1086
      #3  timer_handler (arg=arg@entry=0x0) at /usr/src/debug/MariaDB-/src_0/mysys/thr_timer.c:321
      #4  0x000055bb875f5842 in pfs_spawn_thread (arg=0x55bb88eced68) at /usr/src/debug/MariaDB-/src_0/storage/perfschema/pfs.cc:2201
      #5  0x00007f993c8451cf in start_thread () from /lib64/libpthread.so.0
      #6  0x00007f993bb95e73 in clone () from /lib64/libc.so.6
       
      Thread 1 (Thread 0x7f993e6539c0 (LWP 105818)):
      #0  0x00007f993bc810e1 in poll () from /lib64/libc.so.6
      #1  0x000055bb870a4e4a in poll (__timeout=-1, __nfds=<optimized out>, __fds=<optimized out>) at /usr/include/bits/poll2.h:46
      #2  handle_connections_sockets () at /usr/src/debug/MariaDB-/src_0/sql/mysqld.cc:6221
      #3  0x000055bb870a6172 in mysqld_main (argc=<optimized out>, argv=<optimized out>) at /usr/src/debug/MariaDB-/src_0/sql/mysqld.cc:5926
      #4  0x00007f993bb96d85 in __libc_start_main () from /lib64/libc.so.6
      #5  0x000055bb8709a57e in _start () at /usr/src/debug/MariaDB-/src_0/sql/sql_basic_types.h:154
      

      Attachments

        Issue Links

          Activity

            People

              thiru Thirunarayanan Balathandayuthapani
              rpizzi Rick Pizzi
              Votes:
              3 Vote for this issue
              Watchers:
              11 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.