Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.64 KB

File metadata and controls

33 lines (22 loc) · 1.64 KB

Setup

To get started have an EC2 instance up and running, in the case of this example we used a ml.c5.18xlarge instance. You can launch multiple EC2 instances to further get client side power to ramp up traffic. This script is not just EC2 reliant, if you want you can run this on EKS or even a SageMaker Notebook Instance, just be aware of the client compute power you have so that you do not get throttled on that end. For launching and setting up an EC2 instance follow this documentation.

locust folder contains distributed.sh which kicks off the distributed locust load test.

Load Test

Steps to run a load test:

  1. Activate Python environment, and pip install -r requirements.txt.
  2. Update distributed.sh ENV variables, to increase traffic tune users and workers parameters (define users as a multiple of workers):
    export REGION=us-east-1
    export CONTENT_TYPE=application/json
    export PAYLOAD='{"inputs": "I am super happy right now."}'
    export USERS=30
    export WORKERS=10
    export RUN_TIME=1m
    
  3. Run chmod +x distributed.sh
  4. Run ./distributed.sh endpoint-name

Security

See CONTRIBUTING for more information.

License

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