Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,4 @@ To proceed you need to be familiar with how indexing, filtering and queries work

Whenever you make any changes in case of variables (for example, environmental ones) or configuration files, you need to erase Elasticsearch index, update the schema, and rebuild the index.

To delete the index, you can use an HTTP request.
Use the command as in the following example:

```bash
curl --request DELETE 'https://elasticsearch:9200/_all'
```

To update the schema and then reindex the search, use the following commands:

```bash
php bin/console ibexa:elasticsearch:put-index-template --overwrite
php bin/console ibexa:reindex
```
[[% include 'snippets/elasticsearch_clear_index.md' %]]
30 changes: 30 additions & 0 deletions docs/snippets/elasticsearch_clear_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
To delete an index, you can use the ElasticSearch's REST API.

Check warning on line 1 in docs/snippets/elasticsearch_clear_index.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/snippets/elasticsearch_clear_index.md#L1

[Ibexa.ReadingLevel] The grade level is 8.58. Aim for 8th grade or lower by using shorter sentences and words.
Raw output
{"message": "[Ibexa.ReadingLevel] The grade level is 8.58. Aim for 8th grade or lower by using shorter sentences and words.", "location": {"path": "docs/snippets/elasticsearch_clear_index.md", "range": {"start": {"line": 1, "column": 1}}}, "severity": "WARNING"}

Check warning on line 1 in docs/snippets/elasticsearch_clear_index.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/snippets/elasticsearch_clear_index.md#L1

[Ibexa.ThirdPartyNames] Use 'Elasticsearch' instead of 'ElasticSearch'
Raw output
{"message": "[Ibexa.ThirdPartyNames] Use 'Elasticsearch' instead of 'ElasticSearch'", "location": {"path": "docs/snippets/elasticsearch_clear_index.md", "range": {"start": {"line": 1, "column": 37}}}, "severity": "WARNING"}

First, use the [`_cat/indices` endpoint](https://www.elastic.co/guide/en/elasticsearch/reference/7.17/cat-indices.html) to list existing indices:

``` bash
yellow open default_location_eng_gb_54 DoSFV-CtQFylKKVvd48YfA 1 1 1 0 16.7kb 16.7kb
yellow open default_location_eng_gb_42 3Z_IrWVHQh2m37jPqQBOcQ 1 1 1 0 20.1kb 20.1kb
yellow open default_content_eng_gb_45 y-t4uNQwR4KRJ-N9i3zUog 1 1 1 0 21.3kb 21.3kb
yellow open default_content_eng_gb_46 e_LS5qG3RIih6iQRPsNp-w 1 1 1 0 22.5kb 22.5kb
yellow open default_content_eng_gb_1 101-1-tQS_2KSvNs2X2JAQ 1 1 17 0 39.8kb 39.8kb
yellow open default_location_eng_gb_46 fSGtpljwTpGfascFechmww 1 1 1 0 21kb 21kb
(...)
```

Create a list containing all indices used by the DXP, including the [custom indices](search/search_engines/elasticsearch/configure_elasticsearch.md#define-field-type-mappingtemplates) as well.

Then, delete them by using the [delete index endpoint](https://www.elastic.co/guide/en/elasticsearch/reference/7.17/indices-delete-index.html)

Check warning on line 17 in docs/snippets/elasticsearch_clear_index.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/snippets/elasticsearch_clear_index.md#L17

[Ibexa.EOLWhitespace] Remove whitespace characters from the end of the line.
Raw output
{"message": "[Ibexa.EOLWhitespace] Remove whitespace characters from the end of the line.", "location": {"path": "docs/snippets/elasticsearch_clear_index.md", "range": {"start": {"line": 17, "column": 143}}}, "severity": "WARNING"}

``` bash
curl --request DELETE 'https://elasticsearch:9200/default_location*'
curl --request DELETE 'https://elasticsearch:9200/default_content*'
(...)
```

To update the schema and then reindex the search, use the following commands:

``` bash
php bin/console ibexa:elasticsearch:put-index-template --overwrite
php bin/console ibexa:reindex
```
14 changes: 1 addition & 13 deletions docs/update_and_migration/from_4.5/update_from_4.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -463,19 +463,7 @@ Restart Solr for `solrconfig.xml` changes to take effect.
Elasticsearch schema's templates change, for example, with the addition of new features such as spellchecking.
When this happens, you need to erase the index, update the schema, and rebuild the index.

To delete the index, you can use an HTTP request.
Use the command as in the following example:

```bash
curl --request DELETE 'https://elasticsearch:9200/_all'
```

To update the schema, and then reindex the content, use the following commands:

```bash
php bin/console ibexa:elasticsearch:put-index-template --overwrite
php bin/console ibexa:reindex
```
[[% include 'snippets/elasticsearch_clear_index.md' %]]

## Update to v4.6.latest

Expand Down
Loading