Skip to content

Configuring OpenTripPlanner

Note: if you are familiar with OTP1 configuration and are migrating to OTP2, please read the OTP2 Migration Guide to learn what has changed.

Base Directory

On the OTP2 command line you must always specify a single directory after all the switches. This tells OTP2 where to look for any configuration files. By default OTP will also scan this directory for input files to build a graph (GTFS, OSM, elevation, and base street graphs) or the graph.obj file to load when starting a server.

A typical OTP2 directory for a New York City graph might include the following:

otp-config.json
build-config.json
router-config.json
new-york-city-no-buildings.osm.pbf
nyc-elevation.tiff
long-island-rail-road.gtfs.zip
mta-new-york-city-transit.gtfs.zip
port-authority-of-new-york-new-jersey.gtfs.zip
graph.obj

You could have more than one of these directories if you are building separate graphs for separate regions. Each one should contain one or more GTFS feeds, a PBF OpenStreetMap file, some JSON configuration files, and any output files such as graph.obj. For convenience, especially if you work with only one graph at a time, you may want to place your OTP2 JAR file in this same directory. Note that file types are detected through a case-insensitive combination of file extension and words within the file name. GTFS file names must end in .zip and contain the letters gtfs, and OSM files must end in .pbf.

It is also possible to provide a list of input files in the configuration, which will override the default behavior of scanning the base directory for input files. Scanning is overridden independently for each file type, and can point to remote cloud storage with arbitrary URIs. See the storage section for further details.

Three Scopes of Configuration

OTP is configured via three configuration JSON files which are read from the directory specified on its command line. We try to provide sensible defaults for every option, so all three of these files are optional, as are all the options within each file. Each configuration file corresponds to options that are relevant at a particular phase of OTP usage.

Options and parameters that are taken into account during the graph building process will be "baked into" the graph, and cannot be changed later in a running server. These are specified in build-config.json. Other details of OTP operation can be modified without rebuilding the graph. These run-time configuration options are found in router-config.json. Finally, otp-config.json contains simple switches that enable or disable system-wide features.

Configuration types

The OTP configuration files use the JSON file format. OTP allows comments and unquoted field names in the JSON configuration files to be more human-friendly. OTP supports all the basic JSON types: nested objects {...}, arrays [], numbers 789.0 and boolean true or false. In addition to these basic types some configuration parameters are parsed with some restrictions. In the documentation below we will refer to the following types:

Type Description Examples
boolean This is the Boolean JSON type. true or false
number This is the Number JSON type. 1, 5, 3.14
string A quoted string. This is the String JSON type. "This is a string!"
Type[] Array of of given Type. This is the Array JSON type. [ 1, 2, 3 ]
double A decimal floating point number. 64 bit. 3.14
integer A decimal integer number. 32 bit. 1, -7, 2100200300
long A decimal integer number. 64 bit. -1234567890123456789
enum A fixed set of string literals. BicycleOptimize: "QUICK", "SAFE" ...
enum-map List of key/value pairs, where the key is a enum and the value can be any given type. { RAIL: 1.2, BUS: 2.3 }
enum-set List of enum string values [ "RAIL", "TRAM" ]
locale Language[\_country[\_variant]]. A Locale object represents a specific geographical, political, or cultural region. For more information see the Java 11 Locale. en_US, nn_NO
date Local date. The format is YYYY-MM-DD (ISO-8601). 2020-09-21
date or period A local date, or a period relative to today. The local date has the format YYYY-MM-DD and the period has the format PnYnMnD or -PnYnMnD where n is a integer number. P1Y is one year from now, -P3M2D means 3 months and 2 days ago, and P1D means tomorrow.
duration A duration is a amount of time. The format is PnDTnHnMnS or nDnHnMnS where n is a integer number. The D(days), H(hours), M(minutes) and S(seconds) are not case sensitive. 3h is 3 hours, 2m means 2 minutes, and 1d5h2m3s is 1 day, 5 hours, 2 minutes and 3 seconds. Use the "PT" form with negative values like -P2dT-1s and P-2dT1s (both is minus 2 days plus one second).
regexp pattern A regular expression pattern used to match a sting. "$^" matches an empty string. "gtfs" matches "A-*gtfs*-file.zip". "$\w{3})-.*\.xml^" matches a filename with 3 alpha-numeric characters in the beginning of the filename and .xml as file extension.
uri An URI path to a resource like a file or a URL. Relative URIs are resolved relative to the OTP base path. "gs://bucket/path/a.obj" "http://foo.bar/" "file:///Users/x/local/file" "myGraph.obj" "../street/streetGraph-${otp.serialization.version.id}.obj"
linear function A linear function with one input parameter(x) used to calculate a value. Usually used to calculate a limit. For example to calculate a limit in seconds to be 1 hour plus 2 times the value(x) use: 3600 + 2.0 x, to set an absolute value(3000) use: 3000 + 0x "600 + 2.0 x"

System environment and project information substitution

OTP support injecting system environment variables and project information parameters into the configuration. A pattern like ${VAR_NAME} in a configuration file is substituted with an environment variable with name VAR_NAME. The substitution is done BEFORE the JSON is parsed, so both json keys and values is subject to substitution. This is useful if you want OTPs version number to be part of the graph-file-name, or you want to inject credentials in a cloud based deployment.

{
  storage : {
    gsCredentials: "${GCS_SERVICE_CREDENTIALS}",
    graph: "file:///var/otp/graph-${otp.serialization.version.id}.obj",
  }
}
In the example above the environment variable GCS_SERVICE_CREDENTIALS on the local machine where OTP is deployed is injected into the config. Also, the OTP serialization version id is injected.

The project information variables available are:

  • maven.version
  • maven.version.short
  • maven.version.major
  • maven.version.minor
  • maven.version.patch
  • maven.version.qualifier
  • git.branch
  • git.commit
  • git.commit.timestamp
  • graph.file.header
  • otp.serialization.version.id

Config version

All three configuration files have an optional configVersion property. The property can be used to version the configuration in a deployment pipeline. The configVersion is not used by OTP in any way, but is logged at startup and is available as part of the server-info data in the REST API. The intended usage is to be able to check which version of the configuration the graph was build with and which version the router uses. In an deployment with many OTP instances it can be useful to ask an instance about the version, instead of tracking the deployment pipline backwards to find the version used. How you inject a version into the configuration file is up to you, but you can do it in your build-pipline, at deployment time or use system environment variable substituton.

OTP Serialization version id and Graph.obj file header

OTP has a OTP Serialization Version Id maintained in the pom.xml_ file. OTP store the id in the serialized Graph.obj file header, allowing OTP the check for compatibility issues when loading the graph. The header info is available to configuration substitution:

  • ${graph.file.header} Will expand to: OpenTripPlannerGraph;0000007;
  • ${otp.serialization.version.id} Will expand to: 7

The intended usage is to be able to have a graph build pipeline which "knows" which graph that matches OTP planner instances. For example, you may build new graphs for every OTP serialization version id in use by the planning OPT instances you have deploied and plan to deploy. This way you can roll forward and backward new OTP instances without worring about building new graphs.

There are various ways to access this information. To get the Graph.obj serialization version id you can run the following bash command: - head -c 29 Graph.obj ==> OpenTripPlannerGraph;0000007; (file header) - head -c 28 Graph.obj | tail -c 7 ==> 0000007 (version id)

The Maven pom.xml, the META-INF/MANIFEST.MF, the OTP command line(--serVerId), log start-up messages and all OTP APIs can be used to get the OTP Serialization Version Id.

Include file directive

It is possible to inject the contents of another file into a configuration file. This makes it possible to keep parts of the configuration in separate files. To include the contents of a file, use ${includeFile:FILE_NAME}. The FILE_NAME must be the name of a file in the configuration directory. Relative paths are not supported.

To allow both files (the configuration file and the injected file) to be valid JSON files, a special case is supported. If the include file directive is quoted, then the quotes are removed, if the text inserted is valid JSON (starts with { and ends with }).

Variable substitution is performed on configuration file after the include file directive; Hence variable substitution is also performed on the text in the injected file.

Here is an example including variable substitution, assuming version 2.1.0 of OTP:

// build-config.json
{
  "storage" : "${includeFile:storage.json}"
} 

// storage.json
{
  "streetGraph": "street-graph-v${maven.version}.obj"
}
The result will look like this:
{
  "storage" : {
    "streetGraph": "street-graph-v2.1.0.obj"
  }
} 

System-wide Configuration

Using the file otp-config.json you can enable or disable different APIs and experimental Sandbox Extensions. By default, all supported APIs are enabled and all sandbox features are disabled. So for most OTP2 use cases it is not necessary to create this file. Features that can be toggled in this file are generally only affect the routing phase of OTP2 usage, but for consistency all such "feature flags", even those that would affect graph building, are managed in this one file. See the OTPFeature Java class for an enumeration of all available features and their default settings. Here is an example:

// otp-config.json
{
    "otpFeatures" : {
        "APIBikeRental" : false,
        "SandboxExampleAPIGraphStatistics" : true
    }
}

OTP Features

Here is a list of all features which can be toggled on/off.

Feature Description Enabled by default Sandbox
APIBikeRental Enable the bike rental endpoint yes no
APIServerInfo Enable the server info endpoint yes no
APIGraphInspectorTile Enable the inspector endpoint for graph information for inspection/debugging purpose yes no
APIUpdaterStatus Enable endpoint for graph updaters status yes no
OptimizeTransfers OTP will inspect all itineraries found and optimize where (which stops) the transfer will happen. Waiting time, priority and guaranteed transfers are taken into account. yes no
MinimumTransferTimeIsDefinitive If the minimum transfer time is a lower bound (default) or the definitive time for the transfer. Set this to true if you want to set a transfer time lower than what OTP derives from OSM data. no no
ParallelRouting Enable performing parts of the trip planning in parallel no no
TransferConstraints Enforce transfers to happen according to the transfers.txt(GTFS) and Interchanges(NeTEx). Turing this off will increase the routing performance a little. yes no
ActuatorAPI Enpoint for actuators (service health status) no yes
GoogleCloudStorage Enable Google Cloud Storage integration no yes
SandboxAPITransmodelApi Enable Entur Transmodel(NeTEx) GraphQL API no yes
SandboxAPILegacyGraphQLApi Enable (GTFS) GraphQL API no yes
SandboxAPIMapboxVectorTilesApi Enable Mapbox vector tiles API no yes
SandboxAPIParkAndRideApi Enable park-and-ride endpoint no yes
TransferAnalyzer Analyze transfers during graph build no yes
FlexRouting Enable FLEX routing no yes
FloatingBike Enable floating bike routing no yes