Home > Enterprise >  StepFunctions/Lambda and ECS
StepFunctions/Lambda and ECS

Time:12-30

Here is what I am attempting to do using StepFunctions/Lambda/ECS Fargate python docker

I have a job that is queuing a request and polling to see if the request is complete. Once complete, the file for the request needs to be downloaded. All the above steps, except downloading file is done using Lambda and Choices in Step functions. enter image description here

Question: What I need to do is send the JobID from The "Is File Ready?" Choice to the Fargate/ECS Container so that the python script in the container downloads the file and puts it in S3.

Is this the correct thought process: Somehow in the "Is File Ready?" state the output should include the json that the ECSTaskRun can consume? and this json output should have the Job_id as an evn parameter? Once this is done, the python script can read the job_id as env param, os.environ.get('job_id), and do the remaining items?

Or, am I on the wrong track here.

Also I am deploying everything in Python CDK.

Thanks for the feedback.

CodePudding user response:

You pass parameters to ECS task in SF, using Overrides for your task definition. If you want to pass your variables as env variables, you have to overwrite Environment in ContainerOverrides.

  • Related