These instructions will help you set up the Pelias geocoder from scratch. It assumes some knowledge of the command line and Node.js, but we'd like as many people as possible to be able to install Pelias, so if anything is confusing, please don't hesitate to reach out. We'll do what we can to help and also improve the documentation.
Mapzen also hosts an instance of Pelias with data for the whole planet loaded, that can be used for free with just an API key. It's a great way to try out Pelias before setting it up, or for comparing your setup to a reference. All information on Mapzen Search can be found here.
These are the steps for fully installing Pelias:
- Check that the hardware and software requirements are met
- Decide which datasets to use and download them
- Download Pelias API, schema, and importer(s) using the appropriate branches
- Customize Pelias Configuration file
~/pelias.json
- Install the Elasticsearch schema using pelias-schema
- Use one or more importers to load data into Elasticsearch
- Set up PiP Service and Interpolation (recommended)
- Start the API server to begin handling queries
In general, Pelias will require:
- At a minimum 100GB disk space to download, extract, and process data
- Lots of RAM, 8GB is a good minimum for a small import like a single city. A full North America OSM import just fits in 16GB RAM
- Node.js 4.0 or newer (the latest in the Node 4 or 6 series is recommended). Node.js 0.10 and 0.12 are no longer supported
- An Elasticsearch 2.3 cluster (on one or machines). Refer to the official 2.3 install docs for setup instructions. Pelias only supports versions 2.3.x and 2.4.x. Note that Java is required for Elasticsearch.
- Libpostal, an address parser. Requires about 4GB of disk space to download all the required data.
All internal Mapzen development of Pelias is done on Linux and macOS so we strongly recommend setting up Pelias using one of these and not Microsoft Windows. We implicitly support Linux and all commands in this documentation are written with Linux or Unix (and therefore macOS by extension) in mind. Due to concerns such as path delimiters and availability of command line tools, Pelias doesn't explicitly not support Windows but we don't have any Windows environments at our disposal and support is very limited. In the event that using Windows is mandatory, note that git is not pre-installed and we strongly suggest installing git with git bash support. git bash is a shell that provides a Unix/Linux environment in which to perform all Pelias actions and should be used instead of the Windows command prompt or PowerShell. Cygwin also provides a bash environment but no internal testing has been performed using it.
Pelias can currently import data from four different sources, using five different importers.
Start with the Who's on First
dataset. At a minimum, download the admin hierarchy data, required for providing neighborhood, city, or any region info to imported records (admin lookup).
We recommend creating a /Data
folder with subfolders to store datasets from each source. (For example, Data/whosonfirst
can hold data from Who's on First.)
The Who's on First importer can download all the Who's on First data quickly and easily.
There is an option to download just the admin hierarchy information on disk for admin lookup (strongly recommended if you don't want all of Who's on First data). While admin hierarchy data is used during the import process to enrich the data with admin information, it only needs to be downloaded (not imported) for admin lookup to work.
The pelias/geonames importer contains code and instructions for downloading Geonames data automatically. Individual countries, or the entire planet (1.3GB compressed) can be specified.
The OpenAddresses project includes numerous download options,
all of which are .zip
downloads. The full dataset is just over 6 gigabytes compressed (the
extracted files are around 30GB), but there are numerous subdivision options. In any case, the
.zip
files simply need to be extracted to a directory of your choice, and Pelias can be configured
to either import every .csv
in that directory, or only selected files.
OpenStreetMap (OSM) has a nearly limitless array of download options, and any of them should work as long as
they're in PBF format. Generally the files will
have the extension .osm.pbf
. Good sources include the Mapzen Metro Extracts
(which has popular cities available immediately, or custom areas that take only
a few minutes to build), and planet files listed on the OSM wiki.
A full planet PBF file is about 36GB.
To download and import street data from OSM, a separate importer is used that operates on a preprocessed dataset derived from the OSM planet file.
As may be evident from the dataset section above, importing all the data in all five supported datasets is worthy of its own discussion. Current full planet builds weigh in at over 450 million documents, and require about 330GB total storage in Elasticsearch. Needless to say, a full planet build is not likely to succeed on most personal computers.
Fortunately, because of services like AWS and the scalability of Elasticsearch, full planet builds are possible without too much extra effort. The process is no different, it just requires more hardware and takes longer.
To set expectations, a cluster of 4 r3.xlarge AWS instances (30GB RAM each) running Elasticsearch, and one c4.8xlarge instance running the importers can complete a full planet build in about two days.
For a production ready instance of Pelias, capable of supporting a few hundred queries per second across a full planet build, a setup like the following should be sufficient.
The main requirement of Elasticsearch is that it has lots of disk and RAM. 120GB of RAM across the cluster is a good minimum. Increased CPU power is useful to achieve a higher throughput for queries, but not as important as RAM.
Example configuration: 4 to 8 c4.4xlarge
(16 CPU, 30GB RAM)
The importers are each single-threaded Node.js processes, which require around 8GB of RAM each with admin lookup enabled. Faster CPUs will help increase the import speed. Running multiple importers in parallel is recommended if the importer machine has enough RAM and CPU to support them.
Example configuration: 1 c4.4xlarge
(16 CPU, 30GB RAM), running two parallel importers
The API servers are generally under very light load even with hundreds of queries per second going to Elasticsearch, where most of the heavy lifting is done. However, with libpostal, they require around 4GB of RAM to be comfortable.
Example configuration: 3 t2.large
(2 CPU, 8GB RAM)
As part of the setup instructions below, you'll be downloading several Pelias packages from source on Github. All of these packages offer 3 branches for various use cases. Based on your needs, you should pick one of these branches and use the same one across all of the Pelias packages.
production
(recommended): contains only code that has been tested against a full-planet build and is live on
Mapzen Search. This is the "safest" branch and it will change the least frequently, although we
generally release new code at least once a week.
staging
: these branches contain the code that is currently being tested against a full planet
build for imminent release to Mapzen Search. It's useful to track what code will be going out in the
next release, but not much else.
master
: master branches contain the latest code that has passed code review, unit/integration
tests, and is ready to be included in the next release. While we try to avoid it, the nature of the
master branch is that it will sometimes be broken. That said, these are the branches to use for
development of new features.
At a minimum, you'll need
- Pelias schema
- API
- Importer(s)
Here's a bash snippet that will download all the repositories (they are all small enough that you don't have to worry about the space of the code itself), check out the production branch (which is probably the one you want), and install all the node module dependencies.
for repository in schema api whosonfirst geonames openaddresses openstreetmap polylines; do
git clone [email protected]:pelias/${repository}.git # clone from Github
pushd $repository > /dev/null # switch into importer directory
git checkout production # or remove this line to stay with master
npm install # install npm dependencies
popd > /dev/null # return to code directory
done
Nearly all configuration for Pelias is driven through a single config file: pelias.json
. By
default, Pelias will look for this file in your home directory, but you can configure where it
looks. For more details, see the pelias-config repository.
Pelias will by default look for Elasticsearch on localhost
at port 9200 (the standard
Elasticsearch port).
Take a look at the default config. You can see the Elasticsearch configuration looks something like this:
{
"esclient": {
"hosts": [{
"host": "localhost",
"port": 9200
}]
... // rest of config
}
If you want to connect to Elasticsearch somewhere else, change localhost
as needed. You can
specify multiple hosts if you have a large cluster. In fact, the entire esclient
section of the
config is sent along to the elasticsearch-js module, so
any of its configuration options
are valid.
The other major section, imports
, defines settings for each importer. adminLookup
has it's own section and its value applies to all importers. The defaults look like this:
{
"imports": {
"adminLookup": {
"enabled": true
},
"geonames": {
"datapath": "./data",
},
"openstreetmap": {
"datapath": "/mnt/pelias/openstreetmap",
"leveldbpath": "/tmp",
"import": [{
"filename": "planet.osm.pbf"
}]
},
"openaddresses": {
"datapath": "/mnt/pelias/openaddresses",
"files": []
},
"whosonfirst": {
"datapath": "/mnt/pelias/whosonfirst"
},
"polyline": {
"datapath": "/mnt/pelias/polyline",
"files": []
}
}
}
Note: The datapath must be an absolute path. As you can see, the default datapaths are meant to be changed.
Of special note in pelias.json
are Elasticsearch settings. The default
settings (see the elasticsearch
section) will be fine for development, but in particular the shard count should be
increased for production use. Mapzen Search uses 24 shards in production (for a full planet build).
Smaller installations should probably at least use the Elasticsearch default of 5 shards:
{
"elasticsearch": {
"settings": {
"index": {
"number_of_shards": "5",
}
}
}
}
Other than requiring Elasticsearch 2.3, nothing special in the Elasticsearch setup is required for Pelias, so please refer to the official 2.3 install docs.
Older versions of Elasticsearch are not supported.
Make sure Elasticsearch is running and connectable, and then you can continue with the Pelias specific setup and importing. Using a plugin like Sense (Chrome extension), head or Marvel can help monitor Elasticsearch as you import data.
If you're using a terminal, you can also search and/or monitor Elasticsearch using their APIs.
Note: On large imports, Elasticsearch can be very sensitive to memory issues. Be sure to modify it's heap size from the default confirmation to something more appropriate to your machine.
Pelias requires specific configuration settings for both performance and accuracy reasons. Fortunately, now that your pelias.json
file is configured with how to connect to Elasticsearch,
the schema repository can automatically create the Pelias index and configure it exactly as needed.
cd schema # assuming you have just run the bash snippet to download the repos from earlier
node scripts/create_index.js
The Elasticsearch Schema is analogous to the layout of a table in a traditional relational database, like MySQL or PostgreSQL. While Elasticsearch attempts to auto-detect a schema that works when inserting new data, this generally leads to non-optimal results. In the case of Pelias, inserting data without first applying the Pelias schema will cause all queries to fail completely:
If you want to reset the schema later (to start over with a new import or because the schema code has been updated), you can drop the index and start over like so:
# !! WARNING: this will remove all your data from pelias!!
node scripts/drop_index.js # it will ask for confirmation first
node scripts/create_index.js
Note: Elasticsearch has no analogy to a database migration, so you generally have to delete and reindex all your data after making schema changes.
Get ready for imports by running Elasticsearch.
Now that the schema is set up, you're ready to begin importing data.
For all importers except for Geonames, you can start the import process with the npm start
command:
cd $importer_directory; npm start
For the Geonames importer, please see its README file for the most up to date instructions. We are working towards making all the importers have the same interface, so the Geonames importer will behave the same as the others soon.
Depending on how much data you've imported, now may be a good time to grab a coffee. You can expect around 800-2000 inserts per second.
The order of imports does not matter. Multiple importers can be run in parallel to speed up the setup process. Each of our importers operates independent of the data that is already in Elasticsearch. For example, you can import OSM data without importing WOF data first.
At least for OpenAddresses and Openstreetmap, you have only one option: delete the index completely (perhaps take a snapshot first if you want to save it), recreate the index, and reload all the data.
Pelias is now able to use the libpostal address parser, which greatly increases the quality of search results. Libpostal must be installed on the machines running the Pelias API, and requires about 4GB of disk space to download all the required data. This data represents a statistical natural language processing model of address parsing trained on OpenStreetMap data. The API will also require about 4GB of memory (it used only a few hundred before), to store the needed data for queries.
Install libpostal following its installation docs. This will also download the training data, so be sure to have enough free disk space.
Two additional services improve the accuracy of the search results: Point-in-Polygon and Interpolation.
Point-in-Polygon (PiP) Service is used for accurate reverse geocoding queries. Given the latitude and longitude coordinates, PiP Service looks up whether the point is inside, outside, or on the boundary of a neighborhood, city, country, etc depending on granularity.
Note that PiP Service requires Who's on First admin hierarchy data. Configure the Pelias API to use Point-in-Polygon by adding a section like this to pelias.json
under "api"
.
{
"api": {
"services": {
"pip": {
"url": "http://localhost:3102"
}
}
}
PiP service requires Who's on First admin hierarchy data. Start and keep PiP service running.
cd pip-service
npm start /path/to/whosonfirstdata #assumes you have downloaded WOF data
Interpolation is a tool to "fill in the gaps" for streets where house numbers are missing. This step is a fallback option when the exact address cannot be matched. Interpolation can estimate where the point may be given other house numbers on the street.
The installation document has details on the databases to build. Note that Interpolation requires Polylines data. Configure the Pelias API to use Interpolation by adding a section like this to pelias.json
.
{
"interpolation": {
"client": {
"adapter": "http",
"host": "http://localhost:3000"
}
},
}
With the databases created, you can start running Interpolation.
cd interpolation
./interpolate server address.db street.db
As soon as you have any data in Elasticsearch, you can start running queries against the Pelias API server. If you installed Libpostal, reinstall the API node modules so that API connects to the text analyzer.
Again thanks to pelias.json
, the API already knows how to connect to Elasticsearch, so all that is
required to start the API is npm start
. You can now send queries to Pelias!
Pelias should now be up and running and will respond to your queries.
For a quick check, a request to http://localhost:3100
should display a link to the documentation
for handy reference.
Here are some queries to try:
http://localhost:3100/v1/search?text=london: a search for the city of London.
http://localhost:3100/v1/autocomplete?text=londo: another query for London, but using the autocomplete endpoint which supports partial matches and is intended to be sent queries as a user types (note the query is for londo
but London is returned)
http://localhost:3100/v1/reverse?point.lon=-73.986027&point.lat=40.748517: a reverse geocode for results near the Empire State Building in New York City.
For information on the Pelias endpoints and their parameters, see the Mapzen Search documentation.
- When we search for an address, our first attempt is to look in the address index in
Elasticsearch
. If an exact match is found, we simply send that back as a result. In this case, the more addresses we have in the index, the better the results will be. - If we weren’t able to locate that address in the Elasticsearch address layer,
we will attempt to find just the street (without the house number) in the Elasticsearch street layer. If you choose to not import the
polylines
data, you won’t have this backup option when an address is not found in the first step. - If the street was found, we use that street to attempt address interpolation, which estimates where a housenumber would reside along the street given other housenumbers
on that street. For this step, you must have an instance of the
interpolation
service running, and the API must be made aware of it via~/pelias.json
. If the address can be interpolated, we will send that approximated result to the user. - If the interpolation service is unable to help further, we will send back the street centroid as our best guess of where the address might be. This is the same street (and its centroid) that we found in step 2. You need polylines in order to get street centroids and interpolation in your results. Without those, you’re relying purely on the data being present in OpenAddresses or OpenStreetMap as a point.