ElasticSearchインデックスには次のマッピングがあります。http://abc.com/test/article/_mappingに投稿(「PUT」)しています。
{
"article": {
"settings": {
"analysis": {
"analyzer": {
"stem": {
"tokenizer": "standard",
"filter": [
"standard",
"lowercase",
"stop",
"porter_stem"
]
}
}
}
},
"mappings": {
"properties": {
"DocumentID": {
"type": "string"
},
"ContentSource": {
"type": "integer"
},
"ContentType": {
"type": "integer"
},
"PageTitle": {
"type": "string",
"analyzer": "stem"
},
"ContentBody": {
"type": "string",
"analyzer": "stem"
},
"URL": {
"type": "string"
}
}
}
}
}
ElasticSearchからOKメッセージが表示されます。しかし、http://abc.com/test/article/_mappingにアクセスすると、マッピングの設定が表示されません。私が見るのはこれだけです
{ "article" : { "properties" : { } }}
アナライザーの設定部分を追加する前に、これを機能させました。どんな助けでも大歓迎です!