database size
-
Is it normal for the database to be half a gigabyte?
I have deleted all my executions several times but it doesn't seem to change anything. Also just set
export DB_SQLITE_VACUUM_ON_STARTUP=truein/app/data/env.sh, but after restarting it seems to take the same amount of space. When I runSELECT pg_size_pretty(pg_database_size('XXXXX'))it sayspg_size_pretty ---------------- 594 MB (1 row)Is there some data stuck in there that I can see and remove somehow?
-
That
DB_SQLITE_VACUUM_ON_STARTUPdoes nothing, is absolutly corret and is no error.
Because, the Cloudron package does not use SQLITE.
It uses postgresql. -
Is it normal for the database to be half a gigabyte?
I have deleted all my executions several times but it doesn't seem to change anything. Also just set
export DB_SQLITE_VACUUM_ON_STARTUP=truein/app/data/env.sh, but after restarting it seems to take the same amount of space. When I runSELECT pg_size_pretty(pg_database_size('XXXXX'))it sayspg_size_pretty ---------------- 594 MB (1 row)Is there some data stuck in there that I can see and remove somehow?
-
@rosano you should investigate which table is taking so much space . (you can get table size queries from chatgpt)