-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make some data optional #5218
Comments
Note that with OSRM 5.20.0 using the This does not eliminate the data altogether and OSRM will still complain if it's missing, but you don't need all the RAM to get OSRM to even start. |
This issue seems to be stale. It will be closed in 30 days if no further activity occurs. |
Maybe others can comment here but this sounds like an interesting feature to keep track of. |
It'd be nice if you didn't need to load all the OSRM data if you didn't need it.
For example, if you never need turn-by-turn guidance, then it should be possible to skip the turn-by-turn data generation (save some time), and not bother loading it (save some memory). If you never need geometry (
&geometries=false
), then it shouldn't be required to load it.Steps to getting this done are:
For a first version of this, we can limit it to not loading data into
osrm-routed
/node-osrm
. As a second phase, we could possibly skip the creation of some data altogether (e.g. turn-by-turn data if it's not going to be used).The text was updated successfully, but these errors were encountered: