-
Notifications
You must be signed in to change notification settings - Fork 76
Open
Description
{
"settings": {
"index": {
"number_of_shards": "3",
"number_of_replicas": "1"
},
"analysis" : {
"analyzer" : {
"ilhee_Custom" : {
"tokenizer" : "whitespace",
"filter" : ["lowercase", "my_stoplist", "snowball", "word_delimiter"]
}
},
"filter" : {
"my_stoplist" : {
"type" : "stop",
"stopwords_path" : "stopword_list.txt",
"remove_trailing" : true
}
}
}
},
"mappings": {
"mc": {
"properties": {
"id": {
"type": "long"
},
"code": {
"type": "string"
},
"mainclass": {
"type": "string",
"analyzer": "ilhee_Custom"
}
}
}
}
}
how can i change the plain elastic version from postman source ?
Metadata
Metadata
Assignees
Labels
No labels