]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tile/templates/default/update-lowzoom.erb
nominatim: UI forwarding should take precedence to blocking
[chef.git] / cookbooks / tile / templates / default / update-lowzoom.erb
index 17229e94fd03f99f2be7ad82bd7f406a99d0d407..0455493d993bc2f2a2830d63eab95228fc84a4b4 100644 (file)
@@ -5,15 +5,24 @@
 # Send output to the log
 exec > /var/log/tile/update-lowzoom-<%= @style %>.log 2>&1
 
-# Update tiles from z0 to z12 for style "<%= @style %>"
-render_list \
-  --all --force \
-  --tile-dir=/srv/tile.openstreetmap.org/tiles \
-  --socket=/var/run/renderd/renderd.sock \
-  --num-threads=<%= ( node[:cpu][:total] - 2 ) / 4 %> \
-  --map="<%= @style %>" \
-  --max-load=70 \
-  --min-zoom=0 --max-zoom=12
+# Define function to update tiles from z0 to z12 for style "<%= @style %>"
+function update_tiles
+{
+  render_old \
+    --timestamp=$(stat -c %Y "/srv/tile.openstreetmap.org/styles/<%= @style %>/project.xml") \
+    --tile-dir=/srv/tile.openstreetmap.org/tiles \
+    --socket=/var/run/renderd/renderd.sock \
+    --num-threads=<%= @threads %> \
+    --map="<%= @style %>" \
+    --max-load=<%= node.cpu_cores - 1 %> \
+    --min-zoom=0 --max-zoom=12
+}
+
+# Loop running the update command until it suceeds
+until update_tiles
+do
+  sleep 30
+done
 
 # Update timestamp for style "<%= @style %>"
 touch \