I see where we can run percolate on existing single documents. I've tested this successfully.
I've run _mpercolate on mulitple new documents.
But what about existing multiple documents. I've not found successful syntax to make that work in Sense. I recreated the example index from the docs and then added several documents under my-type. Then I executed this query:
POST /my-index/my-type/_mpercolate
also tried GET
results:
{
"error": {
"root_cause": [
{
"type": "parse_exception",
"reason": "Failed to derive xcontent"
}
],
"type": "parse_exception",
"reason": "Failed to derive xcontent"
},
"status": 400
}
Any help is appreciated.