Passer au contenu

Cloud function with better GPU

0

I'm currently experimenting with the usage of Lambda to render videos using puppeteer. The lack of a GPU combined with the 15 minutes maximum duration limits the duration of the videos that can be rendered. Is there an infrastructure alternative where I could retain the serverless mode but have more options on the hardware?

demandé il y a 5 ans3,1 k vues

2 réponses
1

You can consider using AWS Fargate with Amazon Elastic Container Service or Amazon Elastic Kubernetes Service for a serverless compute option without the 15 minutes duration constraint. Alas, Fargate wouldn't allow you to request GPU support either.

AWS

répondu il y a 5 ans

  • GPU presence is important.

  • Looks like that once I start requiring GPU in AWS Jobs, then the startup time becomes ridiculous. What's the cost/complexity difference between the option you proposed and AWS Batch? Thanks!

0

You can't specify the runtime environment for AWS Lambda functions, so no, you can't require the presence of a GPU. But you could run GPU workloads on AWS Batch, by using an AMI with GPU support. https://docs.aws.amazon.com/batch/latest/userguide/batch-gpu-ami.html AWS Batch automatically provisions compute resources. There's no need to install or manage batch computing software. AWS Batch jobs are not limited by the 15 minute runtime. Hope this helps

répondu il y a 5 ans

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.