Reputation: 1
I have successfully setup DMS to copy data from RDS (SQL Server) to S3 in csv format (Full load). However, upon running the task, DMS copies the source table and creates multiple csv files in S3 for the single table. Is there any way to make sure that for 1 table, DMS only creates one target csv file in S3?
Upvotes: 0
Views: 692
Reputation: 563
The first full load operation will load all data into one file. For on-going replicated data, migrated data has different format, it contains additional character like this:
So, they can not be merged into one file. You can do this by using Lambda, but it's not a good way:
I suggest to use other DB target like MySQL, Postgres, etc. As they support them all.
Upvotes: 1