Is it possible to create a custom analyzer from a file?
example:
i have a file with no stop words that i want import in es.
can i create this?
"filter": {
"my_stopwords": {
"type": "stop",
"stopwords": my_file_with_stopwords.txt
}
}