]> git.openstreetmap.org Git - nominatim.git/blob - docs/admin/Migration.md
Drop the place_classtype tables on migration
[nominatim.git] / docs / admin / Migration.md
1 # Database Migrations
2
3 Nominatim offers automatic migrations for versions 4.3+. Please follow
4 the following steps:
5
6 * Stop any updates that are potentially running
7 * Update the backend: `pip install -U nominatim-db`
8 * Go to your project directory and run `nominatim admin --migrate`
9 * Update the frontend: `pip install -U nominatim-api`
10 * (optionally) Restart updates
11
12 Below you find additional migrations and hints about other structural and
13 breaking changes. **Please read them before running the migration.**
14
15 !!! note
16     If you are migrating from a version <4.3, you need to install 4.3
17     and migrate to 4.3 first. Then you can migrate to the current
18     version. It is strongly recommended to do a reimport instead.
19
20 ## 5.3.0 -> 5.4.0
21
22 ### Removal of the place_classtype tables
23
24 Category search now runs against the `categories` column of `placex`, so the
25 per-category `place_classtype_*` tables are not used anymore. The migration
26 drops them. This frees a considerable amount of disk space on a planet
27 database but may take a moment as there is one table per category.
28
29 The `--min` option of `nominatim special-phrases` only restricted which of
30 those tables were created. It has no effect anymore and has been removed.
31
32 ## 5.2.0 -> 5.3.0
33
34 #### Expensive table migrations
35
36 This version introduces new tables for postcodes, interpolations and
37 associatedStreet relations. Migration is possible but will take a bit
38 longer. It is recommended to take Nominatim offline while migrating to 5.3.
39
40 ## 5.1.0 -> 5.2.0
41
42 ### Lua import style: required extratags removed
43
44 Tags that are required by Nominatim as extratags are now always included
45 independent of what is defined in the style. The line
46
47     flex.add_for_extratags('required')
48
49 is no longer required in custom styles and will throw an error. Simply
50 remove the line from your style.
51
52 ## 4.5.0 -> 5.0.0
53
54 ### PHP frontend removed
55
56 The PHP frontend has been completely removed. Please switch to the Python
57 frontend.
58
59 Without the PHP code, the `nominatim refresh --website` command is no longer
60 needed. It currently omits a warning and does otherwise nothing. It will be
61 removed in later versions of Nominatim. So make sure you remove it from your
62 scripts.
63
64 ### CMake building removed
65
66 Nominatim can now only be installed via pip. Please follow the installation
67 instructions for the current version to change to pip.
68
69 ### osm2pgsql no longer vendored in
70
71 Nominatim no longer ships its own version of osm2pgsql. Please install a
72 stock version of osm2pgsql from your distribution. See the
73 [installation instruction for osm2pgsql](https://osm2pgsql.org/doc/install.html)
74 for details. A minimum version of 1.8 is required. The current stable versions
75 of Ubuntu and Debian already ship with an appropriate versions. For older
76 installations, you may have to compile a newer osm2pgsql yourself.
77
78 ### Legacy tokenizer removed
79
80 The `legacy` tokenizer is no longer enabled. This tokenizer has been superseded
81 by the `ICU` tokenizer a long time ago. In the unlikely case that your database
82 still uses the `legacy` tokenizer, you must reimport your database.
83
84 ### osm2pgsql style overhauled
85
86 There are some fundamental changes to how customized osm2pgsql styles should
87 be written. The changes are mostly backwards compatible, i.e. custom styles
88 should still work with the new implementation. The only exception is a
89 customization of the `process_tags()` function. This function is no longer
90 considered public and neither are the helper functions used in it.
91 They currently still work but will be removed at some point. If you have
92 been making changes to `process_tags`, please review your style and try
93 to switch to the new convenience functions.
94
95 For more information on the changes, see the
96 [pull request](https://github.com/osm-search/Nominatim/pull/3615)
97 and read the new
98 [customization documentation](https://nominatim.org/release-docs/latest/customize/Import-Styles/).
99
100 ## 4.4.0 -> 4.5.0
101
102 ### New structure for Python packages
103
104 The nominatim Python package has been split into `nominatim-db` and `nominatim-api`.
105 Any imports need to be adapted accordingly.
106
107 If you are running the Python frontend, change the server module from
108 `nominatim.server.falcon.server` to `nominatim_api.server.falcon.server`.
109
110 If you are using the Nominatim library, all imports need to be changed
111 from `nominatim.api.<module>` to `nominatim_api.<module>`.
112
113 If you have written custom tokenizers or sanitizers, the appropriate modules
114 are now found in `nominatim_db`.
115
116 ## 4.2.0 -> 4.3.0
117
118 ### New indexes for reverse lookup
119
120 The reverse lookup algorithm has changed slightly to improve performance.
121 This change needs a different index in the database. The required index
122 will be automatically build during migration. Until the new index is available
123 performance of the /reverse endpoint is significantly reduced. You should
124 therefore either remove traffic from the machine before attempting a
125 version update or create the index manually **before** starting the update
126 using the following SQL:
127
128 ```sql
129 CREATE INDEX IF NOT EXISTS idx_placex_geometry_reverse_lookupPlaceNode
130   ON placex USING gist (ST_Buffer(geometry, reverse_place_diameter(rank_search)))
131   WHERE rank_address between 4 and 25 AND type != 'postcode'
132     AND name is not null AND linked_place_id is null AND osm_type = 'N';
133 ```
134
135 ## 4.0.0 -> 4.1.0
136
137 ### ICU tokenizer is the new default
138
139 Nominatim now installs the [ICU tokenizer](../customize/Tokenizers.md#icu-tokenizer)
140 by default. This only has an effect on newly installed databases. When
141 updating older databases, it keeps its installed tokenizer. If you still
142 run with the legacy tokenizer, make sure to compile Nominatim with the
143 PostgreSQL module, see [Installation](Installation.md#building-nominatim).
144
145 ### geocodejson output changed
146
147 The `type` field of the geocodejson output has changed. It now contains
148 the address class of the object instead of the value of the OSM tag. If
149 your client has used the `type` field, switch them to read `osm_value`
150 instead.
151
152 ## 3.7.0 -> 4.0.0
153
154 ### NOMINATIM_PHRASE_CONFIG removed
155
156 Custom blacklist configurations for special phrases now need to be handed
157 with the `--config` parameter to `nominatim special-phrases`. Alternatively
158 you can put your custom configuration in the project directory in a file
159 named `phrase-settings.json`.
160
161 Version 3.8 also removes the automatic converter for the php format of
162 the configuration in older versions. If you are updating from Nominatim < 3.7
163 and still work with a custom `phrase-settings.php`, you need to manually
164 convert it into a json format.
165
166 ### PHP utils removed
167
168 The old PHP utils have now been removed completely. You need to switch to
169 the appropriate functions of the nominatim  command line tool. See
170 [Introducing `nominatim` command line tool](#introducing-nominatim-command-line-tool)
171 below.
172
173 ## 3.6.0 -> 3.7.0
174
175 ### New format and name of configuration file
176
177 The configuration for an import is now saved in a `.env` file in the project
178 directory. This file follows the dotenv format. For more information, see
179 the [installation chapter](Import.md#configuration-setup-in-env).
180
181 To migrate to the new system, create a new project directory, add the `.env`
182 file and port your custom configuration from `settings/local.php`. Most
183 settings are named similar and only have received a `NOMINATIM_` prefix.
184 Use the default settings in `settings/env.defaults` as a reference.
185
186 ### New location for data files
187
188 External data files for Wikipedia importance, postcodes etc. are no longer
189 expected to reside in the source tree by default. Instead they will be searched
190 in the project directory. If you have an automated setup script you must
191 either adapt the download location or explicitly set the location of the
192 files to the old place in your `.env`.
193
194 ### Introducing `nominatim` command line tool
195
196 The various php utilities have been replaced with a single `nominatim`
197 command line tool. Make sure to adapt any scripts. There is no direct 1:1
198 matching between the old utilities and the commands of nominatim CLI. The
199 following list gives you a list of nominatim sub-commands that contain
200 functionality of each script:
201
202 * ./utils/setup.php: `import`, `freeze`, `refresh`
203 * ./utils/update.php: `replication`, `add-data`, `index`, `refresh`
204 * ./utils/specialphrases.php: `special-phrases`
205 * ./utils/check_import_finished.php: `admin`
206 * ./utils/warm.php: `admin`
207 * ./utils/export.php: `export`
208
209 Try `nominatim <command> --help` for more information about each subcommand.
210
211 `./utils/query.php` no longer exists in its old form. `nominatim search`
212 provides a replacement but returns different output.
213
214 ### Switch to normalized house numbers
215
216 The housenumber column in the placex table uses now normalized version.
217 The automatic migration step will convert the column but this may take a
218 very long time. It is advisable to take the machine offline while doing that.
219
220 ## 3.5.0 -> 3.6.0
221
222 ### Change of layout of search_name_* tables
223
224 The table need a different index for nearest place lookup. Recreate the
225 indexes using the following shell script:
226
227 ```bash
228 for table in `psql -d nominatim -c "SELECT tablename FROM pg_tables WHERE tablename LIKE 'search_name_%'" -tA | grep -v search_name_blank`;
229 do
230     psql -d nominatim -c "DROP INDEX idx_${table}_centroid_place; CREATE INDEX idx_${table}_centroid_place ON ${table} USING gist (centroid) WHERE ((address_rank >= 2) AND (address_rank <= 25)); DROP INDEX idx_${table}_centroid_street; CREATE INDEX idx_${table}_centroid_street ON ${table} USING gist (centroid) WHERE ((address_rank >= 26) AND (address_rank <= 27))";
231 done
232 ```
233
234 ### Removal of html output
235
236 The debugging UI is no longer directly provided with Nominatim. Instead we
237 now provide a simple Javascript application. Please refer to
238 [Setting up the Nominatim UI](Setup-Nominatim-UI.md) for details on how to
239 set up the UI.
240
241 The icons served together with the API responses have been moved to the
242 nominatim-ui project as well. If you want to keep the `icon` field in the
243 response, you need to set `CONST_MapIcon_URL` to the URL of the `/mapicon`
244 directory of nominatim-ui.
245
246 ### Change order during indexing
247
248 When reindexing places during updates, there is now a different order used
249 which needs a different database index. Create it with the following SQL command:
250
251 ```sql
252 CREATE INDEX idx_placex_pendingsector_rank_address
253   ON placex
254   USING BTREE (rank_address, geometry_sector)
255   WHERE indexed_status > 0;
256 ```
257
258 You can then drop the old index with:
259
260 ```sql
261 DROP INDEX idx_placex_pendingsector;
262 ```
263
264 ### Unused index
265
266 This index has been unused ever since the query using it was changed two years ago. Saves about 12GB on a planet installation.
267
268 ```sql
269 DROP INDEX idx_placex_geometry_reverse_lookupPoint;
270 ```
271
272 ### Switching to dotenv
273
274 As part of the work changing the configuration format, the configuration for
275 the website is now using a separate configuration file. To create the
276 configuration file, run the following command after updating:
277
278 ```sh
279 ./utils/setup.php --setup-website
280 ```
281
282 ### Update SQL code
283
284 To update the SQL code to the leatest version run:
285
286 ```
287 ./utils/setup.php --create-functions --enable-diff-updates --create-partition-functions
288 ```
289
290 ## 3.4.0 -> 3.5.0
291
292 ### New Wikipedia/Wikidata importance tables
293
294 The `wikipedia_*` tables have a new format that also includes references to
295 Wikidata. You need to update the computation functions and the tables as
296 follows:
297
298   * download the new Wikipedia tables as described in the import section
299   * reimport the tables: `./utils/setup.php --import-wikipedia-articles`
300   * update the functions: `./utils/setup.php --create-functions --enable-diff-updates`
301   * create a new lookup index:
302 ```sql
303 CREATE INDEX idx_placex_wikidata
304   ON placex
305   USING BTREE ((extratags -> 'wikidata'))
306   WHERE extratags ? 'wikidata'
307     AND class = 'place'
308     AND osm_type = 'N'
309     AND rank_search < 26;
310 ```
311   * compute importance: `./utils/update.php --recompute-importance`
312
313 The last step takes about 10 hours on the full planet.
314
315 Remove one function (it will be recreated in the next step):
316
317 ```sql
318 DROP FUNCTION create_country(hstore,character varying);
319 ```
320
321 Finally, update all SQL functions:
322
323 ```sh
324 ./utils/setup.php --create-functions --enable-diff-updates --create-partition-functions
325 ```
326
327 ## 3.3.0 -> 3.4.0
328
329 ### Reorganisation of location_area_country table
330
331 The table `location_area_country` has been optimized. You need to switch to the
332 new format when you run updates. While updates are disabled, run the following
333 SQL commands:
334
335 ```sql
336 CREATE TABLE location_area_country_new AS
337   SELECT place_id, country_code, geometry FROM location_area_country;
338 DROP TABLE location_area_country;
339 ALTER TABLE location_area_country_new RENAME TO location_area_country;
340 CREATE INDEX idx_location_area_country_geometry ON location_area_country USING GIST (geometry);
341 CREATE INDEX idx_location_area_country_place_id ON location_area_country USING BTREE (place_id);
342 ```
343
344 Finally, update all SQL functions:
345
346 ```sh
347 ./utils/setup.php --create-functions --enable-diff-updates --create-partition-functions
348 ```
349
350 ## 3.2.0 -> 3.3.0
351
352 ### New database connection string (DSN) format
353
354 Previously database connection setting (`CONST_Database_DSN` in `settings/*.php`) had the format
355
356    * (simple) `pgsql://@/nominatim`
357    * (complex) `pgsql://johndoe:secret@machine1.domain.com:1234/db1`
358
359 The new format is
360
361    * (simple) `pgsql:dbname=nominatim`
362    * (complex) `pgsql:dbname=db1;host=machine1.domain.com;port=1234;user=johndoe;password=secret`
363
364 ### Natural Earth country boundaries no longer needed as fallback
365
366 ```sql
367 DROP TABLE country_naturalearthdata;
368 ```
369
370 Finally, update all SQL functions:
371
372 ```sh
373 ./utils/setup.php --create-functions --enable-diff-updates --create-partition-functions
374 ```
375
376 ### Configurable Address Levels
377
378 The new configurable address levels require a new table. Create it with the
379 following command:
380
381 ```sh
382 ./utils/update.php --update-address-levels
383 ```
384
385 ## 3.1.0 -> 3.2.0
386
387 ### New reverse algorithm
388
389 The reverse algorithm has changed and requires new indexes. Run the following
390 SQL statements to create the indexes:
391
392 ```sql
393 CREATE INDEX idx_placex_geometry_reverse_lookupPoint
394   ON placex
395   USING gist (geometry)
396   WHERE (name IS NOT null or housenumber IS NOT null or rank_address BETWEEN 26 AND 27)
397     AND class NOT IN ('railway','tunnel','bridge','man_made')
398     AND rank_address >= 26
399     AND indexed_status = 0
400     AND linked_place_id IS null;
401 CREATE INDEX idx_placex_geometry_reverse_lookupPolygon
402   ON placex USING gist (geometry)
403   WHERE St_GeometryType(geometry) in ('ST_Polygon', 'ST_MultiPolygon')
404     AND rank_address between 4 and 25
405     AND type != 'postcode'
406     AND name is not null
407     AND indexed_status = 0
408     AND linked_place_id is null;
409 CREATE INDEX idx_placex_geometry_reverse_placeNode
410   ON placex USING gist (geometry)
411   WHERE osm_type = 'N'
412     AND rank_search between 5 and 25
413     AND class = 'place'
414     AND type != 'postcode'
415     AND name is not null
416     AND indexed_status = 0
417     AND linked_place_id is null;
418 ```
419
420 You also need to grant the website user access to the `country_osm_grid` table:
421
422 ```sql
423 GRANT SELECT ON table country_osm_grid to "www-user";
424 ```
425
426 Replace the `www-user` with the user name of your website server if necessary.
427
428 You can now drop the unused indexes:
429
430 ```sql
431 DROP INDEX idx_placex_reverse_geometry;
432 ```
433
434 Finally, update all SQL functions:
435
436 ```sh
437 ./utils/setup.php --create-functions --enable-diff-updates --create-partition-functions
438 ```
439
440 ## 3.0.0 -> 3.1.0
441
442 ### Postcode Table
443
444 A new separate table for artificially computed postcode centroids was introduced.
445 Migration to the new format is possible but **not recommended**.
446
447 Create postcode table and indexes, running the following SQL statements:
448
449 ```sql
450 CREATE TABLE location_postcode
451   (place_id BIGINT, parent_place_id BIGINT, rank_search SMALLINT,
452    rank_address SMALLINT, indexed_status SMALLINT, indexed_date TIMESTAMP,
453    country_code varchar(2), postcode TEXT,
454    geometry GEOMETRY(Geometry, 4326));
455 CREATE INDEX idx_postcode_geometry ON location_postcode USING GIST (geometry);
456 CREATE UNIQUE INDEX idx_postcode_id ON location_postcode USING BTREE (place_id);
457 CREATE INDEX idx_postcode_postcode ON location_postcode USING BTREE (postcode);
458 GRANT SELECT ON location_postcode TO "www-data";
459 DROP TYPE IF EXISTS nearfeaturecentr CASCADE;
460 CREATE TYPE nearfeaturecentr AS (
461   place_id BIGINT,
462   keywords int[],
463   rank_address smallint,
464   rank_search smallint,
465   distance float,
466   isguess boolean,
467   postcode TEXT,
468   centroid GEOMETRY
469 );
470 ```
471
472 Add postcode column to `location_area` tables with SQL statement:
473
474 ```sql
475 ALTER TABLE location_area ADD COLUMN postcode TEXT;
476 ```
477
478 Then reimport the functions:
479
480 ```sh
481 ./utils/setup.php --create-functions --enable-diff-updates --create-partition-functions
482 ```
483
484 Create appropriate triggers with SQL:
485
486 ```sql
487 CREATE TRIGGER location_postcode_before_update BEFORE UPDATE ON location_postcode
488     FOR EACH ROW EXECUTE PROCEDURE postcode_update();
489 ```
490
491 Finally populate the postcode table (will take a while):
492
493 ```sh
494 ./utils/setup.php --calculate-postcodes --index --index-noanalyse
495 ```
496
497 This will create a working database. You may also delete the old artificial
498 postcodes now. Note that this may be expensive and is not absolutely necessary.
499 The following SQL statement will remove them:
500
501 ```sql
502 DELETE FROM place_addressline a USING placex p
503  WHERE a.address_place_id = p.place_id and p.osm_type = 'P';
504 ALTER TABLE placex DISABLE TRIGGER USER;
505 DELETE FROM placex WHERE osm_type = 'P';
506 ALTER TABLE placex ENABLE TRIGGER USER;
507 ```