From a3f664c07f6105115b47e70fd11709e93bb3bb48 Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 28 Jun 2022 21:51:31 -0400 Subject: [PATCH] rollup commit lots of fixes --- Dockerfile | 1 + README.md | 2 +- openstreetmap-tiles-update-expire.sh | 9 ++++----- run.sh | 5 +++++ 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 68699df..f249f0a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,6 +41,7 @@ RUN apt-get update \ && apt-get install -y --no-install-recommends \ apache2 \ cron \ + dateutils \ fonts-noto-cjk \ fonts-noto-hinted \ fonts-noto-unhinted \ diff --git a/README.md b/README.md index 81bbc06..e3ef17b 100644 --- a/README.md +++ b/README.md @@ -246,7 +246,7 @@ You can find an example of the import performance to expect with this image on t If you encounter such entries in the log, it will mean that the default shared memory limit (64 MB) is too low for the container and it should be raised: ``` -renderd[121]: ERROR: failed to render TILE ajt 2 0-3 0-3 +renderd[121]: ERROR: failed to render TILE default 2 0-3 0-3 renderd[121]: reason: Postgis Plugin: ERROR: could not resize shared memory segment "/PostgreSQL.790133961" to 12615680 bytes: ### No space left on device ``` To raise it use `--shm-size` parameter. For example: diff --git a/openstreetmap-tiles-update-expire.sh b/openstreetmap-tiles-update-expire.sh index 37dc087..970a68d 100755 --- a/openstreetmap-tiles-update-expire.sh +++ b/openstreetmap-tiles-update-expire.sh @@ -3,7 +3,7 @@ set -e #------------------------------------------------------------------------------ -# AJT - change directory to mod_tile directory so that we can run replag +# Change directory to mod_tile directory so that we can run replag # and other things directly from this script when run from cron. # Change the actual location to wherever installed locally. #------------------------------------------------------------------------------ @@ -147,8 +147,9 @@ if `python -c "import os, sys; st=os.statvfs('$BASE_DIR'); sys.exit(1 if st.f_ba fi seq=`cat $WORKOSM_DIR/state.txt | grep sequenceNumber | cut -d= -f2` +replag=`dateutils.ddiff $(cat $WORKOSM_DIR/state.txt | grep timestamp | cut -d "=" -f 2 | sed 's,\\\,,g') now` -m_ok "start import from seq-nr $seq, replag is `osmosis-db_replag -h`" +m_ok "start import from seq-nr $seq, replag is $replag" /bin/cp $WORKOSM_DIR/state.txt $WORKOSM_DIR/last.state.txt m_ok "downloading diff" @@ -188,15 +189,13 @@ fi m_ok "expiring tiles" #------------------------------------------------------------------------------ -# When expiring tiles we need to define the style sheet if it's not "default". -# In this case it's "ajt". # Previously all tiles on the "dirty" list between $EXPIRY_MINZOOM and # $EXPIRY_MAXZOOM were dirtied. We currently re-render # tiles >= $EXPIRY_MINZOOM and < $EXPIRY_DELETEFROM, expiry from 14 and # delete >= $EXPIRY_DELETEFROM and <= $EXPIRY_MAXZOOM. # The default path to renderd.sock is fixed. #------------------------------------------------------------------------------ -if ! render_expired --map=ajt --min-zoom=$EXPIRY_MINZOOM --touch-from=$EXPIRY_TOUCHFROM --delete-from=$EXPIRY_DELETEFROM --max-zoom=$EXPIRY_MAXZOOM -s /var/run/renderd/renderd.sock < "$EXPIRY_FILE.$$" 2>&1 | tail -8 >> "$EXPIRYLOG"; then +if ! render_expired --map=default --min-zoom=$EXPIRY_MINZOOM --touch-from=$EXPIRY_TOUCHFROM --delete-from=$EXPIRY_DELETEFROM --max-zoom=$EXPIRY_MAXZOOM -s /var/run/renderd/renderd.sock < "$EXPIRY_FILE.$$" 2>&1 | tail -8 >> "$EXPIRYLOG"; then m_info "Expiry failed" fi diff --git a/run.sh b/run.sh index 8137dab..40e3b65 100755 --- a/run.sh +++ b/run.sh @@ -173,6 +173,11 @@ if [ "$1" == "run" ]; then # start cron job to trigger consecutive updates if [ "${UPDATES:-}" == "enabled" ] || [ "${UPDATES:-}" == "1" ]; then /etc/init.d/cron start + sudo -u renderer touch /var/log/tiles/run.log; tail -f /var/log/tiles/run.log >> /proc/1/fd/1 & + sudo -u renderer touch /var/log/tiles/osmosis.log; tail -f /var/log/tiles/osmosis.log >> /proc/1/fd/1 & + sudo -u renderer touch /var/log/tiles/expiry.log; tail -f /var/log/tiles/expiry.log >> /proc/1/fd/1 & + sudo -u renderer touch /var/log/tiles/osm2pgsql.log; tail -f /var/log/tiles/osm2pgsql.log >> /proc/1/fd/1 & + fi # Run while handling docker stop's SIGTERM