Questions tagged [amazon-lambda]
This tag is for questions about Amazon Web Services' "Lambda".
152 questions
0
votes
0
answers
109
views
AWS - consuming free tier SQS queries
I have a simple personal project I work on from time to time to learn AWS.
Recently I received an alert emailk from aws stating that I'm reaching the free tier quota for one or more services with the ...
1
vote
1
answer
1k
views
Best approach to install gdal for rasterio in aws/lambda/python Dockerfile
The python dependencies for an AWS lambda application have exceeded the 250 MB limit for AWS Lambdas. One of these dependencies is rasterio which depends on gdal. I'm attempting to build a docker ...
1
vote
1
answer
165
views
Debugging Lambda Connectivity to EC2
I have a simple Lambda deployed into my VPC that is making a call to an EC2 host in the same VPC (and subnet). They both share an SG and I've used the Reachability Analyzer (from the Lambda ENI to ...
0
votes
1
answer
979
views
AWS: Migrate go1.x runtime to al2 in order to deploy Lambda functions
I'm trying to migrate to the AL2 runtime from go1.x to deploy my Lambda functions but I'm having troubles with how to do so. I use the Serverless Framework for deployment in conjunction with make. ...
0
votes
0
answers
97
views
What AWS architecture would be mosted suited for a SaaS that uses uses git repositories as data storage?
I am currently working on an application that is dealing with frontmatter markdown files 99% of the time (some things have to communicate with a DB like RDS).
Locally, I have a folder that stores all ...
0
votes
1
answer
843
views
Cannot create aws lambda function. error: the following arguments are required: --runtime, --handler
I am trying to deploy an image to be run in aws lambda at a scheduled interval. I have built and tested the image using RIE and locally it runs as it should. Next I have pushed the image to aws ecr to ...
1
vote
1
answer
851
views
Is there an easy way to link AWS Cloudfront authorization to Google Workspaces?
Is there an easy way to link AWS Cloudfront authorisation to Google Workspaces?
I'm trying to achieve single sign on to a Cloudfront hosted static website such that anyone with a corporate email ...
0
votes
0
answers
164
views
What's the best way to deploy large numbers of low-throughput docker containers on AWS?
What's the best, simple way of deploying a lot of containers to AWS? It's necessary to be scalable but cheap if a container sees little or no use.
I have a method of generating docker containers that ...
0
votes
0
answers
769
views
AWS SAM - cannot create stack with api gateway using stage variable for invoked lambda version
Ok, previous question about using different lambda versions on different stages here: AWS - lambda versions to different gateway stages?
Now I'm trying to put it all together using AWS SAM cli but ...
2
votes
1
answer
2k
views
AWS - lambda versions to different gateway stages?
Coming from a "classic/standard" development I'm used to have different deployment stages, e.g. staging and production, each one with its application version.
AWS Lambda functions and API ...
1
vote
1
answer
1k
views
AWS: API gateway 502 error randomly with Runtime segmentation faults
I am using AWS and have an api which is called via API gateway which calls a node.js lambda function.
Very often but randomly I get 502 responses but when I immediately try again with the exact same ...
0
votes
1
answer
628
views
nginx to reverse proxy 2 local lambdas in docker containers
I have 2 lambda functions wrapped in docker containers and am using docker compose to run them together. One runs on port 9000 the other on port 9001. I am trying to use nginx to allow them to both ...
0
votes
0
answers
744
views
Will AWS Lambda deployed from image pull the ECR image on each new instances get initialised
Because of Lambda’s ZIP deployment size limitation I’m changing the way I deploy my Lambda functions to use container image.
The deployed function is located within a VPC, so I have a NAT gateway ...
0
votes
1
answer
1k
views
Building PHP 8.1.8 with open SSL, failing unable to find package. Lambda Layer
I'm trying to build a PHP8.1.8 lambda layer however i was following https://aws.amazon.com/blogs/apn/aws-lambda-custom-runtime-for-php-a-practical-example/
And just using the correct version, so the ...
0
votes
1
answer
2k
views
Use AWS SAM to Create AWS Lambda Layer for Python (Serverless Application Model)
I'm trying to use AWS SAM / Serverless application Model to deploy a combination of Python and native libraries to Lambda as a layer, for use from a Python Lambda function. I'd appreciate some help ...