Increase of Lambda deployment package quota max

0

What is the best way to push for an increase of the Lambda deployment package quota max? Both zipped and unzipped. Currently, they sit at 50 MB and 250 MB, respectively (https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html).

Even one of AWS's own Python libraries exceeds this maximum: https://github.com/aws/aws-sdk-pandas/issues/2761

gefragt vor einem Monat175 Aufrufe
1 Antwort
1

Hello.

The size of your deployment package probably cannot be increased.
So I think you can get around the limitation by mounting EFS from Lambda or creating a custom runtime using Docker containers.
https://docs.aws.amazon.com/lambda/latest/dg/services-efs.html

If you use a custom runtime, you can use up to 10GB.
https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-types

Lambda supports a maximum uncompressed image size of 10 GB, including all layers.

profile picture
EXPERTE
beantwortet vor einem Monat
profile picture
EXPERTE
überprüft vor einem Monat
profile picture
EXPERTE
überprüft vor einem Monat
  • Thanks for your reply.

    The size of your deployment package probably cannot be increased.

    Why not? The current limit "feels" somewhat arbitrary.

    In the same deployment package size quota limit documentation that I referenced, it says "this quota applies to all the files you upload, including layers and custom runtimes." What "custom runtimes" is that referring to if not Docker containers?

    I'll look into using EFS or Docker. My concern with those is increased initialization time, on every trigger of a Lambda function, over using the standard AWS base image. How concerned should I be about that? I'll look more at https://docs.aws.amazon.com/lambda/latest/dg/images-create.html.

  • Actually, moving to container image for larger packages will reduce the startup time compared to zip files.

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen