You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Better progress bar and decreased disk IO during dump phase (ad-freiburg#115)
* Output a "state" postfix during Phase 2 (dump) at the end of the progress bar, either N (node parsing), W (way parsing), or R (relation parsing).
* Prefix our progress bar with a timestamp
* Fix the percentage output - the max value was computed incorrectly and was, for some osm2rdf configurations, off by a factor of 2
* Update libspatialjoin, which now sets a 4MB write buffer in the GeometryCache. The default seems to be 8 KB (cat /usr/include/stdio.h | grep -i bufsiz). Reasoning: during a multithreaded phase 2, many threads are doing concurrent random reads on the disk. Previously, the GeometryCache (which is also filled by these threads) was also writing 8 KB blocks concurrently.
0 commit comments