既存のインデックスを削除する
curl -XDELETE "http://hostname:9200/index/type"
既存の河川構成インデックスを削除します
curl -XDELETE "http://hostname:9200/_river"
インデックスへのマッピングを作成
curl -XPUT "http://hostname:9200/index/type/_mapping" -d'
{
"allnews": {
"properties": {
"category": {
"type": "string"
},
"description": {
"type": "string"
},
"link": {
"type": "string"
},
"state": {
"type": "string",
"index" : "not_analyzed"
},
"title": {
"type": "string"
}
}
}
}'
これらの手順の後、Riverプラグインのconfigsyncmongodbをelasticsearchに配置します。
お役に立てば幸いです。..!