Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Latest commit

 

History

History
52 lines (35 loc) · 838 Bytes

File metadata and controls

52 lines (35 loc) · 838 Bytes

concurrency-tester

start test

  1. create config file:
cp .env.template .env
vim .env
  1. start test
make run

examine results

  1. get test containers
docker ps -a | grep concurrency-tester
  1. get logs
docker logs <container>

our results

Test details:

  • the test app was running in 5 containers
  • each test app executed creations on 2 go routines
  • each go routine created 15 records

Test results:

Maximum number of parallel operations: 5 * 2 = 10

Total number of records created: 150

Total number of conflicts: 461

Total execution time: ~64s