3 export PGAPPNAME='render-lowzoom'
5 # The source daily vaccum is best placed before the tilegen, as it has marginal speed benefits
7 -j "<%= node[:vectortile][:replication][:threads] %>" \
8 -d "<%= @source_database %>"
10 <%= @tilekiln_bin %> generate zooms \
11 --source-dbname "<%= @source_database %>" \
12 --storage-dbname "<%= @storage_database %>" \
13 --num-threads "<%= node[:vectortile][:rerender][:lowzoom][:threads] %>" \
14 --config <%= @config_path %> \
15 --min-zoom <%= @min_zoom %> \
16 --max-zoom <%= @max_zoom %>
18 # the daily render can add bloat, so the vacuum is done after it on the tile DB
20 -j "<%= node[:vectortile][:replication][:threads] %>" \
21 -d "<%= @storage_database %>"