博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL 升级时分区表的警告处理
阅读量:6671 次
发布时间:2019-06-25

本文共 1523 字,大约阅读时间需要 5 分钟。

hot3.png

今天将数据库从5.6升级到5.7的过程中发现日志有如下关于分区表的warnings。

eprecated partition engine. You may use the startup option '--disable-partition-engine-check' to skip this check. 2017-12-21T03:08:49.944449Z 0 [Note] Beginning of list of non-natively partitioned tables2017-12-21T03:08:49.947899Z 2 [Warning] The partition engine, used by table 'ddz_log.user_daily_data_change', is deprecated and will be removed in a future release. Please use native partitioning instead.2017-12-21T03:08:49.947967Z 2 [Warning] The partition engine, used by table 'ddz_log.user_daily_log', is deprecated and will be removed in a future release. Please use native partitioning instead.2017-12-21T03:08:49.951217Z 2 [Warning] The partition engine, used by table 'ddz_user_data.user_data', is deprecated and will be removed in a future release. Please use native partitioning instead.2017-12-21T03:08:49.951299Z 2 [Warning] The partition engine, used by table 'ddz_user_data.user_extra_data', is deprecated and will be removed in a future release. Please use native partitioning instead.2017-12-21T03:08:49.957746Z 0 [Note] End of list of non-natively partitioned tables

查看官方文档,有如下解决方案:

As of MySQL 5.7.9, mysql_upgrade looks for and attempts to upgrade partitioned InnoDB tables

that were created using the ha_partition handler. Also in MySQL 5.7.9 and later, you can upgrade
such tables by name in the mysql client using ALTER TABLE ... UPGRADE PARTITIONING.

 只要对警告的分区表 做  ALTER TABLE ... UPGRADE PARTITIONING. 就可以了

 

转载于:https://my.oschina.net/xxj123go/blog/1593179

你可能感兴趣的文章
《Rhino3D 4.0产品造型设计学习手册》——1.2节Rhino 3D的特征
查看>>
新版 Win 10 针对中国市场,改善简体中文输入体验
查看>>
《众妙之门——自由网站设计师成功之道》一1.7 像专业人士一样出击
查看>>
百度 360 诉讼案宣判 360 败诉
查看>>
《SolidWorks 2016中文版机械设计从入门到精通》——2.3 草图编辑
查看>>
《OpenGL编程指南》一1.5 第一个程序:深入分析
查看>>
Reddit 事实核查新方法,人为劝导和智能算法结合
查看>>
Chrome 57 Beta 新特性 改进了 Add to Home Screen
查看>>
Java 学习线路图是怎样的?
查看>>
Spark源码分析 – DAGScheduler
查看>>
《设计模式解析(第2版•修订版)》—第1章 1.6节面向对象范型
查看>>
《手机测试Robotium实战教程》—第2章2.2节Eclipse的安装
查看>>
《Android游戏开发详解》一2.2 设置开发机器
查看>>
《数据分析变革:大数据时代精准决策之道》一第2章 更多数据……巨多数据……大数据!...
查看>>
《万物互联》——2.5 审视无线技术
查看>>
IO调度算法学习
查看>>
《制造业中的机器人、自动化和系统集成》—— 3.8 安全与防护
查看>>
MariaDB Galera Cluster 部署
查看>>
《游戏机制——高级游戏设计技术》一2.4 渐进型游戏
查看>>
《系统分析师UML项目实战》—第1章1.1节现场的作业程序
查看>>