You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With in-memory pending, the middle tables are only read from once processing is finished. This allows us to build indexes right away, including the GIN index on planet_osm_ways.nodes, which is often slower than the rest of the import.
By starting it sooner, it will make the pending ways and other indexes no longer part of the critical path for import speed on a --slim import. It might increase contention for disk, but this is probably not an issue.
There is no longer a processing stage, so this is not possible in this way. However, the indexing still might be moved a little bit ahead. The way-node index can already be created while relations are still being imported.
With in-memory pending, the middle tables are only read from once processing is finished. This allows us to build indexes right away, including the GIN index on planet_osm_ways.nodes, which is often slower than the rest of the import.
By starting it sooner, it will make the pending ways and other indexes no longer part of the critical path for import speed on a
--slim
import. It might increase contention for disk, but this is probably not an issue.Moved from MapQuest#15
The text was updated successfully, but these errors were encountered: