Изтриване на съществуващия индекс
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"
}
}
}
}'
След тези стъпки поставете config mongodb на приставката за река към elasticsearch.
Надявам се да помогне...!