Most suitable approach to set up AWS and job scheduling for a Django REST app

0

I'm new to AWS and working on setting up a Django Rest backend for my (relatively simple) app using PostgreSQL.

For each user, I want it to automatically schedule the following:

  1. An hourly task, which involves obtaining simple data from the database, and sending out a request to an external API,
  2. Performing a daily task (once each day) consisting of a simple database retrieval and a 5-second computation.

In the future, I want to add web requests as well, which involves users to be able to obtain some KPIs from the database.

Would it be best to set up the app by scheduling the tasks using Lambda functions and CloudWatch, or set up an EC2 instance and handle the scheduling by Celery for example? Any other suggestions or tips (e.g. related to scalability) are welcome.

I really appreciate your help, thanks!

2回答
1
承認された回答

In the case of 1000+ users no because cost will be increased to a big value. In this case you can use the EC2+autoscaling group.

Regards, Andrii

profile picture
エキスパート
回答済み 7ヶ月前
1

Hello.

If you're just starting out and your tasks are short-lived, going the Lambda + CloudWatch route is simpler, possibly cheaper, and requires less maintenance. CloudWatch can trigger your Lambda function at desired intervals, and your Django REST backend can reside in AWS Lambda as well using frameworks like Zappa.

Regards, Andrii

profile picture
エキスパート
回答済み 7ヶ月前
  • Thanks for your help. Would you also recommended this route when adding the handling of web requests and scaling to 1000+ users?

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

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

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

関連するコンテンツ