File tree Expand file tree Collapse file tree
images/tiler-imposm/scripts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,14 +10,15 @@ services:
1010 - " 54329:5432"
1111 env_file :
1212 - .env.tiler
13- mem_limit : 40G
13+ mem_limit : 50G
1414 cpus : " 25.0"
15+ shm_size : 12g
1516 networks :
1617 - ohm_network
1718
1819 tiler_imposm :
1920 container_name : tiler_imposm
20- image : ghcr.io/openhistoricalmap/tiler-imposm:0.0.1-0.dev.git.3323.h6950acce
21+ image : ghcr.io/openhistoricalmap/tiler-imposm:0.0.1-0.dev.git.3347.h9440d7a7
2122 volumes :
2223 - tiler_imposm_data:/mnt/data
2324 env_file :
@@ -120,7 +121,7 @@ services:
120121
121122 tiler_monitor :
122123 container_name : tiler_monitor
123- image : ghcr.io/openhistoricalmap/tiler-monitor:0.0.1-0.dev.git.3353.h63df1944
124+ image : ghcr.io/openhistoricalmap/tiler-monitor:0.0.1-0.dev.git.3340.h7261c0e9
124125 volumes :
125126 - /var/run/docker.sock:/var/run/docker.sock
126127 # - ../../images/tiler-monitor:/app
@@ -144,7 +145,7 @@ volumes:
144145 name : tiler_imposm_17_03
145146 tiler_monitor_data :
146147 driver : local
147- name : tiler_monitor_data
148+ name : tiler_monitor_data_v3
148149
149150networks :
150151 ohm_network :
Original file line number Diff line number Diff line change @@ -298,7 +298,6 @@ no_admin_boundaries_views=(
298298
299299
300300# NO_ADMIN_BOUNDARIES always runs in its own background loop (refreshes every 10 hours)
301- refresh_mviews_group " NO_ADMIN_BOUNDARIES" 36000 light " ${no_admin_boundaries_views[@]} " &
302301
303302if [ " $REFRESH_PARALLEL " = " true" ]; then
304303 log_message " Starting PARALLEL refresh of materialized views..."
@@ -318,6 +317,8 @@ if [ "$REFRESH_PARALLEL" = "true" ]; then
318317 refresh_mviews_group " WATER" 180 light " ${water_views[@]} " &
319318 refresh_mviews_group " BUILDINGS" 180 light " ${buildings_views[@]} " &
320319 refresh_mviews_group " ROUTES" 180 light " ${routes_views[@]} " &
320+ refresh_mviews_group " NO_ADMIN_BOUNDARIES" 3600 light " ${no_admin_boundaries_views[@]} " &
321+
321322else
322323 log_message " Starting SEQUENTIAL refresh of materialized views..."
323324 REFRESH_LOOP=false
341342 refresh_mviews_group " BUILDINGS" 1 light " ${buildings_views[@]} " || true
342343 refresh_mviews_group " ROUTES" 1 light " ${routes_views[@]} " || true
343344
345+ refresh_mviews_group " NO_ADMIN_BOUNDARIES" 1 light " ${no_admin_boundaries_views[@]} " || true
346+
344347 elapsed=$(( SECONDS - start_time))
345348 log_message " Sequential refresh cycle completed in ${elapsed} s. Sleeping ${SEQUENTIAL_SLEEP_INTERVAL} s..."
346349 sleep 20
You can’t perform that action at this time.
0 commit comments