14.10. 重新声明 PostgreSQL 空间
PostgreSQL 数据库可以使用大量磁盘空间,特别是在负载大量部署中。使用这个流程重新声明 Satellite 上的一些磁盘空间。
流程
停止除
postgresql
服务外的所有服务:# satellite-maintain service stop --exclude postgresql
切换到
postgres
用户并回收数据库中的空间:# su - postgres -c 'vacuumdb --full --all'
vacuum 完成后启动其他服务:
# satellite-maintain service start