Using the percolator, you can register queries against one or multiple indices and then you can send percolate requests with a document which return which registered queries it matched.
The percolator has been available in the product since the version 0.15, however starting from version 1.0 a fully distributed version of percolator will be available. The redesigned percolator will have a _percolator type mapping instead of a _percolator index, and the query and data will coexist with the same index. The redesigned percolator is also fixing the confusing part of the query registration API where the index name was represented as the type in the _percolator index. In the redesigned percolator this confusion is gone, because the _percolator became a type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -XPUT 'http://localhost:9200/households/_percolator/my_id' -d { | |
"query": { | |
... | |
} | |
} |
Let's consider the following model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Household { | |
private String id; | |
private String description; | |
private Double lat; | |
private Double lon; | |
private int price; | |
private Date postDate; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void addGeoTypeMapping() throws IOException { | |
XContentBuilder mapping = jsonBuilder() | |
.startObject() | |
.startObject("household") | |
.startObject("properties") | |
.startObject("location") | |
.field("type", "geo_point") | |
.endObject() | |
.endObject() | |
.endObject() | |
.endObject(); | |
client.admin().indices().prepareCreate("households") | |
.addMapping("household", mapping).execute().actionGet(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private FilterBuilder filterBuilder() { | |
return boolFilter() | |
.must(rangeFilter("price").from("250000").to("300000")) | |
.must(geoDistanceFilter("location") | |
.point(52.09, 5.11) | |
.distance(5, DistanceUnit.KILOMETERS) | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
client.prepareIndex("households", "_percolator", "myQuery") | |
.setSource(jsonBuilder() | |
.startObject() | |
.field("query", constantScoreQuery(filterBuilder())) | |
.field("user_id", "123") | |
.endObject()) | |
.setRefresh(true) // Needed when the query shall be available immediately | |
.execute().actionGet(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// create a source of the percolate request | |
XContentBuilder docBuilder = jsonBuilder() | |
.startObject() | |
.field("doc") | |
.startObject() | |
.startObject("location") | |
.field("lat", 52.10) | |
.field("lon", 5.12) | |
.endObject() | |
.field("price", 290000) | |
.endObject() | |
.endObject(); | |
// send the percolate request | |
PercolateResponse response = client.preparePercolate() | |
.setIndices("households") | |
.setDocumentType("household") | |
.setSource(docBuilder) | |
.execute().actionGet(); | |
assertThat(response.getCount(), is(1L)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GetResponse matchedQuery = client.prepareGet("households","_percolator", "myQuery") | |
.setFetchSource("user_id", "query") | |
.execute().actionGet(); | |
assertThat(((String) matchedQuery.getSource().get("user_id")), is("123")); | |
assertThat(matchedQuery.getSource().get("query"), is(nullValue())); |