Hi there, I have a problem with elastic enterprise search API 8.5, specifically with the "search_explain" API. My problem is the following, I did a cURL request to the endpoint specificied in the documentation, but the output it wasn't the expected, and I got a 404 Not Found Error, with the body
{
"errors": "Routing Error. The path you have requested is invalid."
}
The cURL request that i did is the following:
curl -X POST 'https://[instance id].ent.us-east-1.aws.found.io/api/as/v0/engines/[myengine]/search_explain' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer [myprivatekey]' \
-d '{
"query": "hormigón"
}'
I need this funcionality, because I want to find the best level of precision for my differents engines. I read the documentation about precision, but I'm not sure how the "Analyzers" works. For example, In my current engine, If I do the query "hormigón", elastic is returning documents that have words that contains the syllabe "horm". I don't want this and to "fix" this, the only option that I have is tunning the precision parameter.
Thanks,
Joaquin B