Managing Indices
Learn how to create, update and delete indices with CBElasticsearch
Elasticsearch documents are stored in an "index", with the document structure defined by a "mapping". An Elasticsearch index is a JSON document store, and the mapping is a JSON configuration which defines the data type Elasticsearch should use for each document field.
By default, Elasticsearch will dynamically generate these index mapping when a document is saved to the index. See Dynamic Mappings in Elasticsearch for more details.
Retrieving information on Indices
To retrieve a list of all indices on the connected cluster, use the client getIndices
method:
This will return a struct of all indices ( with the names as keys ), which will provide additional information on each index, such as:
Any assigned aliases
The number of documents in the index
The size of the storage space used for the index in bytes
Creating an Index
The IndexBuilder
model assists with the creation and mapping of indices. Mappings define the allowable data types within your documents and allow for better and more accurate search aggregations. Let's say we have a book model that we intend to make searchable via a bookshop
index. Let's go ahead and create the index using the IndexBuilder:
This will create an empty index which we can begin populating with documents.
Creating an Explicit Index Mapping
To avoid the inherent troubles with dynamic mappings, you can define an explicit mapping using the properties
argument:
While it is not required that you explicitly define an index mapping, it is highly recommended since Elasticsearch's assumptions about the incoming document data may not always be correct. This leads to issues where the Elasticsearch-generated mapping is wrong and prevents further data from being indexed if it does not match the expected data type.
Using Client.ApplyIndex
In the previous examples, we've created the index and mapping from the IndexBuilder itself. If we wish, we could instead pass the IndexBuilder
object to the Client@cbelasticsearch
instance's applyIndex( required IndexBuilder indexBuilder )
method:
Configuring Index Settings
So far we've passed a simple struct of field mappings in to the index properties. If we wanted to add additional settings or configure replicas and shards, we could pass a more comprehensive struct, including a range of settings to the new()
method to do so:
Updating an Existing Index
The IndexBuilder
model also provides a patch()
convenience method for updating the mapping or settings on an index:
Here's a quick example of using indexBuilder.patch()
to add two new fields to an existing reviews
index:
Retrieving Settings for an Index
To retreive a list of all settings for an index you may use the getSettings
method on the client.
Retrieving Mappings for an Index
To retreive a list of the configured mappings for an index you may use the getMappings
method on the client.
Triggering an index refresh
On occasion, you may need to ensure the index is updated in real time (immediately and synchronously). This can be done via the refreshIndex()
client method:
You can refresh multiple indices at once:
as well as pass supported query parameters to the refresh endpoint. This can be useful when using wildcards in the index/alias names:
Getting Index Statistics
To retrieve statistics on an index, use the getIndexStats()
method:
You can retrieve particular statistics metrics:
Or all metrics:
You can even retrieve all metrics on all indices by skipping the indexName
parameter entirely:
Finally, you can pass a struct of parameters to fine-tune the statistics result:
Creating Runtime Fields
Elasticsearch allows mapping runtime fields, which are fields calculated at search time and returned in the "fields"
array.
This summarized_emotions
field can then be retrieved during a search to display an array of emotions matching the review summary.
Opening or Closing an Index
Certain index-level settings can not be applied while the index is open. To solve this, CBElasticsearch offers the .closeIndex()
and .openIndex()
methods:
Each of these methods accepts a struct of name/value (simple values only) arguments to pass in the query string:
See the Elasticsearch "Close Index" documentation for more information.
Deleting an Index
All good things must come to an end, eh? You can use Client.deleteIndex()
to delete an existing index:
Or you can use IndexBuilder.delete()
:
Additional Reading
Deprecation notice: Custom index types are deprecated since Elasticsearch v7.0, and should no longer be used. Only a single type will be accepted in future releases.
Last updated