Transfer files (1GB to 2G) from web url to S3 on a schedule

0

My customer has a use case to access file from a web url periodically and upload to S3. This is currently implemented using lambda with schedule trigger and is working well for smaller files. But larger files need higher memory settings in lambda. Is there a way to directly upload to S3 without storing in memory or are there better serverless implementation options for this use case?

AWS
質問済み 4年前300ビュー
1回答
0
承認された回答

I've previously used a very small container running in ECS for this. ECS has scheduling in-built, so you simply set it the schedule appropriately, and it runs regularly thereafter.

The container I used was built on Alpine, and used wget to pull the files I needed.

AWS
エキスパート
回答済み 4年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ