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?

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠