DEV Community

Danielle Heberling for AWS Heroes

Posted on • Originally published at danielleheberling.xyz on

Ephemeral Jobs Longer than the Lambda Timeout

horse race

Photo by Mathew Schwartz on Unsplash

The Problem

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. 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). 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?

A Solution

One option is to use ECS run-task with a Fargate launch type.

AWS Resources Needed:

  • An ECS Cluster - a logical grouping of tasks or services (in my example we're using the default cluster that comes with new AWS accounts)
  • A Task Definition - a blueprint for your application which contains one or more containers and parameters to run
  • A Container - a lightweight, standalone, executable package of software that includes everything needed to run an application. This is commonly used with Docker.

Once those resources are deployed, the container can be triggered to run on demand with ECS run-task. Once the code is done running and the container exits, then the running ECS Task will disappear. The benefit is that you'll no longer be charged money for a running Fargate task.

There's a few ways to run an ECS task on demand:

  • AWS CLI
  • AWS SDK (could invoke from within Lambda etc)
  • In a Step Function state
  • EventBridge Scheduler
  • AWS Console

Here's an example of what this command looks like via the AWS CLI:

aws ecs run-task \
  --cluster default \
  --task-definition my-task \
  --launch-type FARGATE \
  --network-configuration "awsvpcConfiguration={subnets=[subnet1,subnet2],securityGroups=[securityGroup1],assignPublicIp=ENABLED}"

Enter fullscreen mode Exit fullscreen mode

Show Me the Code

There's a full code example of how to deploy these cloud resources and invoke the deployed task via ecs run-task with the AWS CLI.

Take a look at the README file for directions.

Bonus

There are a few more benefits to ECS run-task that I won't mention, but one notable one is the ability to override specific things in the task definition.

For example, if you want to override the CMD defined in the Dockerfile used to build the Container Image for the task, you could do this by adding the --overrides flag.

aws ecs run-task \
  --cluster default \
  --task-definition my-task \
  --launch-type FARGATE \
  --network-configuration "awsvpcConfiguration={subnets=[subnet1,subnet2],securityGroups=[securityGroup1],assignPublicIp=ENABLED}" \
  --overrides '{"containerOverrides":[{"name":"my-container","command":["npm", "run", "migrate"]}]}'

Enter fullscreen mode Exit fullscreen mode

I've seen this used for one off commands that need to run every now and then such as database migrations, though I'm certain there are other good use cases. Here's the full list of what can be overridden.

Special thanks to Chase Douglas for giving me this idea. 🙌🏻

Top comments (0)