lambdr
lambdr copied to clipboard
Run R containers on AWS Lambda
Hey everyone, first of all, thanks for this lib, it's awesome :) We are currently trying to get R Shiny working with this lib. Unfortunately, we are stuck at `...
S3
hello, I am Johann Falla from Colombia and I am using the tutorial "https://mdneuzerling.com/post/r-on-aws-lambda-with-containers/", I generate a .RDATA file that has some functions and when I implement the lambda to...
Hi @mdneuzerling! Thanks a lot for the amazing tool you put together! I just started today playing around with it – it is great. I usually use AWS lambda for...
See the code in the repo > https://github.com/arkadi-aigora/r_python_reticulate_lambda_demo I am able to deploy the image locally using the following commands > docker build -t test1 . > docker run -p...
Cool project. I am not too familiar with it but something that comes to mind when going through the README is that a helper function to set up template files...
Hi, I want to use your Dockerfile to test a function in R in AWS but when I run your example, I got this error. {"errorMessage":"functions.parity, as defined by the...
I use AWS Cognito for Shiny authentication. As you may know, Cognito provides a set of triggers to extended Cognito features and these only work with Lambda functions. Can you...
I proposed using a replacement for `base::stop` during endpoint initialisation and invocation so that you can pass HTTP error codes when invoking an endpoint using API Gateway. _Turns out_ [`rlang`...
AWS Lambda error endpoints (both the initialisation error endpoint and the invocation error endpoint) expect a content type "application/vnd.aws.lambda.error+json" with the following body: ```json { "errorMessage": "...", "errorType": "...", "stackTrace":...
This package automatically passes the invocation _context_ to any function with a named `context` argument. The context is barebones, consisting only of the request ID and the invocation ARN. [Compare...