JSON to DocumentDB

0

I have a big JSON file parsed within my Flutter frontend application. Originally, I have placed this JSON in an S3 bucket with CloudFront origin access identity settings. What do you recommend in case I want to migrate the JSON file to DocumentDB? I want to achieve more speed and lazy loading.

1 Answer
0

Hello.

Migration from S3 to DocumentDB may be possible using AWS DMS.
https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DocumentDB.html

However, there is a charge for using DMS, so if the cost is not acceptable, I think it is possible to import the JSON file using "mongoimport" etc.
https://docs.aws.amazon.com/documentdb/latest/developerguide/backup_restore-dump_restore_import_export_data.html#backup_restore-dump_restore_import_export_data-mongoimport

profile picture
EXPERT
answered 2 months ago
  • I noticed that using API gateway with Lambda integration connected to S3 is a lighter solution.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions