Skip to content

Commit dfb4860

Browse files
committed
fix: raise data-manager memory cap to 8g for DELFI-class GTFS feeds
The 4g cap was killing gtfsclean mid-run on the German DELFI feed (the national aggregator that bundles every operator in Germany — ~425 MB raw zip, ~2.2M trips). Measured peaks during cleanup are ~5.5–5.7 GB, well above the 4g ceiling. Bump to 8g, which fits DELFI with comfortable headroom and aligns with osrm's existing footprint. Smaller deployments that don't touch DELFI-class national feeds still get a more generous-than-needed limit but Docker doesn't preallocate, so the only cost is the OOM-killer ceiling moving up.
1 parent 673beb1 commit dfb4860

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

services/data-manager/service.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"HOST": "0.0.0.0",
1616
"DATA_MANAGER_AUTH_TOKEN": "${DATA_MANAGER_AUTH_TOKEN:?DATA_MANAGER_AUTH_TOKEN must be set — generate with: openssl rand -hex 32}"
1717
},
18-
"memory": "4g",
18+
"memory": "8g",
1919
"restart": "unless-stopped",
2020
"healthcheck": {
2121
"type": "http",

0 commit comments

Comments
 (0)