This guide will take you through the basics of using holy-lambda
:
babashka
interactive runtime so that we can edit Clojure code in AWSHere's an overview of what we'll create (version with working links):
You will need an AWS account with sufficient privileges
The following components need to be installed on your system:
Install aws, aws-sam, make, clojure, babashka (>= 0.4.1), and clj-kondo
brew tap aws/tap && \
brew install awscli \
aws-sam-cli \
make \
clojure/tools/clojure \
borkdude/brew/babashka \
borkdude/brew/clj-kondo
Install clj-new using these instructions
Configure a default AWS profile via aws-cli
.
This is necessary for interacting with AWS from holy-lambda
.
aws configure
We'll generate our first project using the holy-lambda
project template. This will create a project tree with all the necessary resources to get us started.
clojure -X:new :template holy-lambda :name com.company/example-lambda :output holy-lambda-example
cd
to the project directory
cd holy-lambda-example
You should see following project structure:
tree
.
├── README.md
├── bb.edn
├── deps.edn
├── envs.json
├── resources
│ └── native-agents-payloads
│ └── 1.edn
├── src
│ └── com
│ └── company
│ └── example_lambda
│ └── core.cljc
└── template.yml
6 directories, 7 files
Configure the bb
(babashka) task runner
holy-lambda
uses babashka tasks to perform its duties. Configuration for the tasks are located in bb.edn
. The defaults are mostly sufficient, however we need to make a couple of config changes to set the target runtime to babashka and set your AWS region.
Open bb.edn
in the root of your project directory
Locate :runtime
and set to :babashka
:
:runtime
{
;; Choose one of the supported runtime `:babashka`, `:native`, `:java`
:name :babashka
... }
:infra
and set the :region
to one of your choosing. This is where holy-lambda
will create some intermediate assets in S3, and will ultimately deploy the Lambda function to in AWS. :infra
{...
:region "us-east-1"}
Before we continue, let's run a couple of checks
Verify your AWS profile is working by creating our working bucket:
bb bucket:create
[holy-lambda] Command <bucket:create>
[holy-lambda] Creating a bucket holy-lambda-example-5f3d731137724176b606beb6623b6f04
[holy-lambda] Bucket holy-lambda-example-5f3d731137724176b606beb6623b6f04 has been succesfully created!
:information_source: It's not strictly necessary to create a bucket upfront (it's done automatically when required), but it serves as an isolated AWS test for this guide.
Check that docker is running:
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
It shouldn't matter if there is anything else is running - we just care that docker is available at this point.
Check the help
Information on all the holy-lambda
tasks are available by running bb tasks
bb tasks
The following tasks are available:
bucket:create > Creates a s3 bucket using :bucket-name
bucket:remove > Removes a s3 bucket using :bucket-name
----------------------------------------------------------------
docker:build:ee > Builds local image for GraalVM EE
docker:run > Run command in fierycod/graalvm-native-image docker context
----------------------------------------------------------------
native:conf > Provides native configurations for the application
native:executable > Provides native executable of the application
----------------------------------------------------------------
stack:sync > Syncs project & dependencies from either:
- <Clojure> project.clj
- <Clojure> deps.edn
- <Babashka> bb.edn:runtime:pods
stack:compile > Compiles sources if necessary
stack:invoke > Invokes lambda fn (check sam local invoke --help):
- :name - either :name or :stack:default-lambda
- :event-file - path to event file
- :envs-file - path to envs file
- :params - map of parameters to override in AWS SAM
- :debug - run invoke in debug mode
- :logs - logfile to runtime logs to
stack:api > Runs local api (check sam local start-api):
- :debug - run api in debug mode
- :port - local port number to listen to
- :static-dir - assets which should be presented at /
- :envs-file - path to envs file
- :params - map of parameters to override in AWS SAM
stack:pack > Packs Cloudformation stack
stack:deploy > Deploys Cloudformation stack
- :guided - guide the deployment
- :dry - execute changeset?
- :params - map of parameters to override in AWS SAM
stack:describe > Describes Cloudformation stack
stack:doctor > Diagnoses common issues of holy-lambda stack
stack:purge > Purges build artifacts
stack:destroy > Destroys Cloudformation stack & removes bucket
stack:logs > Possible arguments (check sam logs --help):
- :name - either :name or :stack:default-lambda
- :e - fetch logs up to this time
- :s - fetch logs starting at this time
- :filter - find logs that match terms
stack:version > Outputs holy-lambda babashka tasks version
stack:lint > Lints the project
We will use the task bb stack:sync
to gather all dependencies from bb.edn
, deps.edn
for Clojure, Native and Babashka runtimes.
By default, sync also checks whether any additional Lambda layers are necessary for runtime should be published and will report them. This may be overridden (see :self-manage-layers?
in bb.edn
)
:warning: Ensure docker is running at this point
cd holy-lambda-example && bb stack:sync
:information_source: On the first run, some activities such as downloading dependencies and docker images can take some time. Subsequent runs will be much shorter.
See the troubleshooting section if anything fails at this point.
All being well, at the end of the output should be something like this:
Successfully created/updated stack - holy-lambda-template-bucket-123456789-hlbbri-0-0-29 in us-east-1
[holy-lambda] Waiting 5 seconds for deployment to propagate...
[holy-lambda] Checking the ARN of published layer. This might take a while..
[holy-lambda] Your ARN for babashka runtime layer is: arn:aws:lambda:us-east-1:123456789:layer:holy-lambda-babashka-runtime:1
[holy-lambda] You should add the provided ARN as a property of a Function in template.yml!
--------------- template.yml ------------------
Resources:
ExampleLambdaFunction:
Type: AWS::Serverless::Function
Properties:
Handler: example.core.ExampleLambda
Layers:
- PLEASE_ADD_THE_ARN_OF_LAYER_HERE
Events:
HelloEvent:
Type: Api
Properties:
Path: /
Method: get
---------------------------------------------
[holy-lambda] Sync completed!
Locate the following line from your output and copy the ARN...
[holy-lambda] Your ARN for babashka runtime layer is: arn:aws:lambda:us-east-1:123456789:layer:holy-lambda-babashka-runtime:1
The ARN is:
arn:aws:lambda:us-east-1:123456789:layer:holy-lambda-babashka-runtime:1
... and amend the template.yml
file to include your ARN:
Layers
config section just below the Handler
like this:Resources:
ExampleLambdaFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: ExampleLambdaFunction
Handler: com.company.example-lambda.core.ExampleLambda
Layers:
- arn:aws:lambda:us-east-1:123456789:layer:holy-lambda-babashka-runtime:1
Parameters:
MemorySize:
Type: Number
Default: 256
Setup is now complete! We're now ready to start executing the code.
First, we'll test the code locally, and then we'll deploy the code to your AWS environment.
holy-lambda
uses AWS SAM and Docker to emulate a lambda environment locally.
Execute your Lambda code using the babashka task bb stack:invoke
:
bb stack:invoke
[holy-lambda] Command <stack:invoke>
Invoking com.company.example-lambda.core.ExampleLambda (provided)
arn:aws:lambda:us-east-1:123456789:layer:holy-lambda-babashka-runtime:1 is already cached. Skipping download
Image was not found.
Building image............
Skip pulling image and use local one: samcli/lambda:provided-5933bec634b68561a90673e32.
Mounting /path-to-source/holy-lambda-example/src as /var/task:ro,delegated inside runtime container
START RequestId: 241e4ecb-605b-4ce1-a484-be75f91e520a Version: $LATEST
END RequestId: 241e4ecb-605b-4ce1-a484-be75f91e520a
REPORT RequestId: 241e4ecb-605b-4ce1-a484-be75f91e520a Init Duration: 0.22 ms Duration: 198.10 ms Billed Duration: 200 ms Memory Size: 256 MB Max Memory Used: 256 MB
{"statusCode":200,"headers":{"Content-Type":"text/plain; charset=utf-8"},"body":"Hello world. Babashka is sweet friend of mine! Babashka version: 0.4.1"}
After some time you should see above output.
:information_source: The first invocation is rather slow locally since AWS SAM has to download runtime image for babashka. Subsequent invocations are much faster.
Having successfully run the Lambda locally, we can now deploy to AWS.
Deployment to AWS is a two-step process:
pack
to prepare the deployment package and stage a deployment descriptor in an S3 bucketdeploy
to apply the deployment package to your AWS environmentbb stack:pack
[holy-lambda] Command <stack:pack>
Successfully packaged artifacts and wrote output template to file .holy-lambda/packaged.yml.
Execute the following command to deploy the packaged template
sam deploy --template-file /path-to-source/holy-lambda-example/.holy-lambda/packaged.yml --stack-name <YOUR STACK NAME>
Now deploy the application to AWS. holy-lambda
will run AWS SAM to deploy the changes, so you will see cloudformation style output like this:
bb stack:deploy
...
2021-05-17 18:25:42 - Waiting for stack create/update to complete
CloudFormation events from changeset
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ResourceStatus ResourceType LogicalResourceId ResourceStatusReason
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
CREATE_IN_PROGRESS AWS::IAM::Role ExampleLambdaFunctionRole -
CREATE_IN_PROGRESS AWS::IAM::Role ExampleLambdaFunctionRole Resource creation Initiated
CREATE_COMPLETE AWS::IAM::Role ExampleLambdaFunctionRole -
CREATE_IN_PROGRESS AWS::Lambda::Function ExampleLambdaFunction -
CREATE_IN_PROGRESS AWS::Lambda::Function ExampleLambdaFunction Resource creation Initiated
CREATE_COMPLETE AWS::Lambda::Function ExampleLambdaFunction -
CREATE_IN_PROGRESS AWS::ApiGateway::RestApi ServerlessRestApi -
CREATE_COMPLETE AWS::ApiGateway::RestApi ServerlessRestApi -
CREATE_IN_PROGRESS AWS::ApiGateway::RestApi ServerlessRestApi Resource creation Initiated
CREATE_IN_PROGRESS AWS::Lambda::Permission ExampleLambdaFunctionHelloEventPermissionProd Resource creation Initiated
CREATE_IN_PROGRESS AWS::Lambda::Permission ExampleLambdaFunctionHelloEventPermissionProd -
CREATE_IN_PROGRESS AWS::ApiGateway::Deployment ServerlessRestApiDeploymenta311ff041f -
CREATE_COMPLETE AWS::ApiGateway::Deployment ServerlessRestApiDeploymenta311ff041f -
CREATE_IN_PROGRESS AWS::ApiGateway::Deployment ServerlessRestApiDeploymenta311ff041f Resource creation Initiated
CREATE_IN_PROGRESS AWS::ApiGateway::Stage ServerlessRestApiProdStage -
CREATE_IN_PROGRESS AWS::ApiGateway::Stage ServerlessRestApiProdStage Resource creation Initiated
CREATE_COMPLETE AWS::ApiGateway::Stage ServerlessRestApiProdStage -
CREATE_COMPLETE AWS::Lambda::Permission ExampleLambdaFunctionHelloEventPermissionProd -
CREATE_COMPLETE AWS::CloudFormation::Stack example- -
lambda-18dc55c0dc4d4fccb28209f3a4e01352-stack
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Successfully created/updated stack - example-lambda-18dc55c0dc4d4fccb28209f3a4e01352-stack in us-east-1
Your stack is now deployed to AWS, and we're ready to access it via the AWS console.
holy-lambda
supports rapid development cycles. As you develop your Lambda code locally, you will repeat the following steps to test the changes locally and, if successful, push the changes to AWS:
bb stack:invoke
bb stack:pack
bb stack:deploy
Sign in to the AWS Console
Select the region that was previously specified in bb.edn
for your lambda deployments:
So what do we have now?
At this point we have an AWS serverless application stack comprising:
GET
request using the Lambda as a handlerYou can look at the application stack by navigating to the CloudFormation service:
Filter the existing stacks (if any) by using example-lambda
filter and select the link for example-lambda-xxx-stack
to see its composition:
We can see the resources that have been created in our application stack:
Let's take a closer look at the Clojure Lambda function by navigating to the Lambda service:
If you have several Lambda functions already, enter ExampleLambdaFunction
into the filter.
Select the ExampleLambdaFunction
link to view the Lambda in detail, including access to the Clojure code.
Here's our Clojure code in the AWS Lambda code editor:
Let's run it!
We invoke Lambda code from the AWS editor by creating a test event.
Select the orange Test
button to create a test event:
Name the event as ExampleTestEvent
and change the payload to:
{
"queryStringParameters": {
"name": "test-caller"
},
"key2": "value2",
"key3": "value3"
}
:information_source: The API gateway integration with our Lambda is configured with an option to "Use Lambda Proxy integration", this will allow the API to pass named URL parameters through to Lambda (which we'll cover later). The URL parameters are presented to the Lambda via the as the nested
event
mapqueryStringParameters
.
Finally, select Create
button.
Click the orange Test
button once more to execute the lambda function using the ExampleTestEvent
test event, which results in an "Execution result" window like this:
Some details to note in the above output:
REQUEST
and RESPONSE
mapsevent
contains our test event payload (as a "keywordized" Clojure map, of course!)ExampleLambda
function:information_source: In this example, the time reported by the lambda will be larger on the first execution (code start), something like 600ms or more. Subsequent invocations will be "warm" as long as the code isn't redeployed and AWS keeps the lambda alive. In this example, a "warm" execution will typically be <3ms.
Now we're going to try out interactive Clojure editing from the AWS Lambda code editor. We're going to update the code to use the name
URL parameter from the test event in our hello function.
Select code.cljc
and replace the existing say-hello
and ExampleLambda
functions with the following:
(defn say-hello
[name]
(str "Hello " name ". Babashka is a sweet friend of mine! Babashka version: " (System/getProperty "babashka.version")))
(h/deflambda ExampleLambda
"I can run on Java, Babashka or Native runtime..."
< {:interceptors [LambdaLogger AddHeaderToResponse]}
[{:keys [event ctx] :as request}]
;; access the name from the input event and say hello!
(hr/text (say-hello (:name (:queryStringParameters event)))))
When you make edits, you need to deploy the changes:
Select the Deploy
button.
Now when you run the ExampleTestEvent
test event, you'll see the new output response:
That's interactive code editing, in Clojure, in AWS Lambda!
:warning: Any changes that are made directly in the editor will be overwritten when the
bb stack:deploy
task is next run. Remember to copy any necessary changes made back to the code base.
:information_source: Interactive editing is only available with the Babashka runtime. Other runtime options package compiled Clojure code or produce native images.
The template project also creates a REST endpoint in API Gateway that is linked to our Lambda function.
This section will give a tour of this aspect of the stack, and will guide you through some amendments that are necessary to pass URL parameters to the Lambda, and the deployment of the API. Finally, we'll make a call to the API using curl
to see our stack working end-to-end.
You can look at the application API by navigating to the API Gateway service:
Filter the APIs using example-lambda
, and choose the name starting with example-lambda-xxx.stack
:
From the left-hand menus, select Resources
and the GET
method. Here you can see that the GET
method calls our Lambda function (highlighted on the far right):
Select Method Request
(highlighted above) to access the Method Request editor
.
We need to configure the API Gateway to pass the URL parameter name
through to our Lambda function:
Request Validator
option and set to Validate query string parameters and headers
URL Query String Parameters
Add query string
name
Required
checkboxNow we have our API changes in place, now we need to deploy the API to make it available to call.
From the Actions
menu, select Deploy API
:
Select Prod
from the Deployment stage
dropdown. Select Deploy
:
Your API is now deployed and available to call. The API URL is shown at the top of the following screen. Copy your URL:
From your terminal, replace YOUR_URL
with the output from the previous step:
curl YOUR_URL?name="api-caller"
For example:
# Your command should look something like this (note: this is a non-working URL)
curl https://a1bbbzzz99.execute-api.us-east-1.amazonaws.com/Prod?name="api-caller"
The API call will say hello to the name we provided as a URL parameter:
Hello api-caller. Babashka is a sweet friend of mine! Babashka version: 0.4.1
Finally, we'll go and check the log output from the API invocation.
In the Lambda service AWS console, go back to your Lambda function and select the Monitor
tab, followed by View logs in CloudWatch
:
Select a stream:
Output from one or more of your Lambda invocations are available to inspect:
In this guide, we've covered many of the basics with holy-lambda
. We've covered quite a lot actually, so well done for getting this far!
We created a holy-lambda
project based on the Babashka runtime to allow interactive code editing in AWS. We ran local tests and deployed our stack to AWS.
We demonstrated the power of interactive editing by enhancing our code in the AWS editor and using the Lambda test feature.
Finally, we extended the API Gateway configuration to pass URL parameters to our Lambda function and conducted an end-to-end test from our terminal.
We hope you enjoy using Clojure in AWS Lambdas using holy-lambda
The resources created in this guide incur minimal AWS costs when they're not being executed.
If you prefer to completely remove the resources using the following command to tear down and delete the example-lambda
application stack:
bb stack:destroy
[holy-lambda] Command <stack:destroy>
[holy-lambda] Command <bucket:remove>
[holy-lambda] Removing a bucket example-lambda-18dc55c0dc4d4fccb28209f3a4e01352
delete: s3://example-lambda-18dc55c0dc4d4fccb28209f3a4e01352/holy-lambda/c522c95bb1b6466deca9e7f465994aa3
remove_bucket: example-lambda-18dc55c0dc4d4fccb28209f3a4e01352
Can you improve this documentation? These fine people already did:
Karol Wójcik, lowecg & Martin KlepschEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close