-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs] Update default memory limit #104535
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Upgrading to Node 12+ removed the 1.4gb heap allocation limit, and set it to scale with total available memory. > [1] Properly configure default heap limits This update will configure the JavaScript heap size based on available memory instead of using defaults that were set by V8 for use with browsers. In previous releases, unless configured, V8 defaulted to limiting the max heap size to 700 MB or 1400MB on 32 and 64-bit platforms respectively. Configuring the heap size based on available memory ensures that Node.js does not try to use more memory than is available and terminating when its memory is exhausted. [1] nodejs.medium.com/introducing-node-js-12-76c41a1b3f3f This updates our documentation to reflect this change. Closes elastic#104451
Pinging @elastic/kibana-docs (Team:Docs) |
Pinging @elastic/kibana-operations (Team:Operations) |
gchaps
reviewed
Jul 7, 2021
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
gchaps
approved these changes
Jul 7, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
joshdover
approved these changes
Jul 7, 2021
kibanamachine
pushed a commit
to kibanamachine/kibana
that referenced
this pull request
Jul 7, 2021
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
kibanamachine
pushed a commit
to kibanamachine/kibana
that referenced
this pull request
Jul 7, 2021
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
kibanamachine
pushed a commit
to kibanamachine/kibana
that referenced
this pull request
Jul 7, 2021
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
kibanamachine
pushed a commit
to kibanamachine/kibana
that referenced
this pull request
Jul 7, 2021
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
kibanamachine
added a commit
that referenced
this pull request
Jul 7, 2021
kibanamachine
added a commit
that referenced
this pull request
Jul 7, 2021
kibanamachine
added a commit
that referenced
this pull request
Jul 7, 2021
kibanamachine
added a commit
that referenced
this pull request
Jul 7, 2021
Working on the 7.11 backport now... |
joshdover
pushed a commit
to joshdover/kibana
that referenced
this pull request
Jul 7, 2021
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com> # Conflicts: # docs/user/production-considerations/production.asciidoc
joshdover
added a commit
that referenced
this pull request
Jul 7, 2021
darnautov
pushed a commit
to darnautov/kibana
that referenced
this pull request
Jul 7, 2021
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
auto-backport
Deprecated - use backport:version if exact versions are needed
release_note:skip
Skip the PR/issue when compiling release notes
Team:Docs
Team:Operations
Team label for Operations Team
v7.11.3
v7.12.2
v7.13.3
v7.14.0
v7.15.0
v8.0.0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Upgrading to Node 12+ removed the 1.4gb heap allocation limit,
and set it to scale with total available memory.
[1] nodejs.medium.com/introducing-node-js-12-76c41a1b3f3f
This updates our documentation to reflect this change.
Closes #104451