GithubHelp home page GithubHelp logo

imranxpress / serverless-groovy-demo Goto Github PK

View Code? Open in Web Editor NEW

This project forked from aws-samples/serverless-groovy-demo

0.0 0.0 0.0 581 KB

License: MIT No Attribution

Shell 1.53% JavaScript 7.02% Groovy 90.81% Makefile 0.64%

serverless-groovy-demo's Introduction

Serverless Groovy Demo

Architecture diagram

This is a simple serverless application built in Groovy. It consists of an Amazon API Gateway backed by four AWS Lambda functions and an Amazon DynamoDB table for storage.

Requirements

Infrastructure

Tiered Compilation

The AWS Lambda functions used in this application rely on tiered compilation. After following the above blog, you should be able to create Lambda Layer and use AWS_LAMBDA_EXEC_WRAPPER as an environment variable for the 4 AWS Lambda functions.

Deployment

Deploy the demo to your AWS account using AWS SAM. Use serverless-groovy-demo as the app/stack name.

sam build && sam deploy --guided

SAM will create an output of the API Gateway endpoint URL for future use in our load tests. Make sure the app name used here matches with the STACK_NAME present under load-test/run-load-test.sh.

Load Test

Artillery is used to make 200 requests / second for 2 minutes to our API endpoints. You can run this with the following command.

cd load-test
./run-load-test.sh

This is a demanding load test, to change the rate alter the arrivalRate value in load-test.yml.

CloudWatch Logs Insights

Using this CloudWatch Logs Insights query you can analyse the latency of the requests made to the Lambda functions.

The query separates cold starts from other requests and then gives you p50, p90 and p99 percentiles.

filter @type="REPORT"
| fields greatest(@initDuration, 0) + @duration as duration, ispresent(@initDuration) as coldStart
| stats count(*) as count, pct(duration, 50) as p50, pct(duration, 90) as p90, pct(duration, 99) as p99, max(duration) as max by coldStart

CloudWatch Logs Insights results

AWS X-Ray Tracing

X-Ray Tracing is available via Lambda Powertools for Java.

build.gradle dependency

plugins{
  id 'io.freefair.aspectj.post-compile-weaving' version '6.3.0'
}

...

dependencies {
  aspect 'software.amazon.lambda:powertools-tracing:1.10.2'
}

Example cold start trace

Cold start X-Ray trace

Example warm start trace

Warm start X-Ray trace

๐Ÿ‘€ With other languages

You can find implementations of this project in other languages here:

Security

See CONTRIBUTING for more information.

License

This library is licensed under the MIT-0 License. See the LICENSE file.

serverless-groovy-demo's People

Contributors

dmahapatro avatar amazon-auto avatar jeastham1993 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.