X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/6b0afd5d9bf0035f7dc82dfa81f84bd0a7d1fedd..4cb5c67a44f4c5bcd07d166e537ed95b9018b3eb:/utils/check_import_finished.php?ds=sidebyside diff --git a/utils/check_import_finished.php b/utils/check_import_finished.php index 82d5b509..42d834c8 100755 --- a/utils/check_import_finished.php +++ b/utils/check_import_finished.php @@ -20,8 +20,15 @@ $print_fail = function ($message = 'Failed') use ($term_colors) { $oDB = new Nominatim\DB; +function isReverseOnlyInstallation() +{ + global $oDB; + return !$oDB->tableExists('search_name'); +} + + echo 'Checking database got created ... '; -if ($oDB->databaseExists()) { +if ($oDB->checkConnection()) { $print_success(); } else { $print_fail(); @@ -107,13 +114,16 @@ $aExpectedIndices = array( 'idx_osmline_parent_osm_id', 'idx_place_osm_unique', 'idx_postcode_id', - 'idx_postcode_postcode', - - // sql/indices_search.src.sql - 'idx_search_name_nameaddress_vector', - 'idx_search_name_name_vector', - 'idx_search_name_centroid' + 'idx_postcode_postcode' ); +if (!isReverseOnlyInstallation()) { + $aExpectedIndices = array_merge($aExpectedIndices, array( + // sql/indices_search.src.sql + 'idx_search_name_nameaddress_vector', + 'idx_search_name_name_vector', + 'idx_search_name_centroid' + )); +} foreach ($aExpectedIndices as $sExpectedIndex) { echo "Checking index $sExpectedIndex ... "; @@ -123,7 +133,8 @@ foreach ($aExpectedIndices as $sExpectedIndex) { $print_fail(); echo <<< END Hints: - * Rerun the setup.php --create-search-indices step + * Run './utils/setup.php --create-search-indices --ignore-errors' to + create missing indices. END; exit(1); @@ -144,7 +155,8 @@ if (empty($aInvalid)) { $print_fail(); echo <<< END At least one index is invalid. That can happen, e.g. when index creation was - disrupted and later restarted. You should run the index stage of setup again. + disrupted and later restarted. You should delete the affected indices and + run the index stage of setup again. See the question 'Can a stopped/killed import process be resumed?' in the troubleshooting guide. Affected indices: