Open
Description
Hello,
after installing minhash filter in elasticsearch, I started kibana app and in the Dev tool, I copy&pasted the code to create the minhash filter mapping:
curl -XPUT 'localhost:9200/my_index' -d '{
"index":{
"analysis":{
"analyzer":{
"minhash_analyzer":{
"type":"custom",
"tokenizer":"standard",
"filter":["minhash"]
}
}
}
}
}'
But then, I got this error:
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "Custom Analyzer [minhash_analyzer] failed to find filter under name [minhash]"
}
],
"type": "illegal_argument_exception",
"reason": "Custom Analyzer [minhash_analyzer] failed to find filter under name [minhash]"
},
"status": 400
}