Questions on new nigiri core deployment #407
-
Hi @felixguendling, I read that with the 0.9+ versions there is a new core engine that requires way less memory for graph building and the running application. That is really great news. Since in the documentation there is not very much information about what modules are already supporting nigiri. There is this blog post about 0.11 which says:
where I'm not 100% sure what "almost finished" means :) I have seen this image: https://github.com/motis-project/motis/wiki/Modules#modules-compatible-to-the-new-core - but it is not 100% clear to me which of the ones are considered done & if the docs are up to date. We are trying to upgrade from 0.8 to 0.11 in order to reduce memory footprint and potentially also speed up graph building process (not sure if I understand that correctly). With the following
With the input data collected as follows:
When I run it like this, I get the following error during graph building:
When I on the other hand try a stipped down version of the config, at least the server starts:
Which leads me to conclude that 1. it has something to do with the Perhaps you can answer a couple of those questions. I know there are multiple, but it would be of great help :) Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Additionally here is the log output for the nigiri module: |
Beta Was this translation helpful? Give feedback.
-
This week I updated the "Installation & Setup" instructions to the new core: The Regarding Depending on your use case, it might make sense to turn on To speedup preprocessing times for the To speedup restart times, I sometimes use I hope this helps. Feel free to ask more questions or tell me which questions I missed :) |
Beta Was this translation helpful? Give feedback.
This week I updated the "Installation & Setup" instructions to the new core:
https://github.com/motis-project/motis/wiki/Installation-and-Setup
The
nigiri
module now takes over the functionality from the following modules:guesser
,lookup
,railviz
,routing
,tripbased
,csa
,raptor
(so those are now deprecated and won't see any further development except for maybe small bug fixes). Thepath
module functionality (nice lines on the map instead of direct lines) is currently not available withnigiri
- the idea is to useshapes.txt
in the future (but there are no concrete projects planned yet to do this). That means, you probably also don't need the OSRMbus
profile (which was only used by thep…