Little database connections bench
Find a file
Julien Riou c010393431
chore: add support in the README
Signed-off-by: Julien Riou <julien@riou.xyz>
2022-10-09 10:53:22 +02:00
.gitignore feat: Initial release 2022-10-09 09:26:56 +02:00
benchmark.go feat: Initial release 2022-10-09 09:26:56 +02:00
config.go feat: Initial release 2022-10-09 09:26:56 +02:00
database.go feat: Initial release 2022-10-09 09:26:56 +02:00
docker-compose.yml feat: Initial release 2022-10-09 09:26:56 +02:00
go.mod feat: Initial release 2022-10-09 09:26:56 +02:00
go.sum feat: Initial release 2022-10-09 09:26:56 +02:00
main.go feat: Initial release 2022-10-09 09:26:56 +02:00
Makefile feat: Initial release 2022-10-09 09:26:56 +02:00
mysql.env feat: Initial release 2022-10-09 09:26:56 +02:00
postgresql.env feat: Initial release 2022-10-09 09:26:56 +02:00
README.md chore: add support in the README 2022-10-09 10:53:22 +02:00
VERSION feat: Initial release 2022-10-09 09:26:56 +02:00

benchito

Like pgbench or sysbench but only for testing maximum number of connections. benchito will start multiple threads to issue very simple queries in order to avoid CPU or memory starvation.

benchito supports:

  • MySQL
  • PostgreSQL

Requirements

  • make
  • go 1.18

Setup

Compile the benchito binary:

make

Start databases instance:

docker-compose pull
docker-compose up -d

Usage

./bin/benchito -help

Cleanup

docker-compose down -v