DEV Community

farzana-juthi
farzana-juthi

Posted on • Updated on • Originally published at Medium

How to SAM accelerate work with lambda layers

If you are a developer, you know testing is very important for application development. But integration testing in cloud is really a concern. As deployment time plays a vital role in development, many of us try to do mock test before deploy it into cloud. There are some frameworks for doing that. But in that case integration testing is not possible. If you are a SAM user, you can speed up your development with SAM accelerate. In this blog post, you will see an example of lambda layers and its implementation in sam accelerate.

image_1

Prerequisite

  • First, you have to install aws sam cli into your machine.
  • Then configure aws cli.

If you don't have CLI installed and configured into your local machine please follow the prerequisite steps from this link

Local Development

  • After installation done, you have to pull the code from git repository (HTTPS link)
  • Then go to project directory by using following command:
    cd <your folder name>
    example: cd sam-accelerate-example
Enter fullscreen mode Exit fullscreen mode
  • Then you will see following structure:

structure

Lambda Layers code details

  • In template.yaml file, you will get following code for creating lambda layers:

lambda_layers_temp

In this image,

  • Type: This is used to make resource you want to create. AWS::Serverless::LayerVersion means it will create lambda layer.
  • Properties:
    • LayerName: This is for layer name you want to give. Here you can give any name. In this demo it is global-utils .
      • ContentUri: This will be your code location. In this demo it is lambda_layers/global_utils/
      • CompatibleRuntimes:
        • python3.9 Here you have to give your choosen language. In this demo, I used python. There are specific folder structure for lambda layers according to language. See this link for other languages.
  • Metadata:
    • BuildMethod: makefile If you want to create custom layer you can do it easily through SAM. In this make file you have to give commands to run your configuration or settings. See this link for documentation.
      • If you need share some libraries through layers, you can add those into requirements.txt file in layer's python folder like following image:

layer_requirement

  • In make file within global_utils folder, you have to give path to $(ARTIFACTS_DIR)/python, otherwise libraries in requirements.txt file will not found into .aws-sam folder and when calling through layers it will not work. So this line is very important.
  build-GlobalUtils:
      echo "Global layers build started"
      pip install --default-timeout=100 -r ./python/requirements.txt -t $(ARTIFACTS_DIR)/python
      echo "Global layers build completed"
      cp -r ./python $(ARTIFACTS_DIR)/
Enter fullscreen mode Exit fullscreen mode
  • If you want to pass some code through layers, you can also do that. In global_utils.py file you can see example of it.

global_utils_file

Here three libraries (json, os, boto3) and also dynamo client, resource and table name are passed through this layer. For table name, you have to pass it through function's Environment parameter. You will see it in a while.

  • Now this layer has to be attached with lambda function where it will be used. In this post you will see global_utils layer is passed to HelloWorldFunction . In case of sharing resources with !Ref key, you have to use logical id of that resource. Here logical id for layer is GlobalUtils and for dynamodb table it is TestTable .

hello_world_function

How to run sam sync

  • You have to run following command into your terminal
    sam sync --watch --stack-name <give your stack name>
    example: sam sync --watch --stack-name sam-accelerate-example
Enter fullscreen mode Exit fullscreen mode
  • After running this command, you will see like following image:

terminal_yes_no_option

  • Now you have to press Enter .
  • Now open your aws console from browser, you will see your stack is created into cloud like following image.

cloudformation_resource

  • After sync, you will see an API link in your device terminal like following image:

API

  • After clicking on this API, you will see the table name what is passed through layer.

output

If you change anything in layers or anything into your template file, you will see that change into cloud. So you can test your application with real aws resources. If you have any question please let me know in comment.

Top comments (1)

Collapse
 
sajidurshajib profile image
Sajidur Rahman Shajib

Thank you for explaining this quickly.