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

preguntada hace 2 meses255 visualizaciones
2 Respuestas
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
EXPERTO
respondido hace 2 meses
profile picture
EXPERTO
revisado hace 2 meses
profile picture
EXPERTO
revisado hace 2 meses
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
EXPERTO
Uri
respondido hace 2 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas