From: Sarah Hoffmann Date: Wed, 13 Apr 2022 20:00:37 +0000 (+0200) Subject: add new commands for forced invalidation before indexing X-Git-Tag: v4.1.0~59^2~2 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/c3f1d34b714c0410652bfa2e28fe3f6e5f9ea1aa add new commands for forced invalidation before indexing --- diff --git a/nominatim/clicmd/refresh.py b/nominatim/clicmd/refresh.py index 3c245cd4..4fbdfebb 100644 --- a/nominatim/clicmd/refresh.py +++ b/nominatim/clicmd/refresh.py @@ -19,6 +19,16 @@ from nominatim.db.connection import connect LOG = logging.getLogger() +def _parse_osm_object(obj): + """ Parse the given argument into a tuple of OSM type and ID. + Raises an ArgumentError if the format is not recognized. + """ + if len(obj) < 2 or obj[0].lower() not in 'nrw' or not obj[1:].isdigit(): + raise ArgumentError("Expect OSM object id of form [N|W|R].") + + return (obj[0].upper(), int(obj[1:])) + + class UpdateRefresh: """\ Recompute auxiliary data used by the indexing process. @@ -53,6 +63,15 @@ class UpdateRefresh: help='Recompute place importances (expensive!)') group.add_argument('--website', action='store_true', help='Refresh the directory that serves the scripts for the web API') + group.add_argument('--data-object', action='append', + type=_parse_osm_object, metavar='OBJECT', + help='Mark the given OSM object as requiring an update' + ' (format: [NWR])') + group.add_argument('--data-area', action='append', + type=_parse_osm_object, metavar='OBJECT', + help='Mark the area around the given OSM object as requiring an update' + ' (format: [NWR])') + group = parser.add_argument_group('Arguments for function refresh') group.add_argument('--no-diff-updates', action='store_false', dest='diffs', help='Do not enable code for propagating updates') @@ -124,6 +143,14 @@ class UpdateRefresh: with connect(args.config.get_libpq_dsn()) as conn: refresh.setup_website(webdir, args.config, conn) + if args.data_object or args.data_area: + with connect(args.config.get_libpq_dsn()) as conn: + for obj in args.data_object or []: + refresh.invalidate_osm_object(*obj, conn, recursive=False) + for obj in args.data_area or []: + refresh.invalidate_osm_object(*obj, conn, recursive=True) + conn.commit() + return 0 diff --git a/nominatim/tools/refresh.py b/nominatim/tools/refresh.py index 95be4c0f..aacc622b 100644 --- a/nominatim/tools/refresh.py +++ b/nominatim/tools/refresh.py @@ -19,6 +19,7 @@ from nominatim.version import NOMINATIM_VERSION LOG = logging.getLogger() +OSM_TYPE = {'N': 'node', 'W': 'way', 'R': 'relation'} def _add_address_level_rows_from_entry(rows, entry): """ Converts a single entry from the JSON format for address rank @@ -210,3 +211,28 @@ def setup_website(basedir, config, conn): (basedir / script).write_text(template.format('reverse-only-search.php'), 'utf-8') else: (basedir / script).write_text(template.format(script), 'utf-8') + + +def invalidate_osm_object(osm_type, osm_id, conn, recursive=True): + """ Mark the given OSM object for reindexing. When 'recursive' is set + to True (the default), then all dependent objects are marked for + reindexing as well. + + 'osm_type' must be on of 'N' (node), 'W' (way) or 'R' (relation). + If the given object does not exist, then nothing happens. + """ + assert osm_type in ('N', 'R', 'W') + + LOG.warning("Invalidating OSM %s %s%s.", + OSM_TYPE[osm_type], osm_id, + ' and its dependent places' if recursive else '') + + with conn.cursor() as cur: + if recursive: + sql = """SELECT place_force_update(place_id) + FROM placex WHERE osm_type = %s and osm_id = %s""" + else: + sql = """UPDATE placex SET indexed_status = 2 + WHERE osm_type = %s and osm_id = %s""" + + cur.execute(sql, (osm_type, osm_id))