]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/templates/default/vacuum-db-nominatim.erb
77b1257ef2016f09c72a1169a6d1ed8e4adea3c1
[chef.git] / cookbooks / nominatim / templates / default / vacuum-db-nominatim.erb
1 #!/bin/bash
2 #
3 # DO NOT EDIT - This file is being maintained by Chef
4
5
6 # Vaccum all tables with indices on integer arrays.
7 # Agressive vacuuming seems to help against index bloat.
8 psql -q -d nominatim -c 'VACUUM ANALYSE search_name'
9 psql -q -d nominatim -c 'VACUUM ANALYSE search_name_country'
10
11 for i in `seq 0 246`; do
12   psql -q -d nominatim -c "VACUUM ANALYSE search_name_${i}"
13 done
14