From 6966182830fdf4c7a835053f9e4d9d92cd54c6be Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Fri, 2 Aug 2019 10:09:04 -0400 Subject: [PATCH] feat(nodejs): Increase Node.js memory limit This is needed as the amount of data in WOF has grown substantially. Connects https://github.com/pelias/pelias/issues/797 --- bin/start | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/start b/bin/start index aa239935..b81836b4 100755 --- a/bin/start +++ b/bin/start @@ -1,3 +1,3 @@ #!/bin/bash -exec node --max_old_space_size=6000 import.js +exec node --max_old_space_size=8000 import.js