docs: update quickstart.mdx (#1283)
Browse files### What problem does this PR solve?
minor fix
### Type of change
- [x] Documentation Update
- docs/quickstart.mdx +1 -1
docs/quickstart.mdx
CHANGED
@@ -32,7 +32,7 @@ This section provides instructions on setting up the RAGFlow server on Linux. If
|
|
32 |
<details>
|
33 |
<summary>1. Ensure <code>vm.max_map_count</code> ≥ 262144:</summary>
|
34 |
|
35 |
-
`vm.max_map_count`. This value sets the
|
36 |
|
37 |
RAGFlow v0.7.0 uses Elasticsearch for multiple recall. Setting the value of `vm.max_map_count` correctly is crucial to the proper functioning of the Elasticsearch component.
|
38 |
|
|
|
32 |
<details>
|
33 |
<summary>1. Ensure <code>vm.max_map_count</code> ≥ 262144:</summary>
|
34 |
|
35 |
+
`vm.max_map_count`. This value sets the maximum number of memory map areas a process may have. Its default value is 65530. While most applications require fewer than a thousand maps, reducing this value can result in abmornal behaviors, and the system will throw out-of-memory errors when a process reaches the limitation.
|
36 |
|
37 |
RAGFlow v0.7.0 uses Elasticsearch for multiple recall. Setting the value of `vm.max_map_count` correctly is crucial to the proper functioning of the Elasticsearch component.
|
38 |
|