Elasticsearch - Advanced Patterns
Given the following percolate query, what will it return?
{
"query": {
"percolate": {
"field": "query",
"document": {
"message": "Elasticsearch alerting"
}
}
}
}Assuming the index has stored queries matching documents containing "alerting".
