DBChaos
Stress-test your database with pre-defined queries. Validate slow and expensive queries that breaks your database.
Installation
go install github.com/adaptive-scale/
[email protected]
Run your first test
Create a file name config.yaml with the following content:
dbType: postgres
connection: "host=localhost port=5432 user=postgres password=postgres dbname=postgres sslmode=disable"
query: |
SELECT pg_database.datname as "Database", pg_size_pretty(pg_database_size(pg_database.datname)) as "Size...