场景描述
包含全量迁移/同步的任务,在进行全量迁移时失败,错误日志信息包含“The MySQL server is running with the --super-read-only option so it cannot execute this statement”。
关键词
--super-read-only
可能原因
目标库的空间不足导致目标库处于只读状态。
修复方法
-
在目标库执行以下命令,取消数据库只读状态。
set global read_only=0;
-
检查目标库是否存在因为Out of memory导致的进程重启,若存在,提升数据库的内存。
-
数据库恢复正常可写后,重新启动任务。