2016-04-19 09:59:09 -04:00
|
|
|
[[query-dsl-percolate-query]]
|
|
|
|
=== Percolate Query
|
2016-03-15 10:07:53 -04:00
|
|
|
|
2016-04-19 09:59:09 -04:00
|
|
|
The `percolate` query can be used to match queries
|
|
|
|
stored in an index. The `percolate` query itself
|
2016-04-05 05:53:28 -04:00
|
|
|
contains the document that will be used as query
|
|
|
|
to match with the stored queries.
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
[float]
|
|
|
|
=== Sample Usage
|
|
|
|
|
2016-04-05 05:53:28 -04:00
|
|
|
Create an index with two mappings:
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
PUT /my-index
|
2016-04-05 05:53:28 -04:00
|
|
|
{
|
2016-05-24 05:58:43 -04:00
|
|
|
"mappings": {
|
|
|
|
"doctype": {
|
|
|
|
"properties": {
|
|
|
|
"message": {
|
2016-09-07 08:15:20 -04:00
|
|
|
"type": "text"
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"queries": {
|
|
|
|
"properties": {
|
|
|
|
"query": {
|
|
|
|
"type": "percolator"
|
|
|
|
}
|
|
|
|
}
|
2016-05-12 06:58:22 -04:00
|
|
|
}
|
2016-03-15 10:07:53 -04:00
|
|
|
}
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
2016-03-15 10:07:53 -04:00
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
2016-03-15 10:07:53 -04:00
|
|
|
|
2016-04-05 05:53:28 -04:00
|
|
|
The `doctype` mapping is the mapping used to preprocess
|
|
|
|
the document defined in the `percolator` query before it
|
|
|
|
gets indexed into a temporary index.
|
|
|
|
|
|
|
|
The `queries` mapping is the mapping used for indexing
|
|
|
|
the query documents. The `query` field will hold a json
|
|
|
|
object that represents an actual Elasticsearch query. The
|
|
|
|
`query` field has been configured to use the
|
|
|
|
<<percolator,percolator field type>>. This field type understands
|
|
|
|
the query dsl and stored the query in such a way that it
|
2016-04-19 09:59:09 -04:00
|
|
|
can be used later on to match documents defined on the `percolate` query.
|
2016-04-05 05:53:28 -04:00
|
|
|
|
2016-03-15 10:07:53 -04:00
|
|
|
Register a query in the percolator:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-09-07 08:16:48 -04:00
|
|
|
PUT /my-index/queries/1?refresh
|
2016-05-24 05:58:43 -04:00
|
|
|
{
|
2016-03-15 10:07:53 -04:00
|
|
|
"query" : {
|
|
|
|
"match" : {
|
|
|
|
"message" : "bonsai tree"
|
|
|
|
}
|
|
|
|
}
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
2016-03-15 10:07:53 -04:00
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[continued]
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
Match a document to the registered percolator queries:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
GET /my-index/_search
|
|
|
|
{
|
2016-03-15 10:07:53 -04:00
|
|
|
"query" : {
|
2016-04-19 09:59:09 -04:00
|
|
|
"percolate" : {
|
2016-04-05 05:53:28 -04:00
|
|
|
"field" : "query",
|
|
|
|
"document_type" : "doctype",
|
2016-03-15 10:07:53 -04:00
|
|
|
"document" : {
|
|
|
|
"message" : "A new bonsai tree in the office"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
2016-03-15 10:07:53 -04:00
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[continued]
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
The above request will yield the following response:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
2016-09-07 08:16:48 -04:00
|
|
|
"took": 13,
|
2016-03-15 10:07:53 -04:00
|
|
|
"timed_out": false,
|
|
|
|
"_shards": {
|
|
|
|
"total": 5,
|
|
|
|
"successful": 5,
|
|
|
|
"failed": 0
|
|
|
|
},
|
|
|
|
"hits": {
|
|
|
|
"total": 1,
|
2016-04-05 05:53:28 -04:00
|
|
|
"max_score": 0.5716521,
|
2016-03-15 10:07:53 -04:00
|
|
|
"hits": [
|
|
|
|
{ <1>
|
|
|
|
"_index": "my-index",
|
2016-04-05 05:53:28 -04:00
|
|
|
"_type": "queries",
|
2016-03-15 10:07:53 -04:00
|
|
|
"_id": "1",
|
2016-04-05 05:53:28 -04:00
|
|
|
"_score": 0.5716521,
|
2016-03-15 10:07:53 -04:00
|
|
|
"_source": {
|
|
|
|
"query": {
|
|
|
|
"match": {
|
|
|
|
"message": "bonsai tree"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-09-07 08:16:48 -04:00
|
|
|
// TESTRESPONSE[s/"took": 13,/"took": "$body.took",/]
|
2016-03-15 10:07:53 -04:00
|
|
|
|
2016-04-19 09:59:09 -04:00
|
|
|
<1> The query with id `1` matches our document.
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
[float]
|
|
|
|
==== Parameters
|
|
|
|
|
|
|
|
The following parameters are required when percolating a document:
|
|
|
|
|
|
|
|
[horizontal]
|
2016-04-05 05:53:28 -04:00
|
|
|
`field`:: The field of type `percolator` and that holds the indexed queries. This is a required parameter.
|
|
|
|
`document_type`:: The type / mapping of the document being percolated. This is a required parameter.
|
2016-03-15 10:07:53 -04:00
|
|
|
`document`:: The source of the document being percolated.
|
|
|
|
|
2016-12-09 07:45:01 -05:00
|
|
|
Instead of specifying the source of the document being percolated, the source can also be retrieved from an already
|
2016-04-19 09:59:09 -04:00
|
|
|
stored document. The `percolate` query will then internally execute a get request to fetch that document.
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
In that case the `document` parameter can be substituted with the following parameters:
|
|
|
|
|
|
|
|
[horizontal]
|
|
|
|
`index`:: The index the document resides in. This is a required parameter.
|
|
|
|
`type`:: The type of the document to fetch. This is a required parameter.
|
|
|
|
`id`:: The id of the document to fetch. This is a required parameter.
|
|
|
|
`routing`:: Optionally, routing to be used to fetch document to percolate.
|
|
|
|
`preference`:: Optionally, preference to be used to fetch document to percolate.
|
|
|
|
`version`:: Optionally, the expected version of the document to be fetched.
|
|
|
|
|
|
|
|
[float]
|
|
|
|
==== Percolating an Existing Document
|
|
|
|
|
2016-04-19 09:59:09 -04:00
|
|
|
In order to percolate a newly indexed document, the `percolate` query can be used. Based on the response
|
2016-03-15 10:07:53 -04:00
|
|
|
from an index request, the `_id` and other meta information can be used to immediately percolate the newly added
|
|
|
|
document.
|
|
|
|
|
|
|
|
[float]
|
|
|
|
===== Example
|
|
|
|
|
|
|
|
Based on the previous example.
|
|
|
|
|
|
|
|
Index the document we want to percolate:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
PUT /my-index/message/1
|
2016-03-15 10:07:53 -04:00
|
|
|
{
|
|
|
|
"message" : "A new bonsai tree in the office"
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
2016-03-15 10:07:53 -04:00
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[continued]
|
2016-03-15 10:07:53 -04:00
|
|
|
Index response:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
|
|
|
"_index": "my-index",
|
|
|
|
"_type": "message",
|
|
|
|
"_id": "1",
|
|
|
|
"_version": 1,
|
|
|
|
"_shards": {
|
|
|
|
"total": 2,
|
|
|
|
"successful": 1,
|
|
|
|
"failed": 0
|
|
|
|
},
|
2016-09-07 08:16:48 -04:00
|
|
|
"created": true,
|
2016-09-28 21:58:02 -04:00
|
|
|
"result": "created",
|
2017-04-19 14:44:22 -04:00
|
|
|
"_seq_no" : 1,
|
|
|
|
"_primary_term" : 1
|
2016-03-15 10:07:53 -04:00
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-11-11 15:18:25 -05:00
|
|
|
// TESTRESPONSE
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
Percolating an existing document, using the index response as basis to build to new search request:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
GET /my-index/_search
|
2016-03-15 10:07:53 -04:00
|
|
|
{
|
|
|
|
"query" : {
|
2016-04-19 09:59:09 -04:00
|
|
|
"percolate" : {
|
2016-04-05 05:53:28 -04:00
|
|
|
"field": "query",
|
|
|
|
"document_type" : "doctype",
|
2016-03-15 10:07:53 -04:00
|
|
|
"index" : "my-index",
|
|
|
|
"type" : "message",
|
|
|
|
"id" : "1",
|
|
|
|
"version" : 1 <1>
|
|
|
|
}
|
|
|
|
}
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
2016-03-15 10:07:53 -04:00
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[continued]
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
<1> The version is optional, but useful in certain cases. We can then ensure that we are try to percolate
|
|
|
|
the document we just have indexed. A change may be made after we have indexed, and if that is the
|
|
|
|
case the then the search request would fail with a version conflict error.
|
|
|
|
|
|
|
|
The search response returned is identical as in the previous example.
|
|
|
|
|
|
|
|
[float]
|
2016-04-19 09:59:09 -04:00
|
|
|
==== Percolate query and highlighting
|
2016-03-15 10:07:53 -04:00
|
|
|
|
2016-04-19 09:59:09 -04:00
|
|
|
The `percolate` query is handled in a special way when it comes to highlighting. The queries hits are used
|
|
|
|
to highlight the document that is provided in the `percolate` query. Whereas with regular highlighting the query in
|
2016-03-15 10:07:53 -04:00
|
|
|
the search request is used to highlight the hits.
|
|
|
|
|
|
|
|
[float]
|
|
|
|
===== Example
|
|
|
|
|
|
|
|
This example is based on the mapping of the first example.
|
|
|
|
|
2016-04-19 09:59:09 -04:00
|
|
|
Save a query:
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-09-07 08:16:48 -04:00
|
|
|
PUT /my-index/queries/1?refresh
|
2016-03-15 10:07:53 -04:00
|
|
|
{
|
|
|
|
"query" : {
|
|
|
|
"match" : {
|
|
|
|
"message" : "brown fox"
|
|
|
|
}
|
|
|
|
}
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
2016-03-15 10:07:53 -04:00
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[continued]
|
2016-03-15 10:07:53 -04:00
|
|
|
|
2016-04-19 09:59:09 -04:00
|
|
|
Save another query:
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-09-07 08:16:48 -04:00
|
|
|
PUT /my-index/queries/2?refresh
|
2016-03-15 10:07:53 -04:00
|
|
|
{
|
|
|
|
"query" : {
|
|
|
|
"match" : {
|
|
|
|
"message" : "lazy dog"
|
|
|
|
}
|
|
|
|
}
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
2016-03-15 10:07:53 -04:00
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[continued]
|
2016-03-15 10:07:53 -04:00
|
|
|
|
2016-04-19 09:59:09 -04:00
|
|
|
Execute a search request with the `percolate` query and highlighting enabled:
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
GET /my-index/_search
|
2016-03-15 10:07:53 -04:00
|
|
|
{
|
|
|
|
"query" : {
|
2016-04-19 09:59:09 -04:00
|
|
|
"percolate" : {
|
2016-04-05 05:53:28 -04:00
|
|
|
"field": "query",
|
|
|
|
"document_type" : "doctype",
|
2016-03-15 10:07:53 -04:00
|
|
|
"document" : {
|
|
|
|
"message" : "The quick brown fox jumps over the lazy dog"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"highlight": {
|
|
|
|
"fields": {
|
|
|
|
"message": {}
|
|
|
|
}
|
|
|
|
}
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
2016-03-15 10:07:53 -04:00
|
|
|
--------------------------------------------------
|
2016-05-24 05:58:43 -04:00
|
|
|
// CONSOLE
|
|
|
|
// TEST[continued]
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
This will yield the following response.
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
{
|
2016-09-07 08:16:48 -04:00
|
|
|
"took": 7,
|
2016-03-15 10:07:53 -04:00
|
|
|
"timed_out": false,
|
|
|
|
"_shards": {
|
|
|
|
"total": 5,
|
|
|
|
"successful": 5,
|
|
|
|
"failed": 0
|
|
|
|
},
|
|
|
|
"hits": {
|
|
|
|
"total": 2,
|
2016-04-05 05:53:28 -04:00
|
|
|
"max_score": 0.5446649,
|
2016-03-15 10:07:53 -04:00
|
|
|
"hits": [
|
|
|
|
{
|
|
|
|
"_index": "my-index",
|
2016-04-05 05:53:28 -04:00
|
|
|
"_type": "queries",
|
2016-03-15 10:07:53 -04:00
|
|
|
"_id": "2",
|
2016-04-05 05:53:28 -04:00
|
|
|
"_score": 0.5446649,
|
2016-03-15 10:07:53 -04:00
|
|
|
"_source": {
|
|
|
|
"query": {
|
|
|
|
"match": {
|
|
|
|
"message": "lazy dog"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"highlight": {
|
|
|
|
"message": [
|
2016-04-19 08:11:23 -04:00
|
|
|
"The quick brown fox jumps over the <em>lazy</em> <em>dog</em>" <1>
|
2016-03-15 10:07:53 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"_index": "my-index",
|
2016-04-05 05:53:28 -04:00
|
|
|
"_type": "queries",
|
2016-03-15 10:07:53 -04:00
|
|
|
"_id": "1",
|
2016-04-05 05:53:28 -04:00
|
|
|
"_score": 0.5446649,
|
2016-03-15 10:07:53 -04:00
|
|
|
"_source": {
|
|
|
|
"query": {
|
|
|
|
"match": {
|
|
|
|
"message": "brown fox"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"highlight": {
|
|
|
|
"message": [
|
2016-04-19 08:11:23 -04:00
|
|
|
"The quick <em>brown</em> <em>fox</em> jumps over the lazy dog" <1>
|
2016-03-15 10:07:53 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-09-07 08:16:48 -04:00
|
|
|
// TESTRESPONSE[s/"took": 7,/"took": "$body.took",/]
|
2016-03-15 10:07:53 -04:00
|
|
|
|
2016-11-26 06:34:52 -05:00
|
|
|
<1> The terms from each query have been highlighted in the document.
|
|
|
|
|
2016-04-19 09:59:09 -04:00
|
|
|
Instead of the query in the search request highlighting the percolator hits, the percolator queries are highlighting
|
|
|
|
the document defined in the `percolate` query.
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
[float]
|
|
|
|
==== How it Works Under the Hood
|
|
|
|
|
2016-04-05 05:53:28 -04:00
|
|
|
When indexing a document into an index that has the <<percolator,percolator field type>> mapping configured, the query
|
2016-04-29 10:23:01 -04:00
|
|
|
part of the documents gets parsed into a Lucene query and are stored into the Lucene index. A binary representation
|
|
|
|
of the query gets stored, but also the query's terms are analyzed and stored into an indexed field.
|
2016-03-15 10:07:53 -04:00
|
|
|
|
|
|
|
At search time, the document specified in the request gets parsed into a Lucene document and is stored in a in-memory
|
2016-04-29 10:23:01 -04:00
|
|
|
temporary Lucene index. This in-memory index can just hold this one document and it is optimized for that. After this
|
|
|
|
a special query is build based on the terms in the in-memory index that select candidate percolator queries based on
|
2016-05-20 11:28:00 -04:00
|
|
|
their indexed query terms. These queries are then evaluated by the in-memory index if they actually match.
|
|
|
|
|
|
|
|
The selecting of candidate percolator queries matches is an important performance optimization during the execution
|
2016-05-22 16:50:31 -04:00
|
|
|
of the `percolate` query as it can significantly reduce the number of candidate matches the in-memory index needs to
|
2016-05-20 11:28:00 -04:00
|
|
|
evaluate. The reason the `percolate` query can do this is because during indexing of the percolator queries the query
|
|
|
|
terms are being extracted and indexed with the percolator query. Unfortunately the percolator cannot extract terms from
|
|
|
|
all queries (for example the `wildcard` or `geo_shape` query) and as a result of that in certain cases the percolator
|
|
|
|
can't do the selecting optimization (for example if an unsupported query is defined in a required clause of a boolean query
|
|
|
|
or the unsupported query is the only query in the percolator document). These queries are marked by the percolator and
|
|
|
|
can be found by running the following search:
|
|
|
|
|
2016-05-24 05:58:43 -04:00
|
|
|
|
2016-05-20 11:28:00 -04:00
|
|
|
[source,js]
|
2016-05-24 05:58:43 -04:00
|
|
|
---------------------------------------------------
|
|
|
|
GET /_search
|
2016-05-20 11:28:00 -04:00
|
|
|
{
|
|
|
|
"query": {
|
|
|
|
"term" : {
|
2016-06-24 12:18:02 -04:00
|
|
|
"query.extraction_result" : "failed"
|
2016-05-20 11:28:00 -04:00
|
|
|
}
|
|
|
|
}
|
2016-05-24 05:58:43 -04:00
|
|
|
}
|
|
|
|
---------------------------------------------------
|
|
|
|
// CONSOLE
|
2016-05-20 11:28:00 -04:00
|
|
|
|
2016-05-24 05:58:43 -04:00
|
|
|
NOTE: The above example assumes that there is a `query` field of type
|
|
|
|
`percolator` in the mappings.
|