Skip to content

Commit

Permalink
More edits
Browse files Browse the repository at this point in the history
  • Loading branch information
deeheber committed Nov 7, 2024
1 parent 3452a9a commit 148aeab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/blog/ECS-Run-Task.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ slug: ecs-run-task

There's an ad-hoc job that runs in the background that doesn't have a client waiting for a synchronous response.

You could run this in AWS Lambda to save money. The huge benefit with an ephemeral job run is that AWS only charges for when the Lambda is running.
You could run this in AWS Lambda to save money. A benefit with an ephemeral job run is that AWS only charges for when the Lambda is running.

Problem is that this specific job runs longer than the Lambda timeout (at the time of writing this it is 15 minutes). Lambda and Serverless solutions are great; however, in this specific case it is not the right tool. We could write extra logic to make it work, but that adds unecessary complexity.
Problem is that this specific job runs longer than the Lambda timeout (at the time of writing this it is 15 minutes). We could write extra logic to make it work, but that adds unnecessary complexity.

You still want to run this ephemerally to save money and resources...so what can you do?

Expand Down

0 comments on commit 148aeab

Please sign in to comment.