900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > 自适应哈希索引引起的不定时MySQL崩溃重启

自适应哈希索引引起的不定时MySQL崩溃重启

时间:2021-09-21 00:29:12

相关推荐

自适应哈希索引引起的不定时MySQL崩溃重启

数据库|mysql教程

宕机,自适应哈希索引,mysql崩溃重启

数据库-mysql教程

usb摄像头驱动源码,vscode好看的代码字体,ubuntu下载lcm,tomcat 百科,爬虫的论文,html5 php 框架,seo快速软件找超快排,没有网站可以做淘宝客吗lzw

我们先看一下这个报错日志:InnoDB:Warning:alongsemaphorewait:–Thread140593224754944haswaitedatbtr0cur.cline528for241.00secondsthesemaphore:X-lockonRW-

线下交易平台源码,vscode打包h5,ubuntu 删除应用,tomcat不重启服务,兰州爬虫展,php 弹输入框,天门产品seo推广哪家好,网站主题制作,个人风采网站模板lzw

安卓数据恢复 源码,国外用ubuntu多,tomcat自带数据库吗,安卓DHT爬虫,php的变量要由什么组成,seo联盟模板lzw

我们先看一下这个报错日志:

InnoDB: Warning: a long semaphore wait:

–Thread 140593224754944 has waited at btr0cur.c line 528 for 241.00 seconds the semaphore:

X-lock on RW-latch at 0x7fd9142bfcc8 created in file dict0dict.c line 1838

a writer (thread id 140570526021376) has reserved it in mode exclusive

number of readers 0, waiters flag 1, lock_word: 0

Last time read locked in file btr0cur.c line 535

Last time write locked in file /pb2/build/sb_0-10180689-1378752874.69/mysql-5.5.34/storage/innobase/btr/btr0cur.c line 528

InnoDB: Warning: a long semaphore wait:

–Thread 140570431108864 has waited at btr0cur.c line 528 for 241.00 seconds the semaphore:

X-lock on RW-latch at 0x7fd9142bfcc8 created in file dict0dict.c line 1838

a writer (thread id 140570526021376) has reserved it in mode exclusive

number of readers 0, waiters flag 1, lock_word: 0

Last time read locked in file btr0cur.c line 535

Last time write locked in file /pb2/build/sb_0-10180689-1378752874.69/mysql-5.5.34/storage/innobase/btr/btr0cur.c line 528

……………………

END OF INNODB MONITOR OUTPUT

============================

InnoDB: ###### Diagnostic info printed to the standard error stream

InnoDB: Error: semaphore wait has lasted > 600 seconds

InnoDB: We intentionally crash the server, because it appears to be hung.

140101 4:32:58 InnoDB: Assertion failure in thread 140570570065664 in file srv0srv.c line 2502

InnoDB: We intentionally generate a memory trap.

InnoDB: Submit a detailed bug report to

InnoDB: If you get repeated assertion failures or crashes, even

InnoDB: immediately after the mysqld startup, there may be

InnoDB: corruption in the InnoDB tablespace. Please refer to

InnoDB:

InnoDB: about forcing recovery.

20:32:58 UTC – mysqld got signal 6 ;

This could be because you hit a bug. It is also possible that this binary

or one of the libraries it was linked against is corrupt, improperly built,

or misconfigured. This error can also be caused by malfunctioning hardware.

We will try our best to scrape up some info that will hopefully help

diagnose the problem, but since we have already crashed,

something is definitely wrong and this may fail.

key_buffer_size=16777216

read_buffer_size=131072

max_used_connections=608

max_threads=1600

thread_count=516

connection_count=515

It is possible that mysqld could use up to

key_buffer_size + (read_buffer_size + sort_buffer_size)*max_threads = 444459 K bytes of memory

Hope that’s ok; if not, decrease some variables in the equation.

Thread pointer: 0x0

Attempting backtrace. You can use the following information to find out

where mysqld died. If you see no messages after this, something went

terribly wrong…

stack_bottom = 0 thread_stack 0x30000

/usr/local/mysql/bin/mysqld(my_print_stacktrace+0x35)[0x7a5f15]

/usr/local/mysql/bin/mysqld(handle_fatal_signal+0x403)[0x673a13]

/lib/libpthread.so.0(+0xef60)[0x7fde6901cf60]

/lib/libc.so.6(gsignal+0x35)[0x7fde68219165]

/lib/libc.so.6(abort+0x180)[0x7fde6821bf70]

/usr/local/mysql/bin/mysqld[0x7ff2ce]

/lib/libpthread.so.0(+0x68ba)[0x7fde690148ba]

/lib/libc.so.6(clone+0x6d)[0x7fde682b602d]

The manual page at contains

information that should help you find out what is causing the crash.

131231 04:34:11 mysqld_safe Number of processes running now: 0

131231 04:34:11 mysqld_safe mysqld restarted

这台机器凌晨MySQL进程崩溃,错误日志里全都是

InnoDB: Warning: a long semaphore wait

–Thread 140570431108864 has waited at btr0cur.c line 528 for 241.00 seconds the semaphore:

X-lock on RW-latch at 0x7fd9142bfcc8 created in file dict0dict.c line 1838

查看监控图(参考25日至31日)

发现spin waits和OS waits等待时间相当高,,在手册里查到了这一句话:

You can monitor the use of the adaptive hash index and the contention for its use in the SEMAPHORES section of the output of the SHOW ENGINE INNODB STATUS command. If you see many threads waiting on an RW-latch created in btr0sea.c, then it might be useful to disable adaptive hash indexing.

Sometimes, the read/write lock that guards access to the adaptive hash index can become a source of contention under heavy workloads, such as multiple concurrent joins.

由于自适应哈希索引造成大量的锁争用,进而堵塞很多进程,最终导致MySQL崩溃重启。

找到原因后,关闭了自适应哈希索引,观察了一天后(参考性能图1月1日),spin waits和OS waits等待时间逐渐减少。

set global innodb_adaptive_hash_index = 0;

最终病因找到解决之。

参考手册:

本文出自 “贺春旸的技术专栏” 博客,请务必保留此出处

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。