<div style="font-family: Helvetica; font-size: 13px;">Had the same issue using the develop branch.<br></div>
<div><div><br></div><div>-- </div><div>Grant Heffernan</div><div>+01 703.655.7396</div><div><br></div></div>
<p style="color: #A0A0A8;">On Sunday, December 29, 2013 at 7:20 AM, Grant Heffernan wrote:</p>
<blockquote type="cite" style="border-left-style:solid;border-width:1px;margin-left:0px;padding-left:10px;">
<span><div><div>
<div>
Dennis,
</div><div>/tmp is 100GB partition. I don’t see any evidence of running out of disk space there or elsewhere (the /osrm partition where I’m building everything is about 1.8TB). </div><div><br></div><div>I’m using master of git://<a href="http://github.com/DennisOSRM/Project-OSRM.git">github.com/DennisOSRM/Project-OSRM.git</a>, so I’ll try develop.</div>
<div><div><br></div><div>-- </div><div>Grant Heffernan</div></div><blockquote type="cite"><div><span><div><div><div><br></div><div><br></div><div>----------------------------------------------------------------------</div><div><br></div><div>Message: 1</div><div>Date: Sat, 28 Dec 2013 14:31:47 +0100</div><div>From: Dennis Luxen <<a href="mailto:luxen@kit.edu">luxen@kit.edu</a>></div><div>To: <a href="mailto:osrm-talk@openstreetmap.org">osrm-talk@openstreetmap.org</a></div><div>Subject: Re: [OSRM-talk] planet prepare problems</div><div>Message-ID: <<a href="mailto:B2944AAB-215A-4DA0-B404-E9BC559F5A42@kit.edu">B2944AAB-215A-4DA0-B404-E9BC559F5A42@kit.edu</a>></div><div>Content-Type: text/plain; charset=windows-1252</div><div><br></div><div>Grant,</div><div><br></div><div>Am 28.12.2013 um 00:46 schrieb Grant Heffernan <<a href="mailto:grant@mapzen.com">grant@mapzen.com</a>>:</div><div><br></div><blockquote type="cite"><div>Hi all. Was wondering if anyone has successfully run osrm-prepare on the planet recently. I?ve successfully set up north-america and other extracts, but the planet load fails every time, and in a very odd way, which is making tracking the problem down an issue. More specifically, the host it?s being run on becomes completely unresponsive (I?m running on EC2) and I?m unable to recover the instance to track additional details down. I can terminate but not reboot the instance, which makes me suspect it?s getting starved of resources and the hypervisor is unable to get it to respond. I?m presently testing on the following setup:</div></blockquote><div><br></div><div>Indeed, it looks like your system runs out of resources. Couple of questions:</div><div><br></div><div>- Are you using the latest code from develop branch? If not, do so.</div><div>- How much disk space is available under /tmp</div><div><br></div><div>[?]</div><div><br></div><blockquote type="cite"><div>[info] constructing r-tree of 923822461 elements</div></blockquote><div><br></div><div>It is sorting all the data at this stage. This is indeed quite resource intensive, but it shouldn?t die. What does df -h say?</div><div><br></div><div>?Dennis</div><div><br></div><div><br></div><div><br></div><div><br></div><div>------------------------------</div><div><br></div><div>Message: 2</div><div>Date: Sat, 28 Dec 2013 15:36:32 +0100</div><div>From: Spyou <<a href="mailto:root@spyou.org">root@spyou.org</a>></div><div>To: <a href="mailto:OSRM-talk@openstreetmap.org">OSRM-talk@openstreetmap.org</a></div><div>Subject: [OSRM-talk] profile.lua for railways</div><div>Message-ID: <<a href="mailto:52BEE1F0.1040006@spyou.org">52BEE1F0.1040006@spyou.org</a>></div><div>Content-Type: text/plain; charset=ISO-8859-1</div><div><br></div><div><br></div><div><br></div><div>Hi there,</div><div><br></div><div><br></div><div>I'm working on the server side engine for the <a href="http://raildar.fr">raildar.fr</a> project (Yes, i</div><div>know, google map sucks. client side implementation with OSM is in progress).</div><div><br></div><div>In order to place trains on the right path, we need to extract railways</div><div>from OSM. We've (very) partialy done the work based on JOSM extracts but</div><div>that's quite a long and borring work.</div><div><br></div><div>I've managed to get a osrm instance running on FreeBSD with the default</div><div>car.lua profile. I'm now trying to understand how to patch it to only</div><div>get railways routing.</div><div><br></div><div>Did anyone done this before or is there any documentation for the</div><div>profile files ?</div><div><br></div><div><br></div><div>Thanks for any help :)</div><div><br></div><div>Bruno</div><div><br></div><div><br></div><div><br></div><div>------------------------------</div><div><br></div><div>Message: 3</div><div>Date: Sat, 28 Dec 2013 19:27:10 +0100</div><div>From: Spyou <<a href="mailto:root@spyou.org">root@spyou.org</a>></div><div>To: <a href="mailto:OSRM-talk@openstreetmap.org">OSRM-talk@openstreetmap.org</a></div><div>Subject: Re: [OSRM-talk] profile.lua for railways</div><div>Message-ID: <<a href="mailto:52BF17FE.1070108@spyou.org">52BF17FE.1070108@spyou.org</a>></div><div>Content-Type: text/plain; charset=ISO-8859-1</div><div><br></div><div>Le 28/12/2013 15:36, Spyou a ?crit :</div><blockquote type="cite"><div><div><br></div><div>Did anyone done this before or is there any documentation for the</div><div>profile files ?</div></div></blockquote><div><br></div><div>I've managed to write a dummy version.</div><div><br></div><div>If anyone has idea on it, i'll be glad to hear them :)</div><div><br></div><div>function way_function (way)</div><div> local railway = way.tags:Find("railway")</div><div> if (railway=='rail') then</div><div> way.speed = 10</div><div> way.direction = Way.bidirectional</div><div> way.type = 1</div><div> return 1</div><div> end</div><div> return 0</div><div>end</div><div><br></div><div>function turn_function (angle)</div><div> if (angle < -45) or (angle > 45) then return 200 end</div><div> return 0</div><div>end</div><div><br></div><div><br></div><div><br></div><div><br></div><div>------------------------------</div><div><br></div><div>_______________________________________________</div><div>OSRM-talk mailing list</div><div><a href="mailto:OSRM-talk@openstreetmap.org">OSRM-talk@openstreetmap.org</a></div><div><a href="https://lists.openstreetmap.org/listinfo/osrm-talk">https://lists.openstreetmap.org/listinfo/osrm-talk</a></div><div><br></div><div><br></div><div>End of OSRM-talk Digest, Vol 12, Issue 7</div><div>****************************************</div></div></div></span>
</div></blockquote><div>
<br>
</div>
</div></div></span>
</blockquote>
<div>
<br>
</div>