Skip to content
Snippets Groups Projects
Verified Commit 4ab80f4d authored by Achilleas Pipinellis's avatar Achilleas Pipinellis
Browse files

Port elasticsearch.md changes to EE

parent 0702d4b6
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -340,10 +340,30 @@ curl --request PUT localhost:9200/gitlab-production/_settings --data '{
} }'
```
 
A force merge should be called after enabling the refreshing above:
A force merge should be called after enabling the refreshing above.
For Elasticsearch 6.x, before proceeding with the force merge, the index should be in read-only mode:
```bash
curl --request PUT localhost:9200/gitlab-production/_settings --data '{
"settings": {
"index.blocks.write": true
} }'
```
Then, initiate the force merge:
 
```bash
curl --request POST 'http://localhost:9200/_forcemerge?max_num_segments=5'
curl --request POST 'http://localhost:9200/gitlab-production/_forcemerge?max_num_segments=5'
```
After this, if your index is in read-only, switch back to read-write:
```bash
curl --request PUT localhost:9200/gitlab-production/_settings --data '{
"settings": {
"index.blocks.write": false
} }'
```
 
Enable Elasticsearch search in **Admin > Settings > Integrations**. That's it. Enjoy it!
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment