Add Memgraph on Arm install guide#3312
Open
Sabika-Tasneem wants to merge 2 commits into
Open
Conversation
mattkjames7
reviewed
May 20, 2026
|
|
||
| ## How do I increase the memory map area limit? | ||
|
|
||
| Memgraph allocates many small memory mappings, and on larger graphs the default Linux limit (`vm.max_map_count = 65530`) can be hit. This typically surfaces as a hung transaction, `munmap` errors, or `bad_alloc` crashes. Memgraph recommends roughly one memory map area per 128 KB of system RAM. The full table and background are in the [system configuration docs](https://memgraph.com/docs/database-management/system-configuration#increasing-memory-map-areas). |
There was a problem hiding this comment.
Our guidance on this actually changed recently to 1 per 64 kb
mattkjames7
reviewed
May 20, 2026
Comment on lines
+195
to
+205
| For an 8–32 GB host, `262144` is the recommended starting value. Set it for the current session: | ||
|
|
||
| ```bash { target="ubuntu:latest" } | ||
| sudo sysctl -w vm.max_map_count=262144 | ||
| ``` | ||
|
|
||
| To persist the change across reboots, add it to `/etc/sysctl.conf` or a drop-in under `/etc/sysctl.d/`, then reload: | ||
|
|
||
| ```bash { target="ubuntu:latest" } | ||
| echo 'vm.max_map_count=262144' | sudo tee -a /etc/sysctl.conf | ||
| sudo sysctl -p |
There was a problem hiding this comment.
The number used by default is now 524288
Contributor
|
Let me know when this PR ready for technical and editorial review and we will move to the publishing phase. |
Author
@jasonrandrews The PR is final and ready for technical and editorial review. Thank you! |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Adds an install guide for running Memgraph on Arm.
The guide covers:
The guide uses the latest Memgraph 3.10.1.