Run cron job in AWS

0

Hi Team,

We are planning to run a cron job in AWS, The job will run 60 minutes every day. So we need best AWS resource to do it. 1) If we use EC2, we need to spend money for rest of 23 hours. 2) If we use lambda, it will time out after 25 min 3) AWS batch also not suitable it seems.

So please suggest best option for us here

Regards, Rajesh B

已提問 1 年前檢視次數 548 次
2 個答案
0
已接受的答案

Given that you have ruled out the possibility of using AWS Batch and Lambda does not meet your requirements in terms to total time for execution, there are 2 possible options:-

1 ECS Scheduled Tasks - This would require code to be containerized (docker)

2 Automate starting and stopping of EC2 instances - This solution helps reduce operational costs by stopping resources that are not in use and starting resources when their capacity is needed. Please refer to the below link for more information:- https://docs.aws.amazon.com/solutions/latest/instance-scheduler-on-aws/solution-overview.html

AWS
已回答 1 年前
0

Without knowing more details about the job you're trying to run this is a difficult question to answer. However, a few things to think about:

If the task has to run on EC2, then why not use instance scheduler to run the instance and then shut it down when it is finished? That way you're not paying for the extra 23 hours a day.

An alternative might be to run the task in a container on Fargate and use EventBridge to schedule it.

profile pictureAWS
專家
已回答 1 年前
  • We run the job for report generation on existing data.

    How Fargate works. How the billing will happen for Fragate. I am new to Fragate.

  • Fargate runs containers on demand; you pay for the resources consumed when the containers are running. https://aws.amazon.com/fargate/pricing/

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南