怎么解决MySQL中InnoDB: Failing assertion: format != 0错误
发表于:2025-01-21 作者:千家信息网编辑
千家信息网最后更新 2025年01月21日,本篇内容介绍了"怎么解决MySQL中InnoDB: Failing assertion: format != 0错误"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大
千家信息网最后更新 2025年01月21日怎么解决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, evenInnoDB: immediately after the mysqld startup, there may beInnoDB: corruption in the InnoDB tablespace. Please refer toInnoDB: 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 binaryor 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 informationcollection 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 memoryHope that's ok; if not, decrease some variables in the equation.Thread pointer: 0x7f86b59eda00Attempting backtrace. You can use the following information to find outwhere mysqld died. If you see no messages after this, something wentterribly wrong...stack_bottom = 700007f03e90 thread_stack 0x400000 mysqld 0x000000010385b12a my_print_stacktrace + 581 mysqld 0x00000001037b7e30 handle_fatal_signal + 6882 libsystem_platform.dylib 0x00007fff7ab81f5a _sigtramp + 263 mysqld 0x0000000104175c4b _ZZN10binary_log4Uuid9to_stringEPKhPcE11byte_to_hex + 788114 libsystem_c.dylib 0x00007fff7a9ac312 abort + 1275 mysqld 0x0000000103ab1471 _Z23ut_dbg_assertion_failedPKcS0_m + 1616 mysqld 0x0000000103970147 _Z11ib_senderrfP3THD14ib_log_level_tjz + 3597 mysqld 0x0000000103982b27 _Z7ib_errfP3THD14ib_log_level_tjPKcz + 1998 mysqld 0x0000000103984f9c _ZL25innobase_alter_tablespaceP10handlertonP3THDP19st_alter_tablespace + 12609 mysqld 0x00000001037353e4 _Z22mysql_alter_tablespaceP3THDP19st_alter_tablespace + 22810 mysqld 0x00000001036c6920 _Z21mysql_execute_commandP3THDb + 1281611 mysqld 0x00000001036c2d28 _Z11mysql_parseP3THDP12Parser_state + 87212 mysqld 0x00000001036c1b98 _Z16dispatch_commandP3THDPK8COM_DATA19enum_server_command + 472813 mysqld 0x00000001036c2789 _Z10do_commandP3THD + 50514 mysqld 0x000000010379ba44 handle_connection + 43615 mysqld 0x0000000103b11756 pfs_spawn_thread + 31016 libsystem_pthread.dylib 0x00007fff7ab8b6c1 _pthread_body + 34017 libsystem_pthread.dylib 0x00007fff7ab8b56d _pthread_body + 018 libsystem_pthread.dylib 0x00007fff7ab8ac5d thread_start + 13Trying to get some variables.Some pointers may be invalid and cause the dump to abort.Query (7f86b589dc30): drop tablespace ts1Connection ID (thread ID): 4Status: NOT_KILLEDThe manual page at http://dev.mysql.com/doc/mysql/en/crashing.html containsinformation that should help you find out what is causing the crash.
3、查看ha_innodb.cc源码的20927行
/******************************************************************//**Use this when the args are passed to the format string fromerrmsg-utf8.txt directly as is.Push a warning message to the client, it is a wrapper around:void push_warning_printf( THD *thd, Sql_condition::enum_condition_level level, uint code, const char *format, ...);*/ void ib_senderrf( /*========*/ THD* thd, /*!< in/out: session */ ib_log_level_t level, /*!< in: warning level */ ib_uint32_t code, /*!< MySQL error code */ ...) /*!< Args */ { va_list args; char* str = NULL; const char* format = innobase_get_err_msg(code); /* If the caller wants to push a message to the client then the caller must pass a valid session handle. */ ut_a(thd != 0); /* The error code must exist in the errmsg-utf8.txt file. */ ut_a(format != 0); va_start(args, code);#ifdef _WIN32 int size = _vscprintf(format, args) + 1; if (size > 0) { str = static_cast(malloc(size)); } if (str == NULL) { va_end(args); return; /* Watch for Out-Of-Memory */ } 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; /* Watch for Out-Of-Memory */ }#else /* Use a fixed length string. */ str = static_cast (malloc(BUFSIZ)); if (str == NULL) { va_end(args); return; /* Watch for Out-Of-Memory */ } my_vsnprintf(str, BUFSIZ, format, args);#endif /* _WIN32 */ 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: /* We can't use push_warning_printf(), it is a hard 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错误"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!
错误
内容
更多
知识
实用
学有所成
接下来
困境
实际
情况
文章
日志
案例
源码
版本
空间
编带
网站
行业
过程
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
金蝶kis迷你版数据库
高二网络技术第一学期期末测试
联想与华三服务器哪个好
软件开发劳务派遣报价
软件开发 制造过程管理创业
数据库数据加密技术des
学校网络安全宣传活动简讯
怎样快速删除数据库2000
网络安全的国际标准
大数据软件开发学什么
征途服务端清空数据库教程
阿里云服务器 ip
山东专升本有网络技术的学校
创建数据库连接在哪
花2万培训软件开发
不可运维性的数据库
计算机运用与网络技术
微软软件开发广告
软件开发分包价格
上海推广网络安全诚信经营
供应网络安全在经济方面的重要性
qq实时传文件会不会存在服务器
软件开发的有关的课题
实验室大型服务器价格
中职学校网络安全培训
服务器机柜辐射大么
园林部门数据库建设意义
计算机网络技术系统组成
如何使用geo数据库
虹口区管理软件开发报价表