Overview of using K6 for notification load testing K6
- Install K6
- Pull down repo
- To run the closed model test, which will wait for one request to finish before executing the next test. run
k6 run closed-model.js
- To run the open model test, which decouples the number of requests from the time it takes to get back a response from the first request, run
k6 run open-model.js
Read more at Open and closed models to better understand the difference between these tests. It is a differentiator for using K6.