Default NodeJS max heap limit to 250M. Override by setting NODE_OPTIONS - Windows support

Fixes #5598
This commit is contained in:
David Laing 2015-11-24 22:53:33 +00:00 committed by Joe Fleming
parent 456d994535
commit 1fde3f4c73

View file

@ -17,8 +17,12 @@ If Not Exist "%NODE%" (
)
)
if "%NODE_OPTIONS%" == "" (
set NODE_OPTIONS=--max-old-space-size=250
)
TITLE Kibana Server
"%NODE%" "%DIR%\src\cli" %*
"%NODE%" %NODE_OPTIONS% "%DIR%\src\cli" %*
:finally