Hi,
I have used tokenizer as below:
"text_general_likely_new": {
"tokenizer": "standard ",
"filter": [
"StopFilterFactory",
"LowerCaseFilterFactory",
"SynonymFilterFactory",
"ASCIIFoldingFilterFactory"
]
}
But I think there was a space like "standard " while defining tokenizer.So it is showing error like:
{
"error": {
"root_cause": [
{
"type": "exception",
"reason": "Failed to verify index [historical_new/QGeFAxAUS7qHd4NlgeC_5g]"
}
],
"type": "exception",
"reason": "Failed to verify index [historical_new/QGeFAxAUS7qHd4NlgeC_5g]",
"caused_by": {
"type": "illegal_argument_exception",
"reason": "Custom Analyzer [text_general_likely] failed to find tokenizer under name [standard ]"
}
},
"status": 500
}
Now I changed it without space like: "tokenizer": "standard" but still showing same error changes doesn't it.
Please let me know solution for it.