Hapus indeks yang ada
curl -XDELETE "http://hostname:9200/index/type"
Hapus indeks konfigurasi sungai yang ada
curl -XDELETE "http://hostname:9200/_river"
Buat pemetaan untuk diindeks
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"
}
}
}
}'
Setelah langkah-langkah ini, masukkan plugin sungai config sync mongodb ke elasticsearch.
Semoga membantu..!