I am very new to Elastic Search so i have gone thorugh many articles and blog to implement elastic search in java with mongodb but can not find a satisfactory answer.
scenario : I have a DB of mongodb and the collection is saved like
{
"_id" : ObjectId("59775731409eb01e28d971dd"),
"sympid" : "5",
"name" : "abnormal bleeding",
"related_keyword" : "abnormal bleeding||uncontrollable bleeding"
}
Now i have a task to make the search API in elastic search for now what i learnt is(i don't know whether i am correct)
Elastic Search have their own db
if you want to implement it in mongo you need to index the db (don't know how to do it)(need some river plugin but i guess it is only available for unix environment and not windows)
There is plugin to index it mongo in ES, (but not found any plugin for windows)
any one out there who implemented ES+Spring MVC+MongoDB in windows?