带有 CDC 到 S3 的 AWS DMS。它将如何处理行更新和删除?
AWS DMS with CDC to S3. How would it handle row updates and deletes?
假设我DMS data from e.g. MS SQLS using CDC直接进入S3。
如果 delete 或 update 在 source 数据库中,DMS 会在这些事件发生时在 S3 中创建新的 对象?还是会删除/覆盖前一个?
换句话说,如果我想将数据库的更改历史序列化到 S3,DMS 和 CDC 到 S3 是否可以做到这一点?或者它只是(连续)镜像 S3 中源数据库中的当前值?
By default, the first field in a .CSV record contains the letter I (insert), U (update) or D (delete) to indicate whether the row was inserted, updated, or deleted at the source database.
一直在寻找相同的东西,但它似乎没有序列化 avro/json.
中的记录
假设我DMS data from e.g. MS SQLS using CDC直接进入S3。
如果 delete 或 update 在 source 数据库中,DMS 会在这些事件发生时在 S3 中创建新的 对象?还是会删除/覆盖前一个?
换句话说,如果我想将数据库的更改历史序列化到 S3,DMS 和 CDC 到 S3 是否可以做到这一点?或者它只是(连续)镜像 S3 中源数据库中的当前值?
By default, the first field in a .CSV record contains the letter I (insert), U (update) or D (delete) to indicate whether the row was inserted, updated, or deleted at the source database.
一直在寻找相同的东西,但它似乎没有序列化 avro/json.
中的记录