Hi! There was a problem with clearing volume sentry-postgres. The size of the database is constantly growing even when cleaning is performed.
docker-compose run --rm worker cleanup --days 90
and next
docker exec -it sentry_onpremise_postgres_1 vacuumdb -U postgres -d postgres -v -f -z
The size of the database does not decrease after execution. Tried to execute
docker-compose run -T web cleanup --days 7 -m nodestore -l debug
and next
docker-compose run -T postgres bash -c "apt update && apt install -y --no-install-recommends postgresql-9.6-repack && su postgres -c 'pg_repack -E info -t nodestore_node'"
But it also did not give results.
The two largest tables: pg_toast.pg_toast_20645 - 53 GB, public.nodestore_node - 15 GB