Usuń istniejący indeks
curl -XDELETE "http://hostname:9200/index/type"
Usuń istniejący indeks konfiguracji rzeki
curl -XDELETE "http://hostname:9200/_river"
Utwórz mapowanie do indeksu
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"
}
}
}
}'
Po tych krokach umieść mongodb synchronizacji konfiguracji wtyczki rzeki na elasticsearch.
Mam nadzieję, że to pomoże...!