debian-mirror-gitlab/doc/integration/elasticsearch.md

653 lines
37 KiB
Markdown
Raw Normal View History

2019-09-30 21:07:59 +05:30
# Elasticsearch integration **(STARTER ONLY)**
2019-07-31 22:56:46 +05:30
2020-04-22 19:07:51 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/109 "Elasticsearch Merge Request") in GitLab [Starter](https://about.gitlab.com/pricing/) 8.4.
> - Support for [Amazon Elasticsearch](https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-gsg.html) was [introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/1305) in GitLab [Starter](https://about.gitlab.com/pricing/) 9.0.
2019-07-31 22:56:46 +05:30
This document describes how to set up Elasticsearch with GitLab. Once enabled,
you'll have the benefit of fast search response times and the advantage of two
special searches:
2019-09-04 21:01:54 +05:30
- [Advanced Global Search](../user/search/advanced_global_search.md)
- [Advanced Syntax Search](../user/search/advanced_search_syntax.md)
2019-07-31 22:56:46 +05:30
## Version Requirements
2019-09-30 21:07:59 +05:30
2019-07-31 22:56:46 +05:30
<!-- Please remember to update ee/lib/system_check/app/elasticsearch_check.rb if this changes -->
| GitLab version | Elasticsearch version |
| -------------- | --------------------- |
2020-03-13 15:44:24 +05:30
| GitLab Enterprise Edition 8.4 - 8.17 | Elasticsearch 2.4 with [Delete By Query Plugin](https://www.elastic.co/guide/en/elasticsearch/plugins/2.4/plugins-delete-by-query.html) installed |
2019-07-31 22:56:46 +05:30
| GitLab Enterprise Edition 9.0 - 11.4 | Elasticsearch 5.1 - 5.5 |
2020-03-13 15:44:24 +05:30
| GitLab Enterprise Edition 11.5 - 12.6 | Elasticsearch 5.6 - 6.x |
| GitLab Enterprise Edition 12.7+ | Elasticsearch 6.x - 7.x |
2019-07-31 22:56:46 +05:30
## Installing Elasticsearch
Elasticsearch is _not_ included in the Omnibus packages. You will have to
2020-03-13 15:44:24 +05:30
[install it yourself](https://www.elastic.co/guide/en/elasticsearch/reference/6.8/install-elasticsearch.html "Elasticsearch 6.8 installation documentation")
2019-10-12 21:52:04 +05:30
whether you are using the Omnibus package or installed GitLab from source.
Providing detailed information on installing Elasticsearch is out of the scope
of this document.
NOTE: **Note:**
Elasticsearch should be installed on a separate server, whether you install
2020-04-22 19:07:51 +05:30
it yourself or use a cloud hosted offering like Elastic's [Elasticsearch Service](https://www.elastic.co/elasticsearch/service) (available on AWS, GCP, or Azure) or the
[Amazon Elasticsearch](https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-gsg.html) service. Running Elasticsearch on the same server as GitLab is not recommended
2020-03-13 15:44:24 +05:30
and will likely cause a degradation in GitLab instance performance.
NOTE: **Note:**
**For a single node Elasticsearch cluster the functional cluster health status will be yellow** (will never be green) because the primary shard is allocated but replicas can not be as there is no other node to which Elasticsearch can assign a replica.
2019-07-31 22:56:46 +05:30
Once the data is added to the database or repository and [Elasticsearch is
2020-03-13 15:44:24 +05:30
enabled in the Admin Area](#enabling-elasticsearch) the search index will be
2019-10-12 21:52:04 +05:30
updated automatically.
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
## Elasticsearch repository indexer
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
For indexing Git repository data, GitLab uses an [indexer written in Go](https://gitlab.com/gitlab-org/gitlab-elasticsearch-indexer).
2019-07-31 22:56:46 +05:30
2020-04-08 14:13:33 +05:30
The way you install the Go indexer depends on your version of GitLab:
2019-09-30 21:07:59 +05:30
2020-05-24 23:13:21 +05:30
- For Omnibus GitLab 11.8 and above, see [Omnibus GitLab](#omnibus-gitlab).
- For installations from source or older versions of Omnibus GitLab, install the indexer [From Source](#from-source).
2019-07-31 22:56:46 +05:30
2020-05-24 23:13:21 +05:30
### Omnibus GitLab
2020-04-08 14:13:33 +05:30
2020-05-24 23:13:21 +05:30
Since GitLab 11.8 the Go indexer is included in Omnibus GitLab.
2020-06-23 00:09:42 +05:30
The former Ruby-based indexer was removed in [GitLab 12.3](https://gitlab.com/gitlab-org/gitlab/-/issues/6481).
2020-04-08 14:13:33 +05:30
### From source
2019-07-31 22:56:46 +05:30
First, we need to install some dependencies, then we'll build and install
the indexer itself.
This project relies on [ICU](http://site.icu-project.org/) for text encoding,
therefore we need to ensure the development packages for your platform are
installed before running `make`.
2020-04-08 14:13:33 +05:30
#### Debian / Ubuntu
2019-07-31 22:56:46 +05:30
To install on Debian or Ubuntu, run:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
sudo apt install libicu-dev
```
2020-04-08 14:13:33 +05:30
#### CentOS / RHEL
2019-07-31 22:56:46 +05:30
To install on CentOS or RHEL, run:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
sudo yum install libicu-devel
```
##### Mac OSX
To install on macOS, run:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
brew install icu4c
export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig:$PKG_CONFIG_PATH"
```
2020-04-08 14:13:33 +05:30
### Building and installing
2019-07-31 22:56:46 +05:30
To build and install the indexer, run:
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
indexer_path=/home/git/gitlab-elasticsearch-indexer
# Run the installation task for gitlab-elasticsearch-indexer:
sudo -u git -H bundle exec rake gitlab:indexer:install[$indexer_path] RAILS_ENV=production
cd $indexer_path && sudo make install
2019-07-31 22:56:46 +05:30
```
The `gitlab-elasticsearch-indexer` will be installed to `/usr/local/bin`.
You can change the installation path with the `PREFIX` env variable.
Please remember to pass the `-E` flag to `sudo` if you do so.
Example:
2020-03-13 15:44:24 +05:30
```shell
2019-07-31 22:56:46 +05:30
PREFIX=/usr sudo -E make install
```
2019-12-21 20:55:43 +05:30
Once installed, enable it under your instance's Elasticsearch settings explained [below](#enabling-elasticsearch).
2019-07-31 22:56:46 +05:30
## System Requirements
Elasticsearch requires additional resources in excess of those documented in the
[GitLab system requirements](../install/requirements.md). These will vary by
installation size, but you should ensure **at least** an additional **8 GiB of RAM**
for each Elasticsearch node, per the [official guidelines](https://www.elastic.co/guide/en/elasticsearch/guide/current/hardware.html).
Keep in mind, this is the **minimum requirements** as per Elasticsearch. For
production instances, they recommend considerably more resources.
Storage requirements also vary based on the installation side, but as a rule of
thumb, you should allocate the total size of your production database, **plus**
2019-12-04 20:38:33 +05:30
two-thirds of the total size of your Git repositories. Efforts to reduce this
total are being tracked in [epic &153](https://gitlab.com/groups/gitlab-org/-/epics/153).
2019-07-31 22:56:46 +05:30
## Enabling Elasticsearch
2019-12-04 20:38:33 +05:30
In order to enable Elasticsearch, you need to have admin access. Navigate to
**Admin Area** (wrench icon), then **Settings > Integrations** and expand the **Elasticsearch** section.
Click **Save changes** for the changes to take effect.
2019-07-31 22:56:46 +05:30
The following Elasticsearch settings are available:
2019-12-21 20:55:43 +05:30
| Parameter | Description |
| ----------------------------------------------------- | ----------- |
2020-04-22 19:07:51 +05:30
| `Elasticsearch indexing` | Enables/disables Elasticsearch indexing. You may want to enable indexing but disable search in order to give the index time to be fully completed, for example. Also, keep in mind that this option doesn't have any impact on existing data, this only enables/disables background indexer which tracks data changes. So by enabling this you will not get your existing data indexed, use special Rake task for that as explained in [Adding GitLab's data to the Elasticsearch index](#adding-gitlabs-data-to-the-elasticsearch-index). |
2020-06-23 00:09:42 +05:30
| `Elasticsearch pause indexing` | Enables/disables temporary indexing pause. This is useful for cluster migration/reindexing. All changes are still tracked, but they are not committed to the Elasticsearch index until unpaused. |
2019-12-21 20:55:43 +05:30
| `Search with Elasticsearch enabled` | Enables/disables using Elasticsearch in search. |
| `URL` | The URL to use for connecting to Elasticsearch. Use a comma-separated list to support clustering (e.g., `http://host1, https://host2:9200`). If your Elasticsearch instance is password protected, pass the `username:password` in the URL (e.g., `http://<username>:<password>@<elastic_host>:9200/`). |
| `Number of Elasticsearch shards` | Elasticsearch indexes are split into multiple shards for performance reasons. In general, larger indexes need to have more shards. Changes to this value do not take effect until the index is recreated. You can read more about tradeoffs in the [Elasticsearch documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-create-index.html#create-index-settings) |
| `Number of Elasticsearch replicas` | Each Elasticsearch shard can have a number of replicas. These are a complete copy of the shard, and can provide increased query performance or resilience against hardware failure. Increasing this value will greatly increase total disk space required by the index. |
| `Limit namespaces and projects that can be indexed` | Enabling this will allow you to select namespaces and projects to index. All other namespaces and projects will use database search instead. Please note that if you enable this option but do not select any namespaces or projects, none will be indexed. [Read more below](#limiting-namespaces-and-projects).
| `Using AWS hosted Elasticsearch with IAM credentials` | Sign your Elasticsearch requests using [AWS IAM authorization](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html) or [AWS EC2 Instance Profile Credentials](https://docs.aws.amazon.com/codedeploy/latest/userguide/getting-started-create-iam-instance-profile.html#getting-started-create-iam-instance-profile-cli). The policies must be configured to allow `es:*` actions. |
| `AWS Region` | The AWS region your Elasticsearch service is located in. |
| `AWS Access Key` | The AWS access key. |
| `AWS Secret Access Key` | The AWS secret access key. |
2020-03-13 15:44:24 +05:30
| `Maximum field length` | See [the explanation in instance limits.](../administration/instance_limits.md#maximum-field-length). |
2020-05-24 23:13:21 +05:30
| `Maximum bulk request size (MiB)` | The Maximum Bulk Request size is used by GitLab's Golang-based indexer processes and indicates how much data it ought to collect (and store in memory) in a given indexing process before submitting the payload to Elasticsearchs Bulk API. This setting works in tandem with the Bulk request concurrency setting (see below) and needs to accomodate the resource constraints of both the Elasticsearch host(s) and the host(s) running GitLab's Golang-based indexer either from the `gitlab-rake` command or the Sidekiq tasks. |
| `Bulk request concurrency` | The Bulk request concurrency indicates how many of GitLab's Golang-based indexer processes (or threads) can run in parallel to collect data to subsequently submit to Elasticsearchs Bulk API. This increases indexing performance, but fills the Elasticsearch bulk requests queue faster. This setting works in tandem with the Maximum bulk request size setting (see above) and needs to accomodate the resource constraints of both the Elasticsearch host(s) and the host(s) running GitLab's Golang-based indexer either from the `gitlab-rake` command or the Sidekiq tasks. |
2019-07-31 22:56:46 +05:30
### Limiting namespaces and projects
If you select `Limit namespaces and projects that can be indexed`, more options will become available
![limit namespaces and projects options](img/limit_namespaces_projects_options.png)
You can select namespaces and projects to index exclusively. Please note that if the namespace is a group it will include
any sub-groups and projects belonging to those sub-groups to be indexed as well.
2020-01-01 13:55:28 +05:30
Elasticsearch only provides cross-group code/commit search (global) if all name-spaces are indexed. In this particular scenario where only a subset of namespaces are indexed, a global search will not provide a code or commit scope. This will be possible only in the scope of an indexed namespace. Currently there is no way to code/commit search in multiple indexed namespaces (when only a subset of namespaces has been indexed). For example if two groups are indexed, there is no way to run a single code search on both. You can only run a code search on the first group and then on the second.
2019-07-31 22:56:46 +05:30
You can filter the selection dropdown by writing part of the namespace or project name you're interested in.
2020-01-01 13:55:28 +05:30
2019-07-31 22:56:46 +05:30
![limit namespace filter](img/limit_namespace_filter.png)
NOTE: **Note**:
If no namespaces or projects are selected, no Elasticsearch indexing will take place.
CAUTION: **Warning**:
If you have already indexed your instance, you will have to regenerate the index in order to delete all existing data
2020-05-24 23:13:21 +05:30
for filtering to work correctly. To do this run the Rake tasks `gitlab:elastic:recreate_index` and
2019-09-30 21:07:59 +05:30
`gitlab:elastic:clear_index_status`. Afterwards, removing a namespace or a project from the list will delete the data
2019-07-31 22:56:46 +05:30
from the Elasticsearch index as expected.
## Disabling Elasticsearch
To disable the Elasticsearch integration:
2019-12-04 20:38:33 +05:30
1. Navigate to the **Admin Area** (wrench icon), then **Settings > Integrations**.
1. Expand the **Elasticsearch** section and uncheck **Elasticsearch indexing**
and **Search with Elasticsearch enabled**.
1. Click **Save changes** for the changes to take effect.
1. (Optional) Delete the existing index by running one of these commands:
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:delete_index
# Installations from source
bundle exec rake gitlab:elastic:delete_index RAILS_ENV=production
```
2019-07-31 22:56:46 +05:30
## Adding GitLab's data to the Elasticsearch index
2019-12-04 20:38:33 +05:30
While Elasticsearch indexing is enabled, new changes in your GitLab instance will be automatically indexed as they happen.
To backfill existing data, you can use one of the methods below to index it in background jobs.
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
### Indexing through the administration UI
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/15390) in [GitLab Starter](https://about.gitlab.com/pricing/) 12.3.
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
To index via the Admin Area:
2019-12-04 20:38:33 +05:30
2020-03-13 15:44:24 +05:30
1. [Configure your Elasticsearch host and port](#enabling-elasticsearch).
2019-12-04 20:38:33 +05:30
1. Create empty indexes using one of the following commands:
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:create_empty_index
# Installations from source
bundle exec rake gitlab:elastic:create_empty_index RAILS_ENV=production
```
2020-03-13 15:44:24 +05:30
1. [Enable **Elasticsearch indexing**](#enabling-elasticsearch).
1. Click **Index all projects** in **Admin Area > Settings > Integrations > Elasticsearch**.
2019-12-04 20:38:33 +05:30
1. Click **Check progress** in the confirmation message to see the status of the background jobs.
1. Personal snippets need to be indexed manually by running one of these commands:
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:index_snippets
# Installations from source
bundle exec rake gitlab:elastic:index_snippets RAILS_ENV=production
```
1. After the indexing has completed, enable [**Search with Elasticsearch**](#enabling-elasticsearch).
### Indexing through Rake tasks
2020-05-24 23:13:21 +05:30
Indexing can be performed using Rake tasks.
2019-12-04 20:38:33 +05:30
#### Indexing small instances
CAUTION: **Warning**:
This will delete your existing indexes.
If the database size is less than 500 MiB, and the size of all hosted repos is less than 5 GiB:
1. [Enable **Elasticsearch indexing** and configure your host and port](#enabling-elasticsearch).
1. Index your data using one of the following commands:
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:index
# Installations from source
bundle exec rake gitlab:elastic:index RAILS_ENV=production
```
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
1. After the indexing has completed, enable [**Search with Elasticsearch**](#enabling-elasticsearch).
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
#### Indexing large instances
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
CAUTION: **Warning**:
Performing asynchronous indexing will generate a lot of Sidekiq jobs.
2020-04-08 14:13:33 +05:30
Make sure to prepare for this task by having a [Scalable and Highly Available Setup](README.md)
2019-12-04 20:38:33 +05:30
or creating [extra Sidekiq processes](../administration/operations/extra_sidekiq_processes.md)
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
1. [Configure your Elasticsearch host and port](#enabling-elasticsearch).
2019-12-04 20:38:33 +05:30
1. Create empty indexes using one of the following commands:
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:create_empty_index
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
# Installations from source
bundle exec rake gitlab:elastic:create_empty_index RAILS_ENV=production
```
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
1. [Enable **Elasticsearch indexing**](#enabling-elasticsearch).
2019-12-04 20:38:33 +05:30
1. Indexing large Git repositories can take a while. To speed up the process, you
can temporarily disable auto-refreshing and replicating. In our experience, you can expect a 20%
decrease in indexing time. We'll enable them when indexing is done. This step is optional!
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-01-01 13:55:28 +05:30
curl --request PUT localhost:9200/gitlab-production/_settings --header 'Content-Type: application/json' --data '{
2019-12-04 20:38:33 +05:30
"index" : {
"refresh_interval" : "-1",
"number_of_replicas" : 0
} }'
```
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
1. Index projects and their associated data:
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:index_projects
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
# Installations from source
bundle exec rake gitlab:elastic:index_projects RAILS_ENV=production
```
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
This enqueues a Sidekiq job for each project that needs to be indexed.
You can view the jobs in **Admin Area > Monitoring > Background Jobs > Queues Tab**
2020-04-22 19:07:51 +05:30
and click `elastic_indexer`, or you can query indexing status using a Rake task:
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:index_projects_status
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
# Installations from source
bundle exec rake gitlab:elastic:index_projects_status RAILS_ENV=production
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
Indexing is 65.55% complete (6555/10000 projects)
```
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
If you want to limit the index to a range of projects you can provide the
`ID_FROM` and `ID_TO` parameters:
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:index_projects ID_FROM=1001 ID_TO=2000
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
# Installations from source
bundle exec rake gitlab:elastic:index_projects ID_FROM=1001 ID_TO=2000 RAILS_ENV=production
```
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
Where `ID_FROM` and `ID_TO` are project IDs. Both parameters are optional.
The above example will index all projects from ID `1001` up to (and including) ID `2000`.
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
TIP: **Troubleshooting:**
Sometimes the project indexing jobs queued by `gitlab:elastic:index_projects`
can get interrupted. This may happen for many reasons, but it's always safe
to run the indexing task again. It will skip repositories that have
already been indexed.
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
As the indexer stores the last commit SHA of every indexed repository in the
database, you can run the indexer with the special parameter `UPDATE_INDEX` and
it will check every project repository again to make sure that every commit in
a repository is indexed, which can be useful in case if your index is outdated:
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:index_projects UPDATE_INDEX=true ID_TO=1000
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
# Installations from source
bundle exec rake gitlab:elastic:index_projects UPDATE_INDEX=true ID_TO=1000 RAILS_ENV=production
```
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
You can also use the `gitlab:elastic:clear_index_status` Rake task to force the
indexer to "forget" all progress, so it will retry the indexing process from the
start.
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
1. Personal snippets are not associated with a project and need to be indexed separately
by running one of these commands:
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-12-04 20:38:33 +05:30
# Omnibus installations
sudo gitlab-rake gitlab:elastic:index_snippets
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
# Installations from source
bundle exec rake gitlab:elastic:index_snippets RAILS_ENV=production
```
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
1. Enable replication and refreshing again after indexing (only if you previously disabled it):
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-04-22 19:07:51 +05:30
curl --request PUT localhost:9200/gitlab-production/_settings --header 'Content-Type: application/json' --data '{
2019-12-04 20:38:33 +05:30
"index" : {
"number_of_replicas" : 1,
"refresh_interval" : "1s"
} }'
```
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
A force merge should be called after enabling the refreshing above.
2019-09-04 21:01:54 +05:30
2019-12-04 20:38:33 +05:30
For Elasticsearch 6.x, the index should be in read-only mode before proceeding with the force merge:
2019-09-04 21:01:54 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-04-22 19:07:51 +05:30
curl --request PUT localhost:9200/gitlab-production/_settings --header 'Content-Type: application/json' --data '{
2019-12-04 20:38:33 +05:30
"settings": {
"index.blocks.write": true
} }'
```
2019-09-04 21:01:54 +05:30
2019-12-04 20:38:33 +05:30
Then, initiate the force merge:
2019-09-04 21:01:54 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-01-01 13:55:28 +05:30
curl --request POST 'localhost:9200/gitlab-production/_forcemerge?max_num_segments=5'
2019-12-04 20:38:33 +05:30
```
2019-09-04 21:01:54 +05:30
2019-12-04 20:38:33 +05:30
After this, if your index is in read-only mode, switch back to read-write:
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-04-22 19:07:51 +05:30
curl --request PUT localhost:9200/gitlab-production/_settings --header 'Content-Type: application/json' --data '{
2019-12-04 20:38:33 +05:30
"settings": {
"index.blocks.write": false
} }'
```
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
1. After the indexing has completed, enable [**Search with Elasticsearch**](#enabling-elasticsearch).
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
### Indexing limitations
2019-10-12 21:52:04 +05:30
2019-12-04 20:38:33 +05:30
For repository and snippet files, GitLab will only index up to 1 MiB of content, in order to avoid indexing timeouts.
2019-10-12 21:52:04 +05:30
2020-05-24 23:13:21 +05:30
## GitLab Elasticsearch Rake tasks
Rake tasks are available to:
- [Build and install](#building-and-installing) the indexer.
- Delete indexes when [disabling Elasticsearch](#disabling-elasticsearch).
- [Add GitLab data](#adding-gitlabs-data-to-the-elasticsearch-index) to an index.
The following are some available Rake tasks:
| Task | Description |
|:--------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [`sudo gitlab-rake gitlab:elastic:index`](https://gitlab.com/gitlab-org/gitlab/blob/master/ee/lib/tasks/gitlab/elastic.rake) | Wrapper task for `gitlab:elastic:create_empty_index`, `gitlab:elastic:clear_index_status`, `gitlab:elastic:index_projects`, and `gitlab:elastic:index_snippets`. |
| [`sudo gitlab-rake gitlab:elastic:index_projects`](https://gitlab.com/gitlab-org/gitlab/blob/master/ee/lib/tasks/gitlab/elastic.rake) | Iterates over all projects and queues Sidekiq jobs to index them in the background. |
| [`sudo gitlab-rake gitlab:elastic:index_projects_status`](https://gitlab.com/gitlab-org/gitlab/blob/master/ee/lib/tasks/gitlab/elastic.rake) | Determines the overall status of the indexing. It is done by counting the total number of indexed projects, dividing by a count of the total number of projects, then multiplying by 100. |
| [`sudo gitlab-rake gitlab:elastic:clear_index_status`](https://gitlab.com/gitlab-org/gitlab/blob/master/ee/lib/tasks/gitlab/elastic.rake) | Deletes all instances of IndexStatus for all projects. |
2020-06-23 00:09:42 +05:30
| [`sudo gitlab-rake gitlab:elastic:create_empty_index[<TARGET_NAME>]`](https://gitlab.com/gitlab-org/gitlab/blob/master/ee/lib/tasks/gitlab/elastic.rake) | Generates an empty index and assigns an alias for it on the Elasticsearch side only if it doesn't already exist. |
| [`sudo gitlab-rake gitlab:elastic:delete_index[<TARGET_NAME>]`](https://gitlab.com/gitlab-org/gitlab/blob/master/ee/lib/tasks/gitlab/elastic.rake) | Removes the GitLab index and alias (if exists) on the Elasticsearch instance. |
| [`sudo gitlab-rake gitlab:elastic:recreate_index[<TARGET_NAME>]`](https://gitlab.com/gitlab-org/gitlab/blob/master/ee/lib/tasks/gitlab/elastic.rake) | Wrapper task for `gitlab:elastic:delete_index[<TARGET_NAME>]` and `gitlab:elastic:create_empty_index[<TARGET_NAME>]`. |
2020-05-24 23:13:21 +05:30
| [`sudo gitlab-rake gitlab:elastic:index_snippets`](https://gitlab.com/gitlab-org/gitlab/blob/master/ee/lib/tasks/gitlab/elastic.rake) | Performs an Elasticsearch import that indexes the snippets data. |
| [`sudo gitlab-rake gitlab:elastic:projects_not_indexed`](https://gitlab.com/gitlab-org/gitlab/blob/master/ee/lib/tasks/gitlab/elastic.rake) | Displays which projects are not indexed. |
NOTE: **Note:**
2020-06-23 00:09:42 +05:30
The `TARGET_NAME` parameter is optional and will use the default index/alias name from the current `RAILS_ENV` if not set.
2020-05-24 23:13:21 +05:30
### Environment variables
2019-07-31 22:56:46 +05:30
2020-04-22 19:07:51 +05:30
In addition to the Rake tasks, there are some environment variables that can be used to modify the process:
2019-07-31 22:56:46 +05:30
| Environment Variable | Data Type | What it does |
| -------------------- |:---------:| ---------------------------------------------------------------------------- |
| `UPDATE_INDEX` | Boolean | Tells the indexer to overwrite any existing index data (true/false). |
| `ID_TO` | Integer | Tells the indexer to only index projects less than or equal to the value. |
| `ID_FROM` | Integer | Tells the indexer to only index projects greater than or equal to the value. |
### Indexing a specific project
Because the `ID_TO` and `ID_FROM` environment variables use the `or equal to` comparison, you can index only one project by using both these variables with the same project ID number:
2020-03-13 15:44:24 +05:30
```shell
2019-09-04 21:01:54 +05:30
root@git:~# sudo gitlab-rake gitlab:elastic:index_projects ID_TO=5 ID_FROM=5
2019-07-31 22:56:46 +05:30
Indexing project repositories...I, [2019-03-04T21:27:03.083410 #3384] INFO -- : Indexing GitLab User / test (ID=33)...
I, [2019-03-04T21:27:05.215266 #3384] INFO -- : Indexing GitLab User / test (ID=33) is done!
```
2020-05-24 23:13:21 +05:30
## Elasticsearch index scopes
2019-07-31 22:56:46 +05:30
When performing a search, the GitLab index will use the following scopes:
| Scope Name | What it searches |
| ---------------- | ---------------------- |
| `commits` | Commit data |
| `projects` | Project data (default) |
| `blobs` | Code |
| `issues` | Issue data |
| `merge_requests` | Merge Request data |
| `milestones` | Milestone data |
| `notes` | Note data |
| `snippets` | Snippet data |
| `wiki_blobs` | Wiki contents |
## Tuning
### Deleted documents
2020-03-13 15:44:24 +05:30
Whenever a change or deletion is made to an indexed GitLab object (a merge request description is changed, a file is deleted from the master branch in a repository, a project is deleted, etc), a document in the index is deleted. However, since these are "soft" deletes, the overall number of "deleted documents", and therefore wasted space, increases. Elasticsearch does intelligent merging of segments in order to remove these deleted documents. However, depending on the amount and type of activity in your GitLab installation, it's possible to see as much as 50% wasted space in the index.
2019-07-31 22:56:46 +05:30
2019-09-30 21:07:59 +05:30
In general, we recommend simply letting Elasticsearch merge and reclaim space automatically, with the default settings. From [Lucene's Handling of Deleted Documents](https://www.elastic.co/blog/lucenes-handling-of-deleted-documents "Lucene's Handling of Deleted Documents"), _"Overall, besides perhaps decreasing the maximum segment size, it is best to leave Lucene's defaults as-is and not fret too much about when deletes are reclaimed."_
2019-07-31 22:56:46 +05:30
2019-09-30 21:07:59 +05:30
However, some larger installations may wish to tune the merge policy settings:
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
- Consider reducing the `index.merge.policy.max_merged_segment` size from the default 5 GB to maybe 2 GB or 3 GB. Merging only happens when a segment has at least 50% deletions. Smaller segment sizes will allow merging to happen more frequently.
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-01-01 13:55:28 +05:30
curl --request PUT localhost:9200/gitlab-production/_settings ---header 'Content-Type: application/json' --data '{
2019-07-31 22:56:46 +05:30
"index" : {
"merge.policy.max_merged_segment": "2gb"
}
}'
```
2020-03-13 15:44:24 +05:30
- You can also adjust `index.merge.policy.reclaim_deletes_weight`, which controls how aggressively deletions are targeted. But this can lead to costly merge decisions, so we recommend not changing this unless you understand the tradeoffs.
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-01-01 13:55:28 +05:30
curl --request PUT localhost:9200/gitlab-production/_settings ---header 'Content-Type: application/json' --data '{
2019-07-31 22:56:46 +05:30
"index" : {
"merge.policy.reclaim_deletes_weight": "3.0"
}
}'
```
2020-03-13 15:44:24 +05:30
- Do not do a [force merge](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-forcemerge.html "Force Merge") to remove deleted documents. A warning in the [documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-forcemerge.html "Force Merge") states that this can lead to very large segments that may never get reclaimed, and can also cause significant performance or availability issues.
2019-07-31 22:56:46 +05:30
## Troubleshooting
2020-05-24 23:13:21 +05:30
### Common issues
2019-07-31 22:56:46 +05:30
Here are some common pitfalls and how to overcome them:
- **How can I verify my GitLab instance is using Elasticsearch?**
2019-09-30 21:07:59 +05:30
The easiest method is via the rails console (`sudo gitlab-rails console`) by running the following:
```ruby
u = User.find_by_username('your-username')
s = SearchService.new(u, {:search => 'search_term'})
pp s.search_objects.class.name
```
2020-06-23 00:09:42 +05:30
If you see `"ActiveRecord::Relation"`, you are **not** using Elasticsearch.
If you see `"Kaminari::PaginatableArray"` you are using Elasticsearch.
2019-07-31 22:56:46 +05:30
2020-01-01 13:55:28 +05:30
NOTE: **Note**:
2020-04-08 14:13:33 +05:30
The above instructions are used to verify that GitLab is using Elasticsearch only when indexing all namespaces. This is not to be used for scenarios that only index a [subset of namespaces](#limiting-namespaces-and-projects).
2020-01-01 13:55:28 +05:30
2019-07-31 22:56:46 +05:30
- **I updated GitLab and now I can't find anything**
2019-09-30 21:07:59 +05:30
We continuously make updates to our indexing strategies and aim to support
newer versions of Elasticsearch. When indexing changes are made, it may
be necessary for you to [reindex](#adding-gitlabs-data-to-the-elasticsearch-index) after updating GitLab.
2019-07-31 22:56:46 +05:30
- **I indexed all the repositories but I can't find anything**
2019-09-30 21:07:59 +05:30
Make sure you indexed all the database data [as stated above](#adding-gitlabs-data-to-the-elasticsearch-index).
Beyond that, check via the [Elasticsearch Search API](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html) to see if the data shows up on the Elasticsearch side.
If it shows up via the [Elasticsearch Search API](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html), check that it shows up via the rails console (`sudo gitlab-rails console`):
```ruby
u = User.find_by_username('your-username')
2020-01-01 13:55:28 +05:30
s = SearchService.new(u, {:search => 'search_term', :scope => 'blobs'})
2019-09-30 21:07:59 +05:30
pp s.search_objects.to_a
```
2020-01-01 13:55:28 +05:30
NOTE: **Note**:
2020-04-08 14:13:33 +05:30
The above instructions are not to be used for scenarios that only index a [subset of namespaces](#limiting-namespaces-and-projects).
2020-01-01 13:55:28 +05:30
2019-12-04 20:38:33 +05:30
See [Elasticsearch Index Scopes](#elasticsearch-index-scopes) for more information on searching for specific types of data.
2019-09-30 21:07:59 +05:30
- **I indexed all the repositories but then switched Elasticsearch servers and now I can't find anything**
2020-04-22 19:07:51 +05:30
You will need to re-run all the Rake tasks to re-index the database, repositories, and wikis.
2019-09-30 21:07:59 +05:30
2019-07-31 22:56:46 +05:30
- **The indexing process is taking a very long time**
2019-09-30 21:07:59 +05:30
The more data present in your GitLab instance, the longer the indexing process takes.
2019-07-31 22:56:46 +05:30
2019-10-12 21:52:04 +05:30
- **There are some projects that weren't indexed, but we don't know which ones**
You can run `sudo gitlab-rake gitlab:elastic:projects_not_indexed` to display projects that aren't indexed.
2019-07-31 22:56:46 +05:30
- **No new data is added to the Elasticsearch index when I push code**
2019-09-30 21:07:59 +05:30
When performing the initial indexing of blobs, we lock all projects until the project finishes indexing. It could
happen that an error during the process causes one or multiple projects to remain locked. In order to unlock them,
2020-04-22 19:07:51 +05:30
run the `gitlab:elastic:clear_locked_projects` Rake task.
2019-07-31 22:56:46 +05:30
- **"Can't specify parent if no parent field has been configured"**
2019-09-30 21:07:59 +05:30
If you enabled Elasticsearch before GitLab 8.12 and have not rebuilt indexes you will get
exception in lots of different cases:
2020-04-22 19:07:51 +05:30
```plaintext
2019-09-30 21:07:59 +05:30
Elasticsearch::Transport::Transport::Errors::BadRequest([400] {
"error": {
"root_cause": [{
"type": "illegal_argument_exception",
"reason": "Can't specify parent if no parent field has been configured"
}],
"type": "illegal_argument_exception",
"reason": "Can't specify parent if no parent field has been configured"
},
"status": 400
}):
```
This is because we changed the index mapping in GitLab 8.12 and the old indexes should be removed and built from scratch again,
2019-12-04 20:38:33 +05:30
see details in the [8-11-to-8-12 update guide](https://gitlab.com/gitlab-org/gitlab/blob/master/doc/update/8.11-to-8.12.md#11-elasticsearch-index-update-if-you-currently-use-elasticsearch).
2019-07-31 22:56:46 +05:30
- Exception `Elasticsearch::Transport::Transport::Errors::BadRequest`
2019-09-30 21:07:59 +05:30
If you have this exception (just like in the case above but the actual message is different) please check if you have the correct Elasticsearch version and you met the other [requirements](#system-requirements).
There is also an easy way to check it automatically with `sudo gitlab-rake gitlab:check` command.
2019-07-31 22:56:46 +05:30
- Exception `Elasticsearch::Transport::Transport::Errors::RequestEntityTooLarge`
2020-04-22 19:07:51 +05:30
```plaintext
2019-09-30 21:07:59 +05:30
[413] {"Message":"Request size exceeded 10485760 bytes"}
```
2019-07-31 22:56:46 +05:30
2019-09-30 21:07:59 +05:30
This exception is seen when your Elasticsearch cluster is configured to reject
requests above a certain size (10MiB in this case). This corresponds to the
`http.max_content_length` setting in `elasticsearch.yml`. Increase it to a
larger size and restart your Elasticsearch cluster.
2019-07-31 22:56:46 +05:30
2019-12-21 20:55:43 +05:30
AWS has [fixed limits](https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/aes-limits.html)
2019-09-30 21:07:59 +05:30
for this setting ("Maximum Size of HTTP Request Payloads"), based on the size of
the underlying instance.
2020-04-08 14:13:33 +05:30
2020-03-13 15:44:24 +05:30
- **My single node Elasticsearch cluster status never goes from `yellow` to `green` even though everything seems to be running properly**
2020-04-22 19:07:51 +05:30
**For a single node Elasticsearch cluster the functional cluster health status will be yellow** (will never be green) because the primary shard is allocated but replicas can not be as there is no other node to which Elasticsearch can assign a replica. This also applies if you are using the
2020-03-13 15:44:24 +05:30
[Amazon Elasticsearch](https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/aes-handling-errors.html#aes-handling-errors-yellow-cluster-status) service.
CAUTION: **Warning**: Setting the number of replicas to `0` is not something that we recommend (this is not allowed in the GitLab Elasticsearch Integration menu). If you are planning to add more Elasticsearch nodes (for a total of more than 1 Elasticsearch) the number of replicas will need to be set to an integer value larger than `0`. Failure to do so will result in lack of redundancy (losing one node will corrupt the index).
If you have a **hard requirement to have a green status for your single node Elasticsearch cluster**, please make sure you understand the risks outlined in the previous paragraph and then simply run the following query to set the number of replicas to `0`(the cluster will no longer try to create any shard replicas):
```shell
curl --request PUT localhost:9200/gitlab-production/_settings --header 'Content-Type: application/json' --data '{
"index" : {
"number_of_replicas" : 0
}
}'
```
2020-04-08 14:13:33 +05:30
2020-03-13 15:44:24 +05:30
- **I'm getting a `health check timeout: no Elasticsearch node available` error in Sidekiq during the indexing process**
2020-04-22 19:07:51 +05:30
```plaintext
2020-03-13 15:44:24 +05:30
Gitlab::Elastic::Indexer::Error: time="2020-01-23T09:13:00Z" level=fatal msg="health check timeout: no Elasticsearch node available"
```
2020-05-24 23:13:21 +05:30
You probably have not used either `http://` or `https://` as part of your value in the **"URL"** field of the Elasticsearch Integration Menu. Please make sure you are using either `http://` or `https://` in this field as the [Elasticsearch client for Go](https://github.com/olivere/elastic) that we are using [needs the prefix for the URL to be accepted as valid](https://github.com/olivere/elastic/commit/a80af35aa41856dc2c986204e2b64eab81ccac3a).
2020-04-22 19:07:51 +05:30
Once you have corrected the formatting of the URL, delete the index (via the [dedicated Rake task](#gitlab-elasticsearch-rake-tasks)) and [reindex the content of your instance](#adding-gitlabs-data-to-the-elasticsearch-index).
2020-06-23 00:09:42 +05:30
### Low-level troubleshooting
2020-05-24 23:13:21 +05:30
2020-06-23 00:09:42 +05:30
There is a [more structured, lower-level troubleshooting document](../administration/troubleshooting/elasticsearch.md) for when you experience other issues, including poor performance.
2020-05-24 23:13:21 +05:30
2020-04-22 19:07:51 +05:30
### Known Issues
2020-06-23 00:09:42 +05:30
- **[Elasticsearch `code_analyzer` doesn't account for all code cases](https://gitlab.com/gitlab-org/gitlab/-/issues/10693)**
2020-04-22 19:07:51 +05:30
The `code_analyzer` pattern and filter configuration is being evaluated for improvement. We have noticed [several edge cases](https://gitlab.com/gitlab-org/gitlab/-/issues/10693#note_158382332) that are not returning expected search results due to our pattern and filter configuration.
An improved strategy for the `code_analyzer` pattern and filters are being discussed in [issue 29443](https://gitlab.com/gitlab-org/gitlab/-/issues/29443).
2019-12-26 22:10:19 +05:30
### Reverting to basic search
Sometimes there may be issues with your Elasticsearch index data and as such
GitLab will allow you to revert to "basic search" when there are no search
results and assuming that basic search is supported in that scope. This "basic
search" will behave as though you don't have Elasticsearch enabled at all for
2020-04-22 19:07:51 +05:30
your instance and search using other data sources (ie. PostgreSQL data and Git
2019-12-26 22:10:19 +05:30
data).