2022-01-03 18:23:58 +03:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#
|
|
|
|
# This file is part of Nominatim. (https://nominatim.org)
|
|
|
|
#
|
|
|
|
# Copyright (C) 2022 by the Nominatim developer community.
|
|
|
|
# For a full list of authors see the git log.
|
2021-02-08 23:05:06 +03:00
|
|
|
"""
|
|
|
|
Implementation of the 'admin' subcommand.
|
|
|
|
"""
|
2021-02-18 19:32:30 +03:00
|
|
|
import logging
|
|
|
|
|
2021-04-16 15:20:09 +03:00
|
|
|
from nominatim.tools.exec_utils import run_legacy_script
|
2021-02-08 23:05:06 +03:00
|
|
|
|
|
|
|
# Do not repeat documentation of subcommand classes.
|
|
|
|
# pylint: disable=C0111
|
|
|
|
# Using non-top-level imports to avoid eventually unused imports.
|
|
|
|
# pylint: disable=E0012,C0415
|
|
|
|
|
2021-02-18 19:32:30 +03:00
|
|
|
LOG = logging.getLogger()
|
|
|
|
|
2021-02-08 23:05:06 +03:00
|
|
|
class AdminFuncs:
|
|
|
|
"""\
|
|
|
|
Analyse and maintain the database.
|
|
|
|
"""
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def add_args(parser):
|
2021-03-02 23:26:13 +03:00
|
|
|
group = parser.add_argument_group('Admin tasks')
|
|
|
|
objs = group.add_mutually_exclusive_group(required=True)
|
|
|
|
objs.add_argument('--warm', action='store_true',
|
2021-10-12 00:27:38 +03:00
|
|
|
help='Warm database caches for search and reverse queries')
|
2021-03-02 23:26:13 +03:00
|
|
|
objs.add_argument('--check-database', action='store_true',
|
2021-10-12 00:27:38 +03:00
|
|
|
help='Check that the database is complete and operational')
|
2021-03-02 23:26:13 +03:00
|
|
|
objs.add_argument('--migrate', action='store_true',
|
2021-10-12 00:27:38 +03:00
|
|
|
help='Migrate the database to a new software version')
|
2021-03-02 23:26:13 +03:00
|
|
|
objs.add_argument('--analyse-indexing', action='store_true',
|
2021-10-12 00:27:38 +03:00
|
|
|
help='Print performance analysis of the indexing process')
|
2021-02-08 23:05:06 +03:00
|
|
|
group = parser.add_argument_group('Arguments for cache warming')
|
|
|
|
group.add_argument('--search-only', action='store_const', dest='target',
|
|
|
|
const='search',
|
|
|
|
help="Only pre-warm tables for search queries")
|
|
|
|
group.add_argument('--reverse-only', action='store_const', dest='target',
|
|
|
|
const='reverse',
|
|
|
|
help="Only pre-warm tables for reverse queries")
|
2021-02-09 00:21:57 +03:00
|
|
|
group = parser.add_argument_group('Arguments for index anaysis')
|
|
|
|
mgroup = group.add_mutually_exclusive_group()
|
|
|
|
mgroup.add_argument('--osm-id', type=str,
|
|
|
|
help='Analyse indexing of the given OSM object')
|
|
|
|
mgroup.add_argument('--place-id', type=int,
|
|
|
|
help='Analyse indexing of the given Nominatim object')
|
2021-02-08 23:05:06 +03:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def run(args):
|
|
|
|
if args.warm:
|
2021-03-02 23:26:13 +03:00
|
|
|
return AdminFuncs._warm(args)
|
2021-02-08 23:05:06 +03:00
|
|
|
|
|
|
|
if args.check_database:
|
2021-02-18 19:32:30 +03:00
|
|
|
LOG.warning('Checking database')
|
|
|
|
from ..tools import check_database
|
|
|
|
return check_database.check_database(args.config)
|
2021-02-08 23:05:06 +03:00
|
|
|
|
2021-02-09 00:21:57 +03:00
|
|
|
if args.analyse_indexing:
|
2021-02-18 19:32:30 +03:00
|
|
|
LOG.warning('Analysing performance of indexing function')
|
|
|
|
from ..tools import admin
|
2022-07-07 12:23:14 +03:00
|
|
|
admin.analyse_indexing(args.config, osm_id=args.osm_id, place_id=args.place_id)
|
2021-03-02 23:26:13 +03:00
|
|
|
return 0
|
2021-02-09 00:21:57 +03:00
|
|
|
|
2021-03-02 23:26:13 +03:00
|
|
|
if args.migrate:
|
|
|
|
LOG.warning('Checking for necessary database migrations')
|
|
|
|
from ..tools import migration
|
|
|
|
return migration.migrate(args.config, args)
|
|
|
|
|
|
|
|
return 1
|
2021-02-08 23:05:06 +03:00
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _warm(args):
|
2021-02-18 19:32:30 +03:00
|
|
|
LOG.warning('Warming database caches')
|
2021-02-08 23:05:06 +03:00
|
|
|
params = ['warm.php']
|
|
|
|
if args.target == 'reverse':
|
|
|
|
params.append('--reverse-only')
|
|
|
|
if args.target == 'search':
|
|
|
|
params.append('--search-only')
|
|
|
|
return run_legacy_script(*params, nominatim_env=args)
|