Skip to content

Scalable cloud load/stress testing pipeline solution with Apache JMeter and Terraform to dynamically provision and destroy the required infrastructure on Azure.

License

Notifications You must be signed in to change notification settings

SeaSplitter/jmeter-aci-terraform

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

page_type languages products extensions name description urlFragment
sample
yaml
python
azure
azure-devops
azure-storage
services
Containerinstance
Load Testing Pipeline with JMeter, ACI and Terraform
Azure Pipeline that provisions JMeter on Azure Container Instance using Terraform for load testing scenarios
jmeter-aci-terraform

Load Testing Pipeline with JMeter, ACI and Terraform

This project is a load testing pipeline that leverages Apache JMeter as an open source load and performance testing tool and Terraform to dynamically provision and destroy the required infrastructure on Azure.

Key concepts

Architecture

The flow is triggered and controlled by an Azure Pipeline on Azure DevOps. The pipeline contains a set of tasks that are organized logically in SETUP, TEST, RESULTS and TEARDOWN groups.

Task group Tasks
SETUP
  • Check if the JMeter Docker image exists
  • Validate the JMX file that contains the JMeter test definition
  • Upload JMeter JMX file to Azure Storage Account File Share
  • Provision the infrastructure with Terraform
  • TEST
  • Run JMeter test execution and wait for completion
  • RESULTS
  • Show JMeter logs
  • Get JMeter artifacts (e.g. logs, dashboard)
  • Convert JMeter tests result (JTL format) to JUnit format
  • Publish JUnit test results to Azure Pipelines
  • Publish JMeter artifacts to Azure Pipelines
  • TEARDOWN
  • Destroy all ephemeral infrastructure with Terraform
  • On the SETUP phase, JMeter agents are provisioned as Azure Container Instance (ACI) using a custom Docker image on Terraform. Through a master/slave approach, JMeter master is responsible to configure all slaves using its own protocol, consolidating all results and generating the resulting artifacts (dashboard, logs, etc).

    The infrastructure provisioned by Terraform includes:

    • Resource Group
    • Virtual Network (VNet)
    • Storage Account File Share
    • 1 JMeter master on ACI
    • N JMeter slaves on ACI

    On the RESULTS phase, a JMeter Report Dashboard and Tests Results are published in the end of each load testing execution.

    Repository structure

    Folder Description
    docker JMeter custom image
    docs Documentation and images
    jmeter Contains JMX files used by JMeter agents
    pipelines Docker and JMeter pipeline definitions
    scripts Scripts that support pipeline execution
    terraform Terraform template for infrastructure creation

    Prerequisites

    Getting Started

    1. Import This Repository

    First, you need to login on Azure CLI and configure Azure DevOps CLI with your organization/project settings:

    az login
    az devops configure --defaults organization=https://dev.azure.com/your-organization project=YourProject

    Then, you can create/import this repository on Azure DevOps:

    REPOSITORY_NAME=jmeter-load-test
    REPOSITORY_URL=https://github.com/Azure-Samples/jmeter-aci-terraform
    
    az repos create --name $REPOSITORY_NAME
    az repos import create --git-source-url $REPOSITORY_URL --repository $REPOSITORY_NAME

    You can also use the UI to import it on Azure DevOps - As long as you don't forget to fill $REPOSITORY_NAME variable with the actual repository name.

    2. Create Variable Groups

    Get you service principal, your ACR credentials, and fill the following empty variables. Then, run this block on Bash:

    CLIENT_ID=
    CLIENT_SECRET=
    TENANT_ID=
    SUBSCRIPTION_ID=
    ACR_NAME=
    ACR_PASSWORD=

    Then run the following commands to create the variable groups JMETER_AZURE_PRINCIPAL and JMETER_TERRAFORM_SETTINGS:

    PRIN_GROUP_ID=$(az pipelines variable-group create  --name JMETER_AZURE_PRINCIPAL --authorize \
                                                        --variables ARM_CLIENT_ID=$ARM_CLIENT_ID \
                                                                    ARM_TENANT_ID=$ARM_TENANT_ID \
                                                                    ARM_SUBSCRIPTION_ID=$ARM_SUBSCRIPTION_ID \
                                                                    | jq .id)
    
    az pipelines variable-group variable create --group-id $PRIN_GROUP_ID --secret true \
                                                --name ARM_CLIENT_SECRET \
                                                --value $ARM_CLIENT_SECRET
    
    SETT_GROUP_ID=$(az pipelines variable-group create  --name JMETER_TERRAFORM_SETTINGS --authorize \
                                                        --variables TF_VAR_JMETER_IMAGE_REGISTRY_NAME=$ACR_NAME \
                                                                    TF_VAR_JMETER_IMAGE_REGISTRY_USERNAME=$ACR_NAME \
                                                                    TF_VAR_JMETER_IMAGE_REGISTRY_SERVER=$ACR_NAME.azurecr.io \
                                                                    TF_VAR_JMETER_DOCKER_IMAGE=$ACR_NAME.azurecr.io/jmeter \
                                                                    | jq .id)
    
    az pipelines variable-group variable create --group-id $SETT_GROUP_ID --secret true \
                                                --name TF_VAR_JMETER_IMAGE_REGISTRY_PASSWORD \
                                                --value $ACR_PASSWORD

    3. Create and Run the Docker Pipeline

    PIPELINE_NAME_DOCKER=jmeter-docker-build
    
    az pipelines create --name $PIPELINE_NAME_DOCKER --repository $REPOSITORY_NAME \
        --repository-type tfsgit --branch master \
        --yml-path pipelines/azure-pipelines.docker.yml

    4. Create the JMeter Pipeline

    PIPELINE_NAME_JMETER=jmeter-load-test
    
    az pipelines create --name $PIPELINE_NAME_JMETER --repository $REPOSITORY_NAME \
        --repository-type tfsgit --branch master --skip-first-run \
        --yml-path pipelines/azure-pipelines.load-test.yml
    
    az pipelines variable create --pipeline-name $PIPELINE_NAME_JMETER --name TF_VAR_JMETER_JMX_FILE --allow-override
    az pipelines variable create --pipeline-name $PIPELINE_NAME_JMETER --name TF_VAR_JMETER_SLAVES_COUNT --allow-override

    5. Update the JMX test definition (optional)

    By default, this repository uses a sample.jmx file under the jmeter folder. This JMX file contains a test definition for performing HTTP requests on azure.microsoft.com endpoint through the 443 port. You can simply update the it with the test definition of your preference.

    6. Manually Run the JMeter Pipeline

    You can choose the JMeter file you want to run (e.g. jmeter/sample.jmx) and how many JMeter slaves you will need for your test. Then you can run the JMeter pipeline using the CLI:

    JMETER_JMX_FILE=sample.jmx
    JMETER_SLAVES_COUNT=1
    
    az pipelines run --name $PIPELINE_NAME_JMETER \
        --variables TF_VAR_JMETER_JMX_FILE=$JMETER_JMX_FILE TF_VAR_JMETER_SLAVES_COUNT=$JMETER_SLAVES_COUNT

    Or even use the UI to define variables and Run the pipeline:

    ui-run-pipeline

    Viewing Test Results

    JMeter test results are created in a JTL file (results.jtl) with CSV formatting. A Python script was created to convert JTL to JUnit format and used during the pipeline to have full integration with Azure DevOps test visualization.

    Azure DevOps with successful requests

    Error messages generated by JMeter for failed HTTP requests can also be seen on Azure DevOps.

    Azure DevOps with failed requests

    Viewing Artifacts

    Some artifacts are published after the test ends. Some of them are a static JMeter Dashboard, logs and others.

    pipeline-artifacts

    You can also download these build artifacts using az pipelines runs artifact download.

    After downloading the dashboard and unzipping it, open dashboard/index.html on your browser:

    jmeter-dashboard

    Pipeline Configuration

    All Terraform parameters can be configured using the Variable Group JMETER_TERRAFORM_SETTINGS. Please read JMeter Pipeline Settings to know more details about it.

    Implementation Notes

    This sample only shows how to manually trigger a JMeter Pipeline. You can easily adapt its content and incorporate it on other pipelines, apply continuous integration or other improvements.

    This sample uses static JMX files on jmeter directory. You can use many techniques to parameterize JMX files. Some of them are:

    Also, you can dynamically generate JMX files from Swagger/Open API using swagger-codegen or other similar projects.

    Current Terraform template creates a new VNET to host JMeter installation. Instead you can modify the template to deploy agents in an existing VNET or your can apply VNET peering to connect them into an existing infrastructure.

    Limitations

    • Load Test duration Please note that for Microsoft hosted agents, you can have pipelines that runs up to 1 hour (private project) or 6 hours (public project). You can have your own agents to bypass this limitation.

    • ACI on VNET regions Please note that not all regions currently support ACI and VNET integration. If you need private JMeter agents, you can deploy it in a different region and use VNET peering between them.

    Additional Documentation

    References

    Contributing

    This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

    When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

    This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

    About

    Scalable cloud load/stress testing pipeline solution with Apache JMeter and Terraform to dynamically provision and destroy the required infrastructure on Azure.

    Resources

    License

    Code of conduct

    Security policy

    Stars

    Watchers

    Forks

    Packages

    No packages published

    Languages

    • HCL 55.7%
    • Python 41.8%
    • Dockerfile 2.5%