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

demandé il y a 2 mois255 vues
2 réponses
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
répondu il y a 2 mois
profile picture
EXPERT
vérifié il y a 2 mois
profile picture
EXPERT
vérifié il y a 2 mois
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
répondu il y a 2 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions