X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/fe250d3ee8a0c9863f42f4db9bc6427a39690142..86cd5ddd65614dd4b8e06db54fd56afdaeeb1374:/docs/admin/Import.md?ds=sidebyside diff --git a/docs/admin/Import.md b/docs/admin/Import.md index 334c1b75..41942d6f 100644 --- a/docs/admin/Import.md +++ b/docs/admin/Import.md @@ -5,18 +5,17 @@ from an OSM planet file and how to keep the database up to date. It is assumed that you have already successfully installed the Nominatim software itself, if not return to the [installation page](Installation.md). -## Configuration setup in settings/local.php +## Configuration setup in `.env` -The Nominatim server can be customized via the file `settings/local.php` -in the build directory. Note that this is a PHP file, so it must always -start like this: - - --all 2>&1 | tee setup.log ``` -***Note for full planet imports:*** Even on a perfectly configured machine -the import of a full planet takes at least 2 days. Once you see messages +### Notes on full planet imports + +Even on a perfectly configured machine +the import of a full planet takes around 2 days. Once you see messages with `Rank .. ETA` appear, the indexing process has started. This part takes the most time. There are 30 ranks to process. Rank 26 and 30 are the most complex. They take each about a third of the total import time. If you have not reached @@ -167,11 +170,12 @@ configuration as it may not be optimal for the import. ### Notes on memory usage -In the first step of the import Nominatim uses osm2pgsql to load the OSM data -into the PostgreSQL database. This step is very demanding in terms of RAM usage. -osm2pgsql and PostgreSQL are running in parallel at this point. PostgreSQL -blocks at least the part of RAM that has been configured with the -`shared_buffers` parameter during [PostgreSQL tuning](Installation#postgresql-tuning) +In the first step of the import Nominatim uses [osm2pgsql](https://osm2pgsql.org) +to load the OSM data into the PostgreSQL database. This step is very demanding +in terms of RAM usage. osm2pgsql and PostgreSQL are running in parallel at +this point. PostgreSQL blocks at least the part of RAM that has been configured +with the `shared_buffers` parameter during +[PostgreSQL tuning](Installation#postgresql-tuning) and needs some memory on top of that. osm2pgsql needs at least 2GB of RAM for its internal data structures, potentially more when it has to process very large relations. In addition it needs to maintain a cache for node locations. The size @@ -182,10 +186,10 @@ completely and leave the memory for the flatnode file. Nominatim will do this by default, so you do not need to configure anything in this case. For imports without a flatnode file, set `--osm2pgsql-cache` approximately to -the size of the OSM pbf file (in MB) you are importing. Make sure you leave -enough RAM for PostgreSQL and osm2pgsql as mentioned above. If the system starts -swapping or you are getting out-of-memory errors, reduce the cache size or -even consider using a flatnode file. +the size of the OSM pbf file you are importing. The size needs to be given in +MB. Make sure you leave enough RAM for PostgreSQL and osm2pgsql as mentioned +above. If the system starts swapping or you are getting out-of-memory errors, +reduce the cache size or even consider using a flatnode file. ### Verify the import @@ -197,7 +201,7 @@ Run this script to verify all required tables and indices got created successful ### Setting up the website -Run the following command to set up the configuration file for the website +Run the following command to set up the configuration file for the API frontend `settings/settings-frontend.php`. These settings are used in website/*.php files. ```sh @@ -264,9 +268,9 @@ entire US adds about 10GB to your database. ./utils/setup.php --import-tiger-data - 3. Enable use of the Tiger data in your `settings/local.php` by adding: + 3. Enable use of the Tiger data in your `.env` by adding: - @define('CONST_Use_US_Tiger_Data', true); + NOMINATIM_USE_US_TIGER_DATA=yes 4. Apply the new settings: