Skip to content

test: add benchmark on AWS Lambda #261

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Feb 9, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions benchmark/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.aws-sam
77 changes: 77 additions & 0 deletions benchmark/benchmark.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
#!/bin/bash

set -e
trap cleanup EXIT

export BENCHMARK_STACK_NAME=${BENCHMARK_STACK_NAME:-"powertools-benchmark"}

function cleanup {
echo "Cleaning up stack..."
aws cloudformation delete-stack --stack-name $BENCHMARK_STACK_NAME
}

function run_function {
# Update function to force a cold start
aws lambda update-function-configuration --function-name $1 --memory-size 256 >/dev/null
aws lambda update-function-configuration --function-name $1 --memory-size 128 >/dev/null
# Cold-start invoke
aws lambda invoke --function-name $1 --payload '{}' /dev/null >/dev/null && echo -n . || echo -n e
}

# Retrieve statistics
function get_stats {
# Gather results from CloudWatch Logs Insights
query_id=$(aws logs start-query --log-group-name $1 --query-string 'filter @type = "REPORT" | stats pct(@initDuration, 50) as init_duration, pct(@duration, 50) as duration' --start-time $(expr $(date +%s) - 86400) --end-time $(expr $(date +%s) + 0) --query 'queryId' --output text)
while true; do
result=$(aws logs get-query-results --query-id $query_id --query 'status' --output text)
if [ $result == "Complete" ]; then
break
fi
sleep 1
done

# Check if greater than threshold and print result
init_duration=$(aws logs get-query-results --query-id $query_id --query 'results[0][?field==`init_duration`].value' --output text)
duration=$(aws logs get-query-results --query-id $query_id --query 'results[0][?field==`duration`].value' --output text)
echo "$init_duration,$duration"
}

# Build and deploy the benchmark stack
echo "Building and deploying..."
sam build
sam deploy --stack-name $BENCHMARK_STACK_NAME --guided

# Retrieve output values
echo "Retrieve values..."
export INSTRUMENTED_FUNCTION=$(aws cloudformation describe-stacks --stack-name $BENCHMARK_STACK_NAME --query 'Stacks[0].Outputs[?OutputKey==`InstrumentedFunction`].OutputValue' --output text)
export REFERENCE_FUNCTION=$(aws cloudformation describe-stacks --stack-name $BENCHMARK_STACK_NAME --query 'Stacks[0].Outputs[?OutputKey==`ReferenceFunction`].OutputValue' --output text)
export INSTRUMENTED_LOG_GROUP=$(aws cloudformation describe-stacks --stack-name $BENCHMARK_STACK_NAME --query 'Stacks[0].Outputs[?OutputKey==`InstrumentedLogGroup`].OutputValue' --output text)
export REFERENCE_LOG_GROUP=$(aws cloudformation describe-stacks --stack-name $BENCHMARK_STACK_NAME --query 'Stacks[0].Outputs[?OutputKey==`ReferenceLogGroup`].OutputValue' --output text)

echo INSTRUMENTED_FUNCTION=$INSTRUMENTED_FUNCTION
echo REFERENCE_FUNCTION=$REFERENCE_FUNCTION
echo INSTRUMENTED_LOG_GROUP=$INSTRUMENTED_LOG_GROUP
echo REFERENCE_LOG_GROUP=$REFERENCE_LOG_GROUP

# Running cold starts
echo "Running functions..."
for i in {0..20}; do
run_function $INSTRUMENTED_FUNCTION
done &
process_id=$!
for i in {0..20}; do
run_function $REFERENCE_FUNCTION
done &
wait $process_id
wait $!
echo

# Gather statistics
sleep 150
return_code=0
echo -n "INSTRUMENTED="
get_stats $INSTRUMENTED_LOG_GROUP
echo -n "REFERENCE="
get_stats $REFERENCE_LOG_GROUP

exit $return_code
17 changes: 17 additions & 0 deletions benchmark/src/instrumented/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from aws_lambda_powertools import (Logger, Metrics, Tracer)


# Initialize core utilities
logger = Logger()
metrics = Metrics()
tracer = Tracer()


# Instrument Lambda function
@logger.inject_lambda_context
@metrics.log_metrics
@tracer.capture_lambda_handler
def handler(event, context):
return {
"message": "success"
}
1 change: 1 addition & 0 deletions benchmark/src/instrumented/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
aws-lambda-powertools
4 changes: 4 additions & 0 deletions benchmark/src/reference/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
def handler(event, context):
return {
"message": "success"
}
1 change: 1 addition & 0 deletions benchmark/src/reference/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
aws-lambda-powertools
48 changes: 48 additions & 0 deletions benchmark/template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31

Globals:
Function:
Handler: main.handler
Runtime: python3.8
MemorySize: 128
Tracing: Active
Environment:
Variables:
POWERTOOLS_SERVICE_NAME: benchmark
POWERTOOLS_METRICS_NAMESPACE: LambdaPowertools
POWERTOOLS_LOGGER_LOG_EVENT: "true"
LOG_LEVEL: INFO

Resources:
InstrumentedFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/instrumented/

ReferenceFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: ./src/reference/

InstrumentedLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub "/aws/lambda/${InstrumentedFunction}"
RetentionInDays: 7

ReferenceLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub "/aws/lambda/${ReferenceFunction}"
RetentionInDays: 7

Outputs:
InstrumentedFunction:
Value: !Ref InstrumentedFunction
ReferenceFunction:
Value: !Ref ReferenceFunction
InstrumentedLogGroup:
Value: !Ref InstrumentedLogGroup
ReferenceLogGroup:
Value: !Ref ReferenceLogGroup