I am creating an index using the following code :
es.indices.create(index= "newtest",
body= {
"settings": {
"analysis": {
"analyzer": {
"std_english": {
"type": "standard",
"stopwords": "_english_",
"filter" : ["lowercase"]
}
}
}
},
"mappings": {
"properties": {
"content": {
"type": "text",
"analyzer": "std_english"
}
}
}
})
When I index documents and verify what has been indexed, I still see stop words in the content.