This is a simple serverless application built in Java using popular frameworks — Micronaut, Quarkus, and Spring Boot
It consists of an Amazon API Gateway backed by four AWS Lambda functions and an Amazon DynamoDB table for storage.
Each of the sub folders contains a Product Maven project. Each Maven project contains all the code for all four Lambda functions. It uses the hexagonal architecture pattern to decouple the entry points from the main domain logic and the storage logic.
The sample application can be deployed in three different ways:
Below is the cold start and warm start latencies observed. Please refer to the "Load Test" section of each subproject for more details. All latencies listed below are in milliseconds.
Artillery is used to make 100 requests / second for 10 minutes to our API endpoints.
Cold Start (ms) | Warm Start (ms) | |||||||
---|---|---|---|---|---|---|---|---|
p50 | p90 | p99 | max | p50 | p90 | p99 | max | |
Micronaut (Java 17) | 4609.07 | 4943.09 | 5501.05 | 6657.94 | 8.52 | 14.31 | 32.52 | 314.99 |
Quarkus (Java 17) | 2525.22 | 3146.27 | 4055.57 | 6343.83 | 7.50 | 12.28 | 29.87 | 231.52 |
Spring Boot (Java 17) | 5311.93 | 5645.88 | 6183.47 | 7027.66 | 8.13 | 13.01 | 30.03 | 251.27 |
Dagger * | 3213.00 | 3629.68 | 4850.11 | 6896.54 | 8.94 | 16.34 | 40.38 | 292.20 |
*: Dagger is not fully comparable to other frameworks as it only provides dependency injection, and thus is much lighter than the others, which explains these results. When choosing a framework, be conscious of the features available. Dagger was initially done with Android in mind, to provide a lightweight dependency injection framework, without introspection (like Spring). It fits particularly well with Lambda to reduce the initialization time, but does not provide the breadth of the others.
Cold Start (ms) | Warm Start (ms) | |||||||
---|---|---|---|---|---|---|---|---|
p50 | p90 | p99 | max | p50 | p90 | p99 | max | |
Micronaut (Java 17) | 726.11 | 815.37 | 931.30 | 1047.49 | 7.68 | 12.30 | 28.18 | 244.82 |
Quarkus (Java 17) | 487.31 | 586.87 | 732.67 | 932.17 | 7.38 | 11.91 | 25.20 | 147.26 |
Spring Boot (Java 17) | 1047.87 | 1200.45 | 1597.68 | 1779.53 | 7.62 | 13.01 | 27.73 | 262.25 |
Cold Start (ms) | Warm Start (ms) | |||||||
---|---|---|---|---|---|---|---|---|
p50 | p90 | p99 | max | p50 | p90 | p99 | max | |
Micronaut (22.3.r17) | 638.27 | 722.49 | 960.60 | 1416.85 | 7.56 | 12.11 | 23.46 | 1029.55 |
Quarkus (22.3.r17) | 467.27 | 599.77 | 802.43 | 1348.78 | 6.7 | 11.63 | 24.03 | 168.47 |
Spring Boot | 620.66 | 684.53 | 721.77 | 751.98 | 9.10 | 14.22 | 23.61 | 259.16 |
You can find implementations of this project in other languages here:
See CONTRIBUTING for more information.
This library is licensed under the MIT-0 License. See the LICENSE file.