Process more volume files in lambda

0

Hi I am trying to create new volume based on the existing instance

instance - snapshot - (copy) - taking volume -- create new volume in lambda function My logic is running upto 60 GB but getting timed out from lambda more than 60 GB . . Could you please help me which on service i need to use for more size of volumes

Appreciate your help

asked a month ago244 views
2 Answers
2

For operations that involve large volumes that result in timeouts in Lambda, consider the following alternatives:

  • Ensure your Lambda function has the maximum allowed execution time (15 minutes) and sufficient memory.
  • Use AWS Step Functions to orchestrate workflows that exceed Lambda's 15-minute limit by breaking the process into smaller steps.
  • Look into AWS DataSync for efficient data transfer tasks, especially for large datasets.
  • Employ AWS Elastic File System (EFS) with Lambda for handling large datasets beyond Lambda’s storage limit.

If this has answered your question or was helpful, accepting the answer would be greatly appreciated. Thank you!

profile picture
EXPERT
answered a month ago
profile picture
EXPERT
reviewed a month ago
profile picture
EXPERT
reviewed a month ago
0

I would use StepFunctions instead of Lambda. There is no need to pay for the Lambda duration while it is waiting for the snapshot to finish. You can have a state to snapshot the volume directly, no need to invoke a Lambda function.

profile pictureAWS
EXPERT
Uri
answered a month ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions