mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Default NodeJS max heap limit to 250M. Override by setting NODE_OPTIONS - Windows support
Fixes #5598
This commit is contained in:
parent
456d994535
commit
1fde3f4c73
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue