aws-lambda-cpp
aws-lambda-cpp copied to clipboard
C++ implementation of the AWS Lambda runtime
*Description of changes:* ~~Validating #154 threw me down a rabbit hole of regression testing. The biggest change I made was to resolve constantly waiting for AWS SDK build, by moving...
As noted in https://github.com/awslabs/aws-lambda-cpp/pull/131#discussion_r755906063, on Alpine we have `grep` implemented by `busybox` by default, and `busybox grep` doesn't know `-F` as `--fixed-strings`. This pull request fixes that and also simplifies...
Hi guys! I just writing some lambdas in c++ using the aws-lambda-cpp i checking my log and i have this Error in my log: > [ERROR] [1553201323958] LAMBDA_RUNTIME Failed to...
Hello, I have followed the examples here: https://aws.amazon.com/blogs/compute/introducing-the-c-lambda-runtime/ When I run my internal execution so that it takes 5 seconds everything works fine. But when I run it for 70...
I am trying to add `g++` inside `AWS Lambda C++ custom runtime`. Now `g++` requires `.so` (shared libraries) files as well as `.a` (static libraries). For this, I installed g++...
Hi, I have a CMake project, where I build aws-lambda-cpp as external project with Clang-14: ` set(TESSER_THIRDPARTY_CMAKE_CACHE_ARGS -DCMAKE_C_COMPILER:STRING=${CMAKE_C_COMPILER} -DCMAKE_CXX_COMPILER:STRING=${CMAKE_CXX_COMPILER} -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_CXX_STANDARD:STRING=${CMAKE_CXX_STANDARD} -DCMAKE_INSTALL_PREFIX:PATH=${PROJECT_SOURCE_DIR}/bin ) ExternalProject_Add( aws_lambda_cpp GIT_REPOSITORY https://github.com/awslabs/aws-lambda-cpp.git GIT_TAG v0.2.7 SOURCE_DIR...
I'm using the HTTP API Gateway, my c++ runtime is built with amazonlinux:latest in a docker image. All responses that return with invocation_response::failure return an Error 500, Internal Server Error....
Following the blog post "https://aws.amazon.com/blogs/compute/introducing-the-c-lambda-runtime/" to create a custom CPP Lambda function, received an error "/usr/bin/ld: runtime.cpp.o: plugin needed to handle lto object" Complete error - [ 50%] Building CXX...
After much searching I can't find an example of a C++ lambda function deployed with SAM. I think the addition of a SAM example would be very useful for user...
I've tried several times to use AWS Lambda runtime CPP with AWS SDK CPP on Ubuntu 20.04 and always had to back up to Ubuntu 18.04 because I encountered major...