elasticsearchHow can I use Elasticsearch to match all elements in a given set?
Elasticsearch can be used to match all elements in a given set by using the terms query. This query is used to match documents that contain one or more exact terms specified in the terms array. For example, the following code block will match all elements in the tags array:
GET /_search
{
"query": {
"terms": {
"tags": ["red", "green", "blue"]
}
}
}
The output of the above query will be documents that contain all of the elements in the tags array:
{
"took": 4,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 2,
"relation": "eq"
},
"max_score": 1.0,
"hits": [
{
"_index": "my_index",
"_type": "_doc",
"_id": "1",
"_score": 1.0,
"_source": {
"tags": ["red", "green", "blue"]
}
},
{
"_index": "my_index",
"_type": "_doc",
"_id": "2",
"_score": 1.0,
"_source": {
"tags": ["red", "green", "blue", "yellow"]
}
}
]
}
}
The code block consists of the following parts:
GET /_search: This is the request method and path for the search request.query: This is the query object that contains the query parameters.terms: This is thetermsquery object that contains the array of terms to match.tags: This is the array of terms to match.
For more information on the terms query, please refer to the Elasticsearch documentation.
More of Elasticsearch
- How can I use Elasticsearch with Zammad?
- How do I set up an Elasticsearch Yum repository?
- How can I use elasticsearch zone awareness to improve my software development?
- How can I store and query zoned datetime values in Elasticsearch?
- How do I configure Elasticsearch with a YML file?
- How can I use Yandex Mirror to access Elasticsearch data?
- How do I configure elasticsearch xpack.security.transport.ssl?
- How can I use the cat indices API in Elasticsearch?
- How can I troubleshoot an Elasticsearch cluster with a yellow status?
- How can I use Elasticsearch and Zookeeper together to manage distributed applications?
See more codes...