本篇内容介绍了“怎么解决Mysql中InnoDB: Failing assertion: fORMat != 0错误”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习
本篇内容介绍了“怎么解决Mysql中InnoDB: Failing assertion: fORMat != 0错误”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
1、mysql版本5.7.19,OS是Mac OSX在删除表空间时,出现如下错误
[root@localhost][(none)]> drop tablespace ts1;
ERROR 2013 (HY000): Lost connection to Mysql server during query
2、查看error.log日志,看样子有点像是BUG
2018-04-09 16:00:21 0x700007f04000 InnoDB: Assertion failure in thread 123145435496448 in file ha_innodb.cc line 20927 InnoDB: Failing assertion: format != 0 InnoDB: We intentionally generate a memory trap.
InnoDB: Submit a detailed bug report to Http://bugs.mysql.com. 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: http://dev.mysql.com/doc/refman/5.7/en/forcing-innodb-recovery.html InnoDB: about forcing recovery. 08:00:21 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.
Attempting to collect some information that could help diagnose the problem.
As this is a crash and something is definitely wrong, the information
collection process might fail.
key_buffer_size=8388608 read_buffer_size=16777216 max_used_connections=1 max_threads=512 thread_count=2 connection_count=1 It is possible that mysqld could use up to
key_buffer_size + (read_buffer_size + sort_buffer_size)*max_threads = 25180932 K bytes of memory
Hope that's ok; if not, decrease some variables in the equation.
Thread pointer: 0x7f86b59eda00
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 = 700007f03e90 thread_stack 0x40000
0 mysqld 0x000000010385b12a my_print_stacktrace + 58
1 mysqld 0x00000001037b7e30 handle_fatal_signal + 688
2 libsystem_platform.dylib 0x00007fff7ab81f5a _sigtramp + 26
3 mysqld 0x0000000104175c4b _ZZN10binary_log4Uuid9to_stringEPKhPcE11byte_to_hex + 78811
4 libsystem_c.dylib 0x00007fff7a9ac312 abort + 127
5 mysqld 0x0000000103ab1471 _Z23ut_dbg_assertion_failedPKcS0_m + 161
6 mysqld 0x0000000103970147 _Z11ib_senderrfP3THD14ib_log_level_tjz + 359
7 mysqld 0x0000000103982b27 _Z7ib_errfP3THD14ib_log_level_tjPKcz + 199
8 mysqld 0x0000000103984f9c _ZL25innobase_alter_tablespaceP10handlertonP3THDP19st_alter_tablespace + 1260
9 mysqld 0x00000001037353e4 _Z22mysql_alter_tablespaceP3THDP19st_alter_tablespace + 228
10 mysqld 0x00000001036c6920 _Z21mysql_execute_commandP3THDb + 12816
11 mysqld 0x00000001036c2d28 _Z11mysql_parseP3THDP12Parser_state + 872
12 mysqld 0x00000001036c1b98 _Z16dispatch_commandP3THDPK8COM_DATA19enum_server_command + 4728
13 mysqld 0x00000001036c2789 _Z10do_commandP3THD + 505
14 mysqld 0x000000010379ba44 handle_connection + 436
15 mysqld 0x0000000103b11756 pfs_spawn_thread + 310
16 libsystem_pthread.dylib 0x00007fff7ab8b6c1 _pthread_body + 340
17 libsystem_pthread.dylib 0x00007fff7ab8b56d _pthread_body + 0
18 libsystem_pthread.dylib 0x00007fff7ab8ac5d thread_start + 13
Trying to get some variables.
Some pointers may be invalid and cause the dump to abort.
Query (7f86b589dc30): drop tablespace ts1
Connection ID (thread ID): 4
Status: NOT_KILLED
The manual page at http://dev.mysql.com/doc/mysql/en/crashing.html contains
information that should help you find out what is causing the crash.
3、查看ha_innodb.cc源码的20927行
void ib_senderrf( THD* thd, ib_log_level_t level, ib_uint32_t code, ...) {
va_list args;
char* str = NULL; const char* format = innobase_get_err_msg(code); ut_a(thd != 0); ut_a(format != 0);
va_start(args, code);
#ifdef _WIN32
int size = _vscprintf(format, args) + 1; if (size > 0) {
str = static_cast<char*>(malloc(size));
} if (str == NULL) {
va_end(args); return; }
str[size - 1] = 0x0;
vsnprintf(str, size, format, args);
#elif HAVE_VASPRINTF
int ret;
ret = vasprintf(&str, format, args); if (ret < 0) {
va_end(args); return; }
#else str = static_cast<char*>(malloc(BUFSIZ)); if (str == NULL) {
va_end(args); return; }
my_vsnprintf(str, BUFSIZ, format, args);
#endif Sql_condition::enum_severity_level l;
l = Sql_condition::SL_NOTE; switch (level) { case IB_LOG_LEVEL_INFO: break; case IB_LOG_LEVEL_WARN:
l = Sql_condition::SL_WARNING; break; case IB_LOG_LEVEL_ERROR: my_printf_error(code, "%s", MYF(0), str); break; case IB_LOG_LEVEL_FATAL:
l = Sql_condition::SEVERITY_END; break;
} if (level != IB_LOG_LEVEL_ERROR) {
push_warning_printf(thd, l, code, "InnoDB: %s", str);
}
va_end(args);
free(str); if (level == IB_LOG_LEVEL_FATAL) {
ut_error;
}
}
“怎么解决MySQL中InnoDB: Failing assertion: format != 0错误”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!
--结束END--
本文标题: 怎么解决MySQL中InnoDB: Failing assertion: format != 0错误
本文链接: https://www.lsjlt.com/news/65306.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0