无法将Google Cloud SQL升级到第二代

时间:2019-07-12 04:59:59

标签: google-cloud-platform google-cloud-sql

我无法使用控制台中的MySQL Second Generation升级向导将第一代Google Cloud Instance升级到第二代实例。 在检查配置屏幕上,我得到发现使用MEMORY存储引擎的表错误,由于该错误,我无法进一步进行操作,如屏幕截图所示  Error in Console 根据{{​​3}}上的文档,我已经使用文档中提到的查询进行了验证。

Upgrading a First Generation instance to Second Generation

SELECT table_schema, table_name, table_type
   FROM information_schema.tables
   WHERE engine = 'MEMORY' AND
   table_schema NOT IN
   ('mysql','information_schema','performance_schema');

但使用MEMORY存储引擎找不到没有表,如下所示。

Documentation

1 个答案:

答案 0 :(得分:2)

我设法解决了该错误,并继续进行升级。在开始升级过程之前,我必须从Performance_schema数据库中删除一个不使用PERFORMANCE_SCHEMA存储引擎的表。似乎Google Cloud控制台出现了不相关的错误