AWS - 迁移失败,错误表 '' 中列 '' 的值被截断为 32768 字节

问题描述

我正在使用 AWS DMS 服务将我的 Postgres 数据库迁移到 aurora Postgres,但我得到了一些错误的表

Value of column 'ColumnName' in table 'TableName' was truncated to 32768 bytes,actual length: 110644 bytes

列类型可以是 textjsonb

我可以通过将 include LOB option 更改为 Full LOB mode 而不是 Limited one 来修复它,但这会破坏其他表格

enter image description here

有关如何仅针对这些特定表格自定义该选项的任何提示

解决方法

我通过创建一个新的数据库迁移任务并将包含 LOB 选项 设置为 Full LOB mode

来修复它